I have some buttons that play an external swf inside an empty movie clip on the main timeline. I was wondering what Actionscript I need to disable the button when it is pressed. I want the button to still have roll over functionality and everything, but I just want the swf to load once when the button is pressed. Below is the script I am using right now. Thanks!
on (release) {
//load Movie Behavior
if(this.content == Number(this.content)){
loadMovieNum(“about.swf”,this.content);
} else {
this.content.loadMovie(“about.swf”);
}
//End Behavior
}