Can AS attach image fade to Toggle button?
I have completed my first Flash 8 movie which has an invisible button the size of the image which Stop/starts the movie with AS toggle script below.
click_btn.onRelease=function(){
if(!this.toggle){
chameleon.stop();
} else {
chameleon.play();
}
this.toggle=!this.toggle;
}
Can this script be modified so that the movie fades to alpha zero a short time after the stop action, and the re-appears to play instantly when the play action is triggered? If so can anyone help with a script suggestion please.