Flash help

  • Started
  • Last post
  • 2 Responses
  • troykooper

    I have a main movie playing, that willl open another movie with the content on it. Then I have 4 links in the navigation to open up more movies on top of that. But I need to make sure they all pop up on top. And be able to go forward and backward in the navigation.

    Any advise?

  • versa0

    i wish that made more sense so i could help.......why not be placing either library mcs or separate swfs into an anchored target/shell mc on stage that just acts as a holder........pull mcs in and out when you need them.........putting a new one in will replace the existing one

  • function820

    make a variable

    depthlevel = 100

    for example

    then, on for each button, put in frame 1 (or on the button itself, but the code is slightly different for that, its on (release){
    }
    instead)

    buttonName.onRelease = function(){
    attachMovie("ID","newName",depth...
    depthlevel++
    }
    this will stack them... you can also elaborate and add

    removeMovieClip("nameBelow")

    but its a bit more complicated to do...

    hope this helps