> In director I am having a problem of when I click down on the mouse it
> 
> stops everything:
> 
> on mousedown me
>   repeat while the mousedown<snip>
>   end repeat
>   
> end
> 
> 
You have a repeat loop going while the mousedown. That will keep
executing until the mouse is released. Repeat loops are pretty notorious
hogs.

I'd check for the mouseDown in an exitFrame handler rather than a repeat
loop. That would let you do other stuff in between checks.

Cordially,

Kerry Thompson
[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to