>Does anyone know of a way to make a button that will jump to a certain frame
 >or marker after the user has pressed it down and held it for a set period of
 >time?

Frank...

You can try something like this.
UNTESTED email lingo follows

property pMillis

on mouseDown me
  pMillis = the milliseconds
end mouseDown

on exitFrame me
  if the stillDown then
    if the milliSeconds - pMillis > 2000 then -- Mouse has to be held down 
for 2 seconds
       -- do stuff here
       go frame "your_Frame_Name_Here"
    end if
  end if
end exitFrame

HTH.

Later.
...Neil


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/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