Question
Can someone help with a script error?
I'm trying to create a pic gallery with rollover thumbnails.
I'm using the following script in the action script layer:
thumb1.onRollOver=function(){
this._alpha=100;
}
thumb1.onRollOut=function(){
this._alpha=50;
}
I get the following error messages when I test it
1119: Access of possibly undefined property onRollOver through a reference with static type flash.display:SimpleButton.
thumb1.onRollOver=function(){
this._alpha=100;
}
thumb1.onRollOut=function(){
this._alpha=50;
}
I get the following error messages when I test it
1119: Access of possibly undefined property onRollOver through a reference with static type flash.display:SimpleButton.