hi, here is what i’m trying
here is what i have on a button on root.
on (press) {
gallery1.gotoAndPlay(2);
}
on (press) {
_parent.chosen = "web1.swf";
}
and here is what i have on the movieclip instanced “gallery 1”
stop();
content.loadMovie(content);
content._visible = false;
this.createEmptyMovieClip("temp", 1);
temp.onEnterFrame = function() {
if (m_name.getBytesLoaded() == m_name.getBytesTotal() && m_name.getBytesTotal() != 0) {
m_name._visible = true;
loaded = true;
nextFrame();
delete this.onEnterFrame;
}
};
but its not working.
if i change (content) to “something.swf” then it works, but i’m trying to name a certain swf on a button press, so i dont hav e to make like 50 different “gallery1’s” just for each different swf.
is there a way to do this?
thanks.