Home
Documentation
Get Started!
Player
BASIC
Samples
Tutorials
Keywords
Data Types
Parameters
News
Blog
Contact
Français
Register
Login
Script Editor
You are not logged to an account. You have limited access.
Create an account
or
log in
to access more features.
'------------------------------------ ' Welcome to the Script editor! ' The code below will execute once you click the "Save & Run" button. ' Try modifying this script or erase this to start your own. ' Need help? Look Documentation from the site's menu. '------------------------------------ DIM title AS TEXT DIM logo AS IMAGE BGCOLOR #0021FF title = TEXT "Hello World!", (_MIDDLEX, 100), "pixel", 50, #FFFFFF, "fade-in", 2000 logo = IMAGE "html5", (_MIDDLEX, _MIDDLEY) ANIM logo, "rotate", -10, 10 ON CLICK logo, explode SUB explode SOUND "explosion" PARTICLES "star_red_small", (_MOUSEX, _MOUSEY) HIDE logo END SUB
Save
Save & Run