The tutorials are here. Just pick a category.
Black = Normal Text
Red = Instance Name/Var
Blue = Code
Brown = Custom Code
Explore tutorials here:Back to top.
Back to top.To upload, send an email with a text file or the swf/fla you want. Put your name if you want it to say "Uploaded by:Yourname".
Some of these scripts can make a mess. Never do this:
getURL(http://somesite.com/endlesspopupsite.html)
getURL(http://somesite.com/endlesspopupsite.html)
getURL(http://somesite.com/endlesspopupsite.html)
getURL(http://somesite.com/endlesspopupsite.html)
getURL(http://somesite.com/endlesspopupsite.html)
getURL(http://somesite.com/endlesspopupsite.html)
getURL(http://somesite.com/endlesspopupsite.html)
getURL........
This can make an endless popup meaning your computer could get stuck.
Or this:
function fullscr(){
fscommand("fullscreen", "true");
}
myTimer = setInterval (fullscr,1)
This would mean that fullscreen would keep on coming up and could get your computer stuck.
Basic Movie Controls
stop(); This is a simple stop command. It tells to movie to stop.
play();This is a simple play command. It tells to movie to play.
gotoAndStop(CustomNumber); Tells the movie to go to a frame and stop.
gotoAndPlay(CustomNumber); Tells the movie to go to a frame and play.
button.onRelease = function (){
gotoAndStop(2);
} This is a button command. The "button" at the start is an Instance Name. You can change the brown part.
function somename(){
gotoAndStop(2);
} This is a function. It can have a name and runs once on the frame.
sometext.text = 'yourtext'; This is a way of changing a text box/field with actionscript. The sometext is your text instance name. The yourtext part is the text you want to be shown.
getURL("http://strazevica.webs.com/") This is a link. Just add your custom link. Hint: Some URL's may not work unless on the internet.
getURL("javascript:window.close") This is a javascript command. Instead of doing:
<script>
window.close
<script>
You can do this shorter way.
fscommand This is an fscommand. It is for flash projectors.(EXE's) This one isn't an fscommand but here are a few:
fscommand ("exec", "someApplication.exe"); This runs an exe.
fscommand("fullscreen", "true"); This is a fullscreen command.
on (release) { fscommand("quit"); } This tells the flash projector to quit.
fscommand("showmenu", "false"); This tells the projector to hide the top menu.
Password Protect
Password Protect 2
Warning
This is not as safe. We do not recommend using this as anyone can download the file and get the passwords.Password Protect with sessionid
Google Search
Clock
Timer
Recommended
Here are some recommended components.
XMCA Component Pack This is a collection of components: ToobPlayer(Youtube/FLV Player)Scroller (Scroll Bar that works better than the normal one) and more.