Hi, I'm using the LoadMovie function so that when a button is pressed it loads a mini-game .swf file into a movie clip called 'holder'
I am using this code on the button:
Code:
on(release){
function() {
holder.unloadMovie();
holder.loadMovie("Http://mygameaddresshere.swf");
}
}
It's not reporting any errors but it's not loading the .swf either. I've checked the url I'm directing it to and that works.
Do I need to set the posisiton, width and height of the .swf file? I figured it would work off the center point of the movieclip but maybe not?
Any help is much appreciated thanks!
-Olly