The colored buttons on right middle part of the page.
The reason I am asking is because I have been using the “attach movie” script but it is very cumbersome to try to “PLACE” the movie where I want it on the page.
on (press) {
holder.attachMovie(“venues”, “window”, 0);
}
How do I get the venue movie to unload (or close) when I click on another link? FYI, I borrowed the attach movie script from another designer. Not sure what the “window” portion is.
“window” is the new name of the attached movieclip
To remove the attached mc
[AS]on(release){
//link here (getURL/loadMovie/goto…)
removeMovieClip(“window”);
}[/AS]
click Venues, you see that all attach movies stay. Here is the code on the venues button:
on (Press) {
holder.attachMovie(“venues”, “window”, 0);
}
on (Release) {
holder2.attachMovie(“mc_venues”, “window”, 0);
}
I can do as many “attach movie” as I want right? The issue is them not removing when I want them to. The 80’s in the middle of the screen is just a movie clip called 80s.
Sorry you lost me, what’s your real problem?
In the charlieparkers movie there’s one holder an din the example you give now you’ve two.
What you want to achieve?
Well, the charlie palmer was one example. Now I have added another “holder” SO that when the button is pressed, a few attach movies are displayed. I want them to “detach” or disappear when the other buttons are pressed.