Submit Your Article Forum Rules

Results 1 to 2 of 2

Thread: Flash load unload movie into main movie specific frame

  1. #1
    Junior Member
    Join Date
    Mar 2007
    Posts
    1

    Flash load unload movie into main movie specific frame

    Hi all,

    From main movie I call a 2nd movie to appear over the main movie using

    _root.createEmptyMovieClip("myMovie",2);
    _root.myMovie.loadMovie("mak_comp_esy.swf");
    _root.myMovie._x = 125;
    _root.myMovie._y = 200;

    all good and working.

    Below I need help...

    Now, from a link in the 2nd movie, I want to close the 2nd movie and go back to the first movie advancing the first movie to another page (frame).

    from...

    _root.link = 1;

    to...

    _root.link = 7;

    the main first movie is in frame (page) 1 (_root.link = 1;) when the second movie is called. When the second movie closes I want to go to frame(page) 7 (_root.link = 7;) in the first main movie.

    suggestions appreciated.

    hamlett22

  2. #2
    Member
    Join Date
    Sep 2006
    Posts
    32
    how about just controlling the main timeline via the last frame on each movie... so on the last frame of movie 2:

    _root.gotoAndStop(7);

    or at the end of movie 1:

    _root.gotoAndStop(1);
    ____________________________
    "surfing isn't just about riding down a wave, but the experience, motion, aesthetics, views, sounds, and sensations."
    Level Four Storefront

Similar Threads

  1. Begin Flash Movie on page load...
    By incraftfun in forum Flash Discussion Forum
    Replies: 1
    Last Post: 12-27-2006, 04:32 PM
  2. New from from The Internet Movie Database: The Movie Keywor
    By WPW_Feedbot in forum Search Engine Optimization Forum
    Replies: 0
    Last Post: 12-03-2005, 05:30 PM
  3. Searching for Movie Reviews with the Movie Review Query Eng
    By WPW_Feedbot in forum Search Engine Optimization Forum
    Replies: 0
    Last Post: 08-15-2005, 04:30 PM
  4. load external text into child movie
    By pbrollwitme in forum Flash Discussion Forum
    Replies: 1
    Last Post: 07-13-2005, 12:42 PM
  5. Load Movie ('swf file for which user clicked on an html page
    By Touseef in forum Flash Discussion Forum
    Replies: 3
    Last Post: 07-23-2004, 10:54 AM

Posting Permissions

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