Question
Can you load an external swf without a button?
I have a slideshow in swf format that I would like to load
into my main flash movie. I have created a target movie clip. I was
hoping to be able to just have it load when the page was entered -
does it have to be on a button? I have two different buttons that
will access this page - is there any conflict to have the same code
on each button?
I have tried a number of different things to get it to load, but it isn't working. This is my current code. The output says I need to put a 'stop' action within the event handler. I am not sure what to do...
stop();
_root.mc1.loadMovie("whatever/whatever.swf");
I also tried putting this code on to my main button, but it just flashed to the page and then off again. I added the second stop action because it said I needed stop in there, which I'm not sure about as there is a stop already...?
on (release) {
gotoAndStop(5);
loadMovie("slideshow/slideshow.swf", "mc1");
stop()
I have tried a number of different things to get it to load, but it isn't working. This is my current code. The output says I need to put a 'stop' action within the event handler. I am not sure what to do...
stop();
_root.mc1.loadMovie("whatever/whatever.swf");
I also tried putting this code on to my main button, but it just flashed to the page and then off again. I added the second stop action because it said I needed stop in there, which I'm not sure about as there is a stop already...?
on (release) {
gotoAndStop(5);
loadMovie("slideshow/slideshow.swf", "mc1");
stop()