friz2002
12-28-2002, 10:58 PM
Hi,
I'm loading an external swf (called band.swf) into my movie on Level 1.
In this ext. swf there's a mc called bbar_mc and in this mc there is a button called b_btn.
When a user clicks that button, I want a jpg to load.
I used this code in my original movie
_level1.bbar_mc.b_btn.onRelease = function(){
loadMovieNum("sub2.jpg",2);
}
I also tried loading it in a mc
_level1.bbar_mc.b_btn.onRelease = function(){
_root.holder_mc.loadMovie("sub2.jpg");
}
But both codes do nothing??
Any ideas what I'm doing wrong?
Thx in advance
I'm loading an external swf (called band.swf) into my movie on Level 1.
In this ext. swf there's a mc called bbar_mc and in this mc there is a button called b_btn.
When a user clicks that button, I want a jpg to load.
I used this code in my original movie
_level1.bbar_mc.b_btn.onRelease = function(){
loadMovieNum("sub2.jpg",2);
}
I also tried loading it in a mc
_level1.bbar_mc.b_btn.onRelease = function(){
_root.holder_mc.loadMovie("sub2.jpg");
}
But both codes do nothing??
Any ideas what I'm doing wrong?
Thx in advance