- If you need clarification, ask it in the comment box above.
- Better answers use proper spelling and grammar.
- Provide details, support with references or personal experience.
Tell us some more! Your answer needs to include more details to help people.You can't post answers that contain an email address.Please enter a valid email address.The email address entered is already associated to an account.Login to postPlease use English characters only.
Tip: The max point reward for answering a question is 15.
Well ..There are lots of actionscript tutorials outthere on net...You can find them in the torrent world ..go here > Torrentz.com and search for actionscript...
These are some links include learning Actionscript 2.0 for Flash MX and with source of actionscript 2.0 in PDF format, I hope it could help you.
http://actionscriptcheatsheet.com/pdf/actionsscript_cheat_sheet_letter.pdf http://livedocs.adobe.com/flash/9.0/main/flash_as2_learning.pdf http://linkedbyair.net/nt2/learning-actionscript.pdf www.springerlink.com/index/r414043349432100.pdf Good luck
you should learn actionscript 3! :) Actionscript is a object-oriented scripting language. It is based on ECMAscript (Javascript), so if you know Javascript, it could be easier to understand and learn actionscript. But there are differences, that come with flash. Using scenes and time-lines to handle graphics is something specific of actionscript. on adobe website, there is a good library with information on how to use actionscript. Best is to learn it from a book.
I would suggest looking into learning ActionScript 1.0/2.0/3.0. ActionScript is Flash's main scripting language. It's easy to learn, easy to use, and very modular for Flash.
First try this tutorial;
http://www.igol.neostrada.pl/flash_tutorial.pdf
and this free course;
http://www.learnthat.com/computers/learn-1774-free_flash_mx_2004_training_tutorial.htm
Hopefully that will be enough to get you started :)
using fs command you can make your flash presentation fullscreen the code is given bellow
this.fullscreen_btn.onRelease = function() {
fscommand("fullscreen", true);
};
this.unfullscreen_btn.onRelease = function() {
fscommand("fullscreen", false);
};
×