1: 2: 3: 4: 5: 6:
menu_mc.btn1.onRelease=function(){ loadMovie("Goals.swf",content_mc); } menu_mc.btn2.onRelease=function(){ loadMovie("Saves.swf",content_mc); }
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26:
menu_mc._alpha = 50; menu_mc.btn1._alpha = 50; menu_mc.btn2._alpha = 50; var b:Object = menu_mc.getBounds(_root); trace(b); trace(b.yMin); menu_mc.onEnterFrame = function() { if (_xmouse < b.xMin || _xmouse > b.xMax || _ymouse < b.yMin || _ymouse > b.yMax) { trace("outside"); menu_mc.onRollOver = mcOver; menu_mc._alpha = 50; } function mcOver() { delete this.onRollOver; this._alpha = 100; menu_mc.btn2.onRelease = function() { this._alpha = 100; }; } };