Hi, did you try to disable all buttons during transitions, when stop you enable all
2010/11/8 natalia Vikhtinskaya <[email protected]>: > Nothing of that helps. > > 2010/11/8 Karl DeSaulniers <[email protected]>: >> Try >> >> box.onRelease = box.onReleaseOutside = function(){ >> //move out >> }; >> >> maybe? >> Your box moves before its released, so this may work. >> Hopefully it wont fire it to move twice. >> >> or maybe try moving it after the onPress instead, so that the release >> doesn't do that action and lets the mouse reset. >> >> box.onPress = function(){ >> //move out >> }; >> >> and if that does not work. lol >> >> box.onPress = function(){ >> //move out >> }; >> >> box.onRelease = box.onReleaseOutside = function(){ >> this.onRollOver = null; >> }; >> >> I am reaching at this point. :) >> >> HTH, >> Karl >> >> >> On Nov 8, 2010, at 7:10 AM, natalia Vikhtinskaya wrote: >> >>>> box.onRelease=function(){ >>>> ///move it out >>>> >>>> } >> >> Karl DeSaulniers >> Design Drumm >> http://designdrumm.com >> >> _______________________________________________ >> Flashcoders mailing list >> [email protected] >> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders >> > > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > -- Atenciosamente, Isaías J. Campos www.zaonamidia.com www.flickr.com/zaonamidia _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

