Difference between revisions of "on.arrowUp"

From Inspired-Lua Wiki
Jump to navigation Jump to search
 
Line 24: Line 24:
 
platform.window:invalidate()
 
platform.window:invalidate()
 
end
 
end
(
+
 
 
function on.arrowRight()
 
function on.arrowRight()
 
msg = "Key right"
 
msg = "Key right"
 
platform.window:invalidate()
 
platform.window:invalidate()
 
end
 
end
 
+
</source>
</source>  
+
Prints which arrow key gets pressed.
  
 
== See Also  ==
 
== See Also  ==

Latest revision as of 15:33, 1 June 2011

on.arrowUp() is an event handler.
This handler get called when the UP arrow key gets pressed.

Example

msg = ""

function on.paint(gc)
	gc:drawString(msg, 10, 10, "top")
end

function on.arrowUp()
	msg = "Key up"
	platform.window:invalidate()
end

function on.arrowDown()
	msg = "Key down"
	platform.window:invalidate()
end

function on.arrowLeft()
	msg = "Key left"
	platform.window:invalidate()
end

function on.arrowRight()
	msg = "Key right"
	platform.window:invalidate()
end

Prints which arrow key gets pressed.

See Also