> Is there an easy way to prevent the second click from
 registering on the
 thumbnail icon?


Have you tried checking for the doubleClick?

on mouseUp
if not the doubleClick then
   -- do your thing
end if
End mouseUp


Or to cut down on the number of negatives in there:

on mouseup
  if the doubleclick then exit
  --other stuff goes here
end

[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