pua jeand wrote:

is it lingoscript can control the playback head run reverse?

You use the Lingo go the frame - 1 to go to the previous frame, so if (for
example) you had an animation that was 60 frames long and you wanted to play
it backwards you could attach this script to every frame:

on exitFrame me
  if the frame = 1 then
    go frame 60
  else
    go the frame - 1
  end if
end

Hope that helps

Cheers
Owen


[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