Featured Site
» Posted in the Flash Kit Links section
» Title:Pinwheel
» Comments: Pinwheel is a full-service graphic design studio in San Francisco specializing in packaging, print, and interactive website design
BBM.net is designed to save you time and deliver the highest quality royalty-free music for your multimedia projects. Features include: over 450 Music Loop Packages from some of the best composers in the business, our music search engine to speed your selection process, alternate music versions & bonus sounds to use for rollovers or transitions, free technical support and free consulting.
This is another way to update your Flash content on the go. First, create an actionsript file and save it as "actions.as". Place it in the same folder or directory as your .fla and .swf files. Now create a new blank Flash Document. Put whatever in the first frame. In the next frame, put something else. In the second frame's action, type in:
stop()
In the first frame's actions, type in:
#include "action.as"
When you you check the syntax, it'll probably aay that it can't read the file, but we'll fix that. Go into your .as file and type in:
stop();
Republish your fla file and it will stop on the first frame. Now, go back into the the .as file and replace the stop() action with:
play();
When you republish your .fla, it will now go to the second frame.
The advantage to using the include function is that the .as file can be changed using notepad or anybasic text editing program. The downside is that when you update the .as you have to republish the movie for it to register.