Hey,
I have created a buttonbar wich contains some buttons. This bar is at the bottom of my screen and you only see the top of it. If you put your mouse over this top it reveals itself.
The buttonbar is inside a movieclip and inside i have tweens for an open & close event. This tweening is with an image.
This is the code on the first frame of the movieclip: (this works perfectly)
stop();
this.onRollOver = function(){
if(up != true) {
this.gotoAndPlay("open");
}
}
this.onRollOut = function(){
if(!_root.mc_paused.vis) {
this.gotoAndPlay("close");
}
}
Now my problem:
The layer above the image that goes up and down, I have a button that also goes up and down.
This button has an on(release) function, but I cannot addres this function… I have a trace in there.
It seems that I can’t click on the button (it doesn’t even change color when i go with my mouse over it), it looks like the onRollOver has all the power.
Anyone an idea? Thanks
Pete :ninja: