[Flashcoders] MouseMove - performance issues

2010-02-01 Thread Glen Pike
Hi, I am noticing a performance issue creeping into my application todo with mouse movement. We have a touchscreen with custom sliders to control stuff via a few AS3 classes then an XML socket. The sliders use a thumb which applies an MOUSE_MOVE listener to the stage when the

Re: [Flashcoders] MouseMove - performance issues

2010-02-01 Thread Nathan Mynarcik
...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] MouseMove - performance issues Sent: Feb 1, 2010 7:23 AM Hi, I am noticing a performance issue creeping into my application todo with mouse movement. We have a touchscreen with custom sliders

Re: [Flashcoders] MouseMove - performance issues

2010-02-01 Thread Greg Ligierko
If the code must be really called for each mouse move, then I have no solutions . However if it is not crucial to execute all code for each event, then perhaps you could add an incremental flag and execute code for some of the events only, eg: events_count = 0 MOUSE MOVE

Re: [Flashcoders] MouseMove - performance issues

2010-02-01 Thread Glen Pike
being moved? Or can you call all the functions you need when you release the slider? --Original Message-- From: Glen Pike Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] MouseMove - performance issues Sent: Feb 1

Re: [Flashcoders] MouseMove - performance issues

2010-02-01 Thread Duncan Reid
: Glen Pike g...@engineeredarts.co.uk Subject: [Flashcoders] MouseMove - performance issues To: Flash Coders List flashcoders@chattyfig.figleaf.com Message-ID: 4b66d5dc.6080...@engineeredarts.co.uk Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hi, I am noticing a performance issue