I mean that I disabled buttons during transitions but then it does not run again because event has already happened.
2010/11/8 natalia Vikhtinskaya <[email protected]>: > Yes, I did that and that was my logic mistake. I should not do that. > THANK YOU VERY MUCH to everybody for help!!! I could not find that > obviouse mistake many hours. > > 2010/11/8 ZaoNews <[email protected]>: >> 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 >> > _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

