Hi people,
I have been developing some actionscript for a few days now and I wanted to publish to the flash 5 player, I notice that my movie does not work under flash 5 and wanted to know if anyone knew why:
Here is the code I have been using:
Code on the main timeline:
Code attached to the buttons:
Code attached to illo.swf
Code attached to illo buttons
Was really pleased to get it working as I only have basic A.S. skils but I really need it to export to flash 5, any help would be appreciated... thanks
I have been developing some actionscript for a few days now and I wanted to publish to the flash 5 player, I notice that my movie does not work under flash 5 and wanted to know if anyone knew why:
Here is the code I have been using:
Code on the main timeline:
Code:
_global.digit = 0;
Code attached to the buttons:
Code:
on(release){
_global.digit = 1;
loadMovieNum("illo.swf",1);
}
Code attached to illo.swf
Code:
empty_mc.attachMovie("illo"+_global.digit+"_mc", 1, 10);
if(_global.digit==3){
next_btn._visible=false;
}
if(_global.digit==1){
back_btn._visible=false;
}
Code attached to illo buttons
Code:
on (release) {
if (_global.digit<3) {
_global.digit = digit+1;
empty_mc.attachMovie("illo"+_global.digit+"_mc", 1, 10);
} else {
_global.digit = 1;
empty_mc.attachMovie("illo"+_global.digit+"_mc", 1, 10);
}
}
Was really pleased to get it working as I only have basic A.S. skils but I really need it to export to flash 5, any help would be appreciated... thanks