hello guys i really need some help!!
i have to create a flash banner for my final project at school i have come up with a great scrolling thumbnail bar but…
the thumbnail bar plays through until you put your mouse over it then it stops so you can pick which ever thumbnail you want.
i have created a drop down menu for one of the buttons in the scrolling thumbnail bar.
this button displays a drop down menu when you hover the mouse over it.
but when you take you mouse down to the area the drop down menu is the scrolling thumbnail bar starts again (because your mouse is not hovering over it)
is there recomendation coding ??
this is what i have got so far
_root.onEnterFrame = function(){
if(_root._ymouse<100){
tom=true;
}
if(_root._ymouse>100){
tom=false;
}
if(_root._xmouse<50 and tom==true) {
imgBar.prevFrame();
imgBar.prevFrame();
imgBar.prevFrame();
imgBar.prevFrame();
} else{
imgBar.play();
}
if(_root._xmouse>550 and tom==true) {
imgBar.nextFrame();
imgBar.nextFrame();
} else{
imgBar.play();
}
if(_root._xmouse>50 && _root._xmouse<550 &&tom==true)
imgBar.stop();
}
my animation for the drop down is called “blob” by button is called Venue_mc over
all i want to do is when the blob animation is playing ie the drop down is down the ImgBar is not moving. so this will enable me to actually click on the buttons in the drop down instead of them running away.
would be nice to a response ASAP cause its got to be in this friday
thanks alot guys
tom
o yeah and i am using AS 2