Complex Button RollOver/RollOut Effects Question!

Okay…I have a problem here.

Basically, I want the button to do a roll-over and bring down an drop down menu, and then the buttons in the drop down menu have roll overs too.

Here’s the link:
http://ns35.webmasters.com/*watches24seven.com/httpdocs/

I can’t get the roll-overs on the submenu to work. It’s on the STORE button. Then there should be a roll-over on the WATCHES button. However, it won’t recognize the code once the initial roll-over happens.

Anyone?? Please??

Thanks

Troitone;(

can you post your code … :slight_smile:

nice site BTW …

Here’s the code for the Store button the watch button has the same code.
It should have a roll over then a roll over within the roll over…but it won’t recognize the code once the first roll over happens.

stop();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}

this.onRollOut = function(){
rewind = true;
}

this.onRelease = function(){

}

ur code is ok…
but i have to see the fla as i cant see from this piece of code why it doesnt work… maybe you could strip everything down leaving only those two buttons and code and attach your .fla here…

it maybe because of the location of your inner buttons that it doesnt work properly…

Here are the two source files. Thanks so much for your help!

sorry for replying too late…i wasnt at work…
there’s nothing wrong with your code…
it’s the problem i cant yet figure out…
it’s the masking problem in your nav_inner_btns.fla
its that animation wouldnt show when published but i can see it work within
flash…
ill post later if i can figure it out…

cheers :slight_smile:

Edit: OK , this was because i was missing the fonts… :slight_smile:

  •    now i guess i have come to the real problem...*
    
  •    :(*

the problem is that you cant mask a textfield like that. I think the solution is a dynamic mask.

no no Pascal…
the masking is fine… i was just missing the fonts… my bad … :frowning:
now that i replaced the fonts it does work ok…
but when loaded into the holder movie it just wouldnt work…

ill look at it once im done with my routine…
can you Pascal have a look at the .fla’s too …

cheers

remember:

if(myBoolVariable == true)… is the same as *if(myBoolVariable)
*
:ko:

/henxon

few things are wrong here

you have a rollover effect on the whole movie you load in

in the store.fla you have a rollover effect on that same movie

don’t have the time too look at it better, will try tomorrow

Thanks guys for all your help…I hope you can figure this out! I totally appreciate it!

Troitone

the problem is this script in store.fla


this.onEnterFrame = function(){ 
if(rewind == true){ 
prevFrame(); 
} 
} 
this.onRollOver = function(){ 
rewind = false; 
play(); 
} 
  
this.onRollOut = function(){ 
rewind = true; 
} 
  
this.onRelease = function(){ 
 } 


you should try the tutorial about transitions between external swfs it located in the tutor section

Is there anyway of getting around this problem? I just need to have those submeus come down when I scroll over store, then go back up when I scroll off the big background that comes down.

~Troitone~