PDA

View Full Version : link from one swf to another


dashboardgyno
01-19-2007, 03:34 AM
I have three flash files ( all templates ) 1st one is the intro, and I want that to automatically roll into the 2nd flash file. In the 2nd flash file there is a button that I want to trigger the 3rd flash file when pressed(or released) I cannot understand the action script that is needed to make those two transitions. Should they work (test) before I upload them to the server?

thanks for your time

Krisko
01-19-2007, 04:08 PM
Here's my variant:
Why don't you add one button into the intro, called "Start" and add the script to it:

on (release {
loadMovie ("YourNextMovie.swf", _root._droptarget) //YourNextMovie is the name of the next swf
}

The linking of the other swf files goes by the same way.