LiveSearch

Powered by vanilla & lovin' it!

    •  
      CommentAuthorkarmadrome
    • CommentTimeJan 31st 2007
     
    help...

    ive created a flash movie with 3 different scenes... on scene 3 i have imported/load movie using this on frame 1:

    loadMovieNum("quiz.swf", 1);

    this works fine until i navigate to scene 1 & 2 - the imported one still shows above the other scenes (top layer)

    how can i do this so it dissapears when going to the other pages?

    my head hurts!
    •  
      CommentAuthorchris
    • CommentTimeJan 31st 2007
     
    unload ;)

    of course, you'd then need to reload it when going back to it... there is probably a better way, like moving it off the stage or something.
    •  
      CommentAuthorkarmadrome
    • CommentTimeFeb 1st 2007
     
    thought it would be something like that... opted for:

    on (press) {
    gotoAndPlay("SCENE 02", 1);
    unloadMovieNum(2);
    }

    thanks
    •  
      CommentAuthorCPU
    • CommentTimeFeb 1st 2007
     
    instead of unloading it you could also hide/show it
    •  
      CommentAuthorkarmadrome
    • CommentTimeFeb 5th 2007
     
    what would be the code for that?
    •  
      CommentAuthorCPU
    • CommentTimeFeb 6th 2007
     
    onClipEvent (enterFrame) {
    theclipyouwanttohide._alpha = 0;
    }

    or something like this iirc
    •  
      CommentAuthorkarmadrome
    • CommentTimeFeb 6th 2007
     
    cheers! will give it a go :]