PDA

View Full Version : Flash then Page Jump


newguy1
08-21-2003, 04:56 PM
I know this must be simple to you, but I am new to AMP.
my question is simple,,

I have 2 pages, the first auto loads a flash movie
I would like that as soon as the flash movie movie finishes
that I will jump to the second page.

how do I do this,,

thank you..

Corey
08-21-2003, 05:36 PM
Hi. Try using the forum search feature, there are several excellent, easy-to-find posts on this exact topic there. /ubbthreads/images/icons/smile.gif

Corey Milner
Creative Director, Indigo Rose Software (http://www.indigorose.com)

BILLIS
08-22-2003, 10:27 AM
this was my first request in this forum. I copy & past Derek's answer because it works smoothly and it is easy.

"1. In the Action pane, you'll see the FSCommand added.
Click 'FScommand' to show the command/arg boxes
underneath it.
2. In the top of the two boxes [the command box], type
something as a command: SplashFinished [for
example].
3. Save the movie as swf file.
4. Import the movie into AMS and adjust accordingly.
5. Double click the Flash Object and goto the Actions Tab.
6. Add the following Actions:
%Property% = FlashObject[Flash1].GetProperty ("Last
FSCommand")
IF (%Property% = SplashFinished)
Page.Jump ("%PageNext%")
END IF
The Actions get the last FSCommand and store it in the
variable %Property%
The IF statement then checks to see if the %Property%
variable contains "SplashFinished" - which it should do!
If this is the case, it jumps to the next page. If not ... it
doesn't."