all groups > flash actionscript > september 2005 >
You're in the

flash actionscript

group:

Load and nload swf with the same button


Load and nload swf with the same button Evilcampbell
9/17/2005 10:16:44 PM
flash actionscript: Hi I am new with flash and I am trying to load and unload an external swf file with the same button. I looked in the forum and tutorials, but I only find a way with 2 different buttons.
Re: Load and nload swf with the same button kglad
9/17/2005 10:27:49 PM
to make a toggle button:

btn1.onPress=function(){
if(!this.toggle){
// do A
} else {
// do B
}
this.toggle=!this.toggle;
AddThis Social Bookmark Button