Hi there,
I have searched for a while but cant get it right… Here goes…
I have a button on my timeline when you mouse hover over the button there is an effect ( bg changes blah blah), on mouse over a 3d cube (exported from swift) will rotate which is in the above move clip, the action script is poiting to it via the [COLOR=Red]label[/COLOR] see below:
on (rollOver)
{
gotoAndPlay(2);
}
on (releaseOutside, rollOut)
{
gotoAndPlay(11);
}
on (release)
{
_root.link = 3;
_root.play();
_root.studio.play();
}
Now the problem is on mouse off the cube rotates round but obviously if you hover off before the end of the frsequence it wont hover off untill you put your mouse over it… I know this would prob work but any help would be great, sorry for know example…
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}