A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: a movie in a movie goto play frame wont work

  1. #1
    Junior Member
    Join Date
    Sep 2000
    Posts
    28

    a movie in a movie goto play frame wont work

    I have a movie that when click to link it goes to a frame number and play a submovie. With in this sub movie there's another link that should take back to the original movie (scene1) and plays a certain frame i.e. on release gotoplay scene1 frame(50) but this didnt work. It just keeps reloading my submovie when clicking on my link. Help and thanks in advance.

  2. #2
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397
    You have to use _root preceding your action, and you should definately use a frame label rather than a frame number, which is error prone...

    Label the targeted frame with an unique label, no number only labels or at least not starting off with a number, and use someting like this...

    on(release){
    _root.gotoAndPlay("frame_label");
    }

    Double quotes in the above but not when setting the frame label itself.

  3. #3
    Junior Member
    Join Date
    Sep 2000
    Posts
    28
    wow.. this actually works! thanks oldnewbie

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center