| bleed_through 2007-01-10, 6:38 pm |
| Hi all - i'm trying to create a navigation system fairly indentical to this
one: http://http://www.thefieryfurnaces.com/
I am using a complex button with actionscript, however I can't get any of the
navigation buttons to work on top of this. I'd like them to be complex buttons
also ... can anyone help me work around this? Tearing my hair out!
Cheers //
Heath.
Actionscript for the complex buttons i'm using below:
---------------------------------
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
|