I am trying to make an external .swf file load into a movieclip when a button is clicked. I have this code on my button:

on(release){
mc_holder.loadMovie("home.swf");
trace ("...");
}

and my mc_holder movieclip is on the stage. But when I click the button the trace output shows up but the movie clip does not load in the holder. Is there more to this?

think you got the wrong forum here...

Member Avatar for rajarajan2017
on(release){
_root.mc_holder.loadMovie("home.swf");
trace ("...");
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.