Difference between revisions of "Category:Events"

From Inspired-Lua Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
Events category.  
 
Events category.  
  
<br>
+
<br>  
*'''[[:Category:on.paint|on.paint]]''' is called when the GUI is painted. 'gc' is the Graphics Context (see above)
+
 
 +
*'''[[:Category:on.paint|on.paint]]''' is called when the GUI is painted. [[gc|'gc' is the Graphics Context]]
 
*'''[[:Category:on.resize|on.resize]]''' is called when the window is rezised
 
*'''[[:Category:on.resize|on.resize]]''' is called when the window is rezised
<br>
+
 
*'''[[:Category:on.timer|on.timer]]''' is called when the timer has been finished. Here an example of using timer to play an animation
+
 
<br>
+
 
*'''[[:Category:on.arrowKey|on.arrowKey]]''' is called when an '''arrow key''' from the clickPad/TouchPad is pressed (right, left, up, down)
+
*'''[[:Category:on.timer|on.timer]]''' is called at each timer ticks. See&nbsp;[[Category:timer|timer]].
*'''[[:Category:on.arrowLeft|on.arrowLeft]]''' is called when the '''left''' arrow is pressed
+
 
*'''[[:Category:on.arrowRight|on.arrowRight]]''' is called when the '''right''' arrow is pressed
+
<br>  
*'''[[:Category:on.arrowUp|on.arrowUp]]''' is called when the up '''arrow''' is pressed
+
 
*'''[[:Category:on.arrowDown|on.arrowDown]]''' is called when the '''down''' arrow is pressed
+
*'''[[:Category:on.arrowKey|on.arrowKey]]''' is called when an '''arrow key''' from the clickPad/TouchPad is pressed (right, left, up, down)  
*'''[[:Category:on.up|on.up]]''' -- probably for the touchpad up motion
+
*'''[[:Category:on.arrowLeft|on.arrowLeft]]''' is called when the '''left''' arrow is pressed  
 +
*'''[[:Category:on.arrowRight|on.arrowRight]]''' is called when the '''right''' arrow is pressed  
 +
*'''[[:Category:on.arrowUp|on.arrowUp]]''' is called when the up '''arrow''' is pressed  
 +
*'''[[:Category:on.arrowDown|on.arrowDown]]''' is called when the '''down''' arrow is pressed  
 +
*'''[[:Category:on.up|on.up]]''' -- probably for the touchpad up motion  
 
*'''[[:Category:on.down|on.down]]''' -- probably for the touchpad down motion
 
*'''[[:Category:on.down|on.down]]''' -- probably for the touchpad down motion
<br>
+
 
*'''[[:Category:on.enterKey|on.enterKey]]''' is called when the '''enter''' key is pressed.
+
<br>  
*'''[[:Category:on.escapeKey|on.escapeKey]]''' is called when the '''escape''' key is pressed.
+
 
*'''[[:Category:on.tabKey|on.tabKey]]''' is called when the '''tab''' key is pressed.
+
*'''[[:Category:on.enterKey|on.enterKey]]''' is called when the '''enter''' key is pressed.  
*'''[[:Category:on.deleteKey|on.deleteKey]]''' is called when the '''delete''' key is pressed.
+
*'''[[:Category:on.escapeKey|on.escapeKey]]''' is called when the '''escape''' key is pressed.  
*'''[[:Category:on.backspaceKey|on.backspaceKey]]''' is called when the '''clear''' key is pressed.
+
*'''[[:Category:on.tabKey|on.tabKey]]''' is called when the '''tab''' key is pressed.  
*'''[[:Category:on.returnKey|on.returnKey]]''' is called when the '''return''' key is pressed.
+
*'''[[:Category:on.deleteKey|on.deleteKey]]''' is called when the '''delete''' key is pressed.  
*'''[[:Category:on.contextMenu|on.contextMenu]]''' is called when the combo-key '''Ctrl Menu''' is pressed.
+
*'''[[:Category:on.backspaceKey|on.backspaceKey]]''' is called when the '''clear''' key is pressed.  
*'''[[:Category:on.backtabKey|on.backtabKey]]''' is called when the combo-key '''Maj Tab''' is pressed.
+
*'''[[:Category:on.returnKey|on.returnKey]]''' is called when the '''return''' key is pressed.  
*'''[[:Category:on.clearKey|on.clearKey]]''' is called when the combo-key '''Ctrl Clear''' is pressed.
+
*'''[[:Category:on.contextMenu|on.contextMenu]]''' is called when the combo-key '''Ctrl Menu''' is pressed.  
 +
*'''[[:Category:on.backtabKey|on.backtabKey]]''' is called when the combo-key '''Maj Tab''' is pressed.  
 +
*'''[[:Category:on.clearKey|on.clearKey]]''' is called when the combo-key '''Ctrl Clear''' is pressed.  
 
*'''[[:Category:on.help|on.help]]''' is called when the combo-key '''Ctrl H''' is pressed.
 
*'''[[:Category:on.help|on.help]]''' is called when the combo-key '''Ctrl H''' is pressed.
<br>
+
 
 +
<br>  
 +
 
 
*'''[[:Category:on.charIn|on.charIn]]''' is called when the Nspire detects a non arrow key being pressed.
 
*'''[[:Category:on.charIn|on.charIn]]''' is called when the Nspire detects a non arrow key being pressed.
<br>
+
 
*'''[[:Category:on.blink|on.blink]]''' called when the focus is lost on the page (like launching the document, changing page etc...)
+
<br>  
*'''[[:Category:on.create|on.create]]''' called when the script gets created.
+
 
*'''[[:Category:on.deactivate|on.deactivate]]''' called when the focus is lost on the page (like launching the document, changing page etc...)
+
*'''[[:Category:on.blink|on.blink]]''' called when the focus is lost on the page (like launching the document, changing page etc...)  
*'''[[:Category:on.activate|on.activate]]''' called when the focus is on the page (like launching the document, changing page etc...)
+
*'''[[:Category:on.create|on.create]]''' called when the script gets created.  
*'''[[:Category:on.destroy|on.destroy]]''' is called when the focus is on the page (like launching the document, changing page etc...)
+
*'''[[:Category:on.deactivate|on.deactivate]]''' called when the focus is lost on the page (like launching the document, changing page etc...)  
<br>
+
*'''[[:Category:on.activate|on.activate]]''' called when the focus is on the page (like launching the document, changing page etc...)  
*'''[[:Category:on.mouseDown|on.mouseDown]]''' is called when we press the left mouse button. X and Y are the pressed point coordinates.
+
*'''[[:Category:on.destroy|on.destroy]]''' is called when the document is about to get closed (or cut)
 +
 
 +
<br>  
 +
 
 +
*'''[[:Category:on.mouseDown|on.mouseDown]]''' is called when we press the left mouse button. X and Y are the pressed point coordinates.  
 
*'''[[:Category:on.mouseUp|on.mouseUp]]''' is called when we release the left mouse button.  
 
*'''[[:Category:on.mouseUp|on.mouseUp]]''' is called when we release the left mouse button.  
*'''[[:Category:on.mouseMove|on.mouseMove]]''' is called when the mouse moves
+
*'''[[:Category:on.mouseMove|on.mouseMove]]''' is called when the mouse moves  
*'''[[:Category:on.grabDown|on.grabDown]]''' (software only ?)
+
*'''[[:Category:on.grabDown|on.grabDown]]'''
*'''[[:Category:on.grabMove|on.grabMove]]''' (software only ?)
+
*'''[[:Category:on.grabMove|on.grabMove]]'''&nbsp;
*'''[[:Category:on.grabUp|on.grabUp]]''' (software only ?)
+
*'''[[:Category:on.grabUp|on.grabUp]]'''
*'''[[:Category:on.rightMouseDown|on.rightMouseDown]]''' (software only ?)
+
*'''[[:Category:on.rightMouseDown|on.rightMouseDown]]'''
*'''[[:Category:on.rightMouseUp|on.rightMouseUp]]''' (software only ?)
+
*'''[[:Category:on.rightMouseUp|on.rightMouseUp]]'''&nbsp;
<br>
+
 
*'''[[:Category:on.cutEnabled|on.cutEnabled]]''' (software only ?)
+
<br>  
*'''[[:Category:on.copyEnabled|on.copyEnabled]]''' (software only ?)
+
 
*'''[[:Category:on.pasteEnabled|on.pasteEnabled]]''' (software only ?)
+
*'''[[:Category:on.cutEnabled|on.cutEnabled]]'''
*'''[[:Category:on.cut|on.cut]]''' (software only ?)
+
*'''[[:Category:on.copyEnabled|on.copyEnabled]]'''
*'''[[:Category:on.copy|on.copy]]''' (software only ?)
+
*'''[[:Category:on.pasteEnabled|on.pasteEnabled]]'''&nbsp;
*'''[[:Category:on.paste|on.paste]]''' (software only ?)
+
*'''[[:Category:on.cut|on.cut]]'''
 +
*'''[[:Category:on.copy|on.copy]]'''&nbsp;
 +
*'''[[:Category:on.paste|on.paste]]'''&nbsp;
 +
 
 
<br><br>
 
<br><br>

Revision as of 13:54, 22 May 2011

Events category.



  • on.timer is called at each timer ticks. See .


  • on.arrowKey is called when an arrow key from the clickPad/TouchPad is pressed (right, left, up, down)
  • on.arrowLeft is called when the left arrow is pressed
  • on.arrowRight is called when the right arrow is pressed
  • on.arrowUp is called when the up arrow is pressed
  • on.arrowDown is called when the down arrow is pressed
  • on.up -- probably for the touchpad up motion
  • on.down -- probably for the touchpad down motion



  • on.charIn is called when the Nspire detects a non arrow key being pressed.


  • on.blink called when the focus is lost on the page (like launching the document, changing page etc...)
  • on.create called when the script gets created.
  • on.deactivate called when the focus is lost on the page (like launching the document, changing page etc...)
  • on.activate called when the focus is on the page (like launching the document, changing page etc...)
  • on.destroy is called when the document is about to get closed (or cut)