Announcement

Collapse
No announcement yet.

Flash then Page Jump

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Flash then Page Jump

    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..

  • #2
    Re: Flash then Page Jump

    Hi. Try using the forum search feature, there are several excellent, easy-to-find posts on this exact topic there. [img]/ubbthreads/images/icons/smile.gif[/img]

    Corey Milner
    Creative Director, Indigo Rose Software

    Comment


    • #3
      Re: Flash then Page Jump

      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."

      Comment

      Working...
      X