All Codes

Strings and Integers

Control Panel Items

GUI

Audio/Video

Event Handlers



Strings and Integers

Command:Print (B)
Codeskulptor: print "Hello"
EzpzJS:bprint("Hello");
EzpzJs ExplainationThis is a print command that works with last Insert Body tag
bprint notes:This is the standard print statement. You should use this when doing a print command.


Command:Printwln (B)
Codeskulptor: print "Hello"
EzpzJS:bprintwln("Hello");
EzpzJs ExplainationThis is a print command that works with last Insert Body tag with no line break
bprint notes:This is the standard print statement. You should use this when doing a print command.


Command:Print (A)
Codeskulptor: print "Hello"
EzpzJS:aprint("Hello");
EzpzJs ExplainationThis is a print command that works with First Insert Body tag
bprint notes:This is a special print statement. You should use this when doing a print command to let the user know something about your program


Command:Printwln (A)
Codeskulptor: print "Hello"
EzpzJS:aprintwln("Hello");
EzpzJs ExplainationThis is a print command that works with First Insert Body tag without a limb
bprint notes:This is a special print statement. You should use this when doing a print command to let the user know something about your program


Command:Print (Z)
Codeskulptor:print "Hello"
EzpzJSzprint(a)
EzpzJs ExplainationThis is a print command that drops your variable in the body wherever the script is
EzpzJs Notes:This should never really be used. If you know what your doing enough to use this, you should just make alterations wherever necessary. Nothing personal, just a suggestion.


Command:Printwln (Z)
Codeskulptor:print "Hello"
EzpzJSzprintwln(a)
EzpzJs ExplainationThis is a print command that drops your variable in the body wherever the script is (without a line break).
EzpzJs Notes:This should never really be used. If you know what your doing enough to use this, you should just make alterations wherever necessary. Nothing personal, just a suggestion.


Command:String Conversion
Codeskulptor:Str(4)
EzpzJs:str(4);
EzpzJs Explaination:This is a command to convert a number to a string


Command:String to Integer Converstion
Codeskulptor:int("5")
EzpzJs:int("5")
EzpzJs Explaination:This command converts a string to a number


Command:Check string for number
Codeskulptor:unknown
EzpzJs:isNumber('555');
EzpzJs Explaination:Checks to see if a string is a number


CommandRandom
Codeskulptor: random.randrange(0, 10)
EzpzJS:rand(1, 10)
EzPzJS ExplainationThe first number in range is included in the random selection, so is the last number.