>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.

Try (untested):

global gRepeatFlag

on prepareFrame
    gRepeatFlag = FALSE
end

on mouseUp
    gRepeatFlag = TRUE
end

on exitFrame
    if gRepeatFlag = TRUE then
       go the frame
    end if
end

You'll have to do some jockeying to figure out where to put these 
handlers--obviously it's unlikely at, say 15 fps, somebody will do a 
mouseUp on that particular frame.


Cordially,
Kerry Thompson
Learning Network


[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