At 11:20 AM -0500 10/16/00, Colby Dodson wrote:
>I need to script a wait command so that the playback head stop on a certain
>frame or sprite for a certain amount of time without using the tempo
>channel. Can anyone help?
>

Colby,

Here you go:

property pEndTicks

on prepareFrame me
-- This will set up a wait for 2 seconds, change it to whatever you want
   pEndTicks = the ticks + (2 * 60)
end

on exitFrame me
   if the ticks < pEndTicks then
     go to the frame
   else
     go to the frame + 1
   end if
end

Irv
-- 
Lingo / Director / Shockwave development for all occasions.

        (Over two millions lines of Lingo code served!)

[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