I don’t think I am using levels right.
I have a button with this script:
[AS]on (rollOver) {
_level1_root.drgmenu.t = 1;
startDrag(_level1_root.drgmenu.handb, true);
Mouse.hide()
}
on (rollOut) {
_level1_root.drgmenu.t = 0;
startDrag(_level1_root.drgmenu.handb, false);
Mouse.show()
}
on (press) {
startDrag(_level1_root.drgmenu);
}
on (release) {
stopDrag();
startDrag(_level1_root.drgmenu.handb, true);
}[/AS]
and a movieclip that is getting followed when hovered:
[AS]onClipEvent (enterFrame) {
if (_level1_root.drgmenu.t==1) {
_level1_root.drgmenu.handb._alpha = 90;
} else {
_level1_root.drgmenu.handb._alpha = 0;
}
}[/AS]
It works when I use it once, but when I have similar movieClip with this in it, it freaks up. I tryed levels, but can’t get it right. It works if I use it only once in the movie.