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
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