User Tools

Site Tools


code

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
code [2011/01/22 01:54] jmgrcode [2011/04/20 20:22] (current) – removed jmgr
Line 1: Line 1:
-Actionaz adds a lot of new objects to the JavaScript (EcmaScript) language. 
  
-Each object contains items. 
-Items are: 
-  * Methods, called with an object: 
-<code javascript> 
-var w = Window(); //Calls the method close() from a previously created Window object 
-w.close(); 
-</code> 
-<code javascript> 
-Window().close(); //Calls the method close() from a Window object created inline 
-</code> 
-  * Functions, called without an object: 
-<code javascript> 
-Window.all(); //Calls the function all() 
-</code> 
-  * Variables: 
-<code javascript> 
-Script.nextLine = 4; //Sets the next script execution line to 4 
-</code> 
-<code javascript> 
-Console.print("The next line is: " + Script.nextLine); //Writes an entry in the execution console with the next line 
-</code> 
-  * Attributes: TODO 
-  * Enumerations: TODO 
- 
-Actions can also add some objects. Embedded objects are : 
-  * [[code:core:global|Global]] 
-  * [[code:core:console|Console]] 
-  * [[code:core:execution|Execution]] 
-  * [[code:core:script|Script]] 
-  * [[code:core:stdio|Stdio]] 
-  * [[code:core:window|Window]] 
-  * [[code:core:point|Point]] 
-  * [[code:core:color|Color]] 
-  * [[code:core:algorithms|Algorithms]] 
code.1295661281.txt.gz · Last modified: 2021/02/13 11:23 (external edit)