> Does any one know how to have the playback head stop on the current
> frame ( by using go to the frame) from a mouseUp script. 


Yes. First, you set your email preferences to Text-Only mode for Lingo-L (no
HTML), then you use something like this:


global fPlaybackHeadStopped

on mouseUp me
  fPlaybackHeadStopped = TRUE
end

on exitFrame me
  if fPlaybackHeadStopped then
    go the frame
  else go the frame + 1
end


Rob

/*********************************
* Rob Wingate, Software Human    *
* http://www.vingage.com         *
* mailto:[EMAIL PROTECTED] *
*********************************/

[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