Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

i really do need help on this....

Status
Not open for further replies.

eladi

Programmer
Sep 4, 2001
80
AU
hi all,

i posted my new website a few days ago on this forum.


due to many comments on the "unreadablity", i work some more on the menu windows. each time a new window is activated, it changes depth with the last window and also reduces the alpha of the last window. that's not a problem. now, i think it has to be possible to reactivate the windows in the back (i.e. swapDepth and change the alpha on both windows). this too does work. i did it with the following code on the windows mc:

onClipEvent (mouseUp) {
_root.screenStart.swapDepths(eval(_root.gLastScreen));
_root.screenStart._alpha = 100;
eval(_root.gLastScreen)._alpha = 25;
_root.gLastScreen = "_root.screenStart";
}

you can check it out here (open the infoscreens, the rest is not yet adapted):


now, with the clipEvent, the outfaded window is reactivated even if i click "through" another window. i just want it to be reactivated if i click it where it is not covered by another window, though. how can i achieve this?

i hope, i was able to put my problem into a comprendable form. tnx in advance.

adrian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top