> on exitframe
> if the movietime of sprite(yourdigital video sprite)< 123 then --- ticks
> go to the frame
> else
> go to movie "aa.dir"
> end if
> end

Right idea, but to make it a bit more flexible (and using the dot syntax for
movietime):

on exitframe
  if sprite(DVsprite).mTime < sprite(DVsprite).duration then
    go the frame
  else
    go movie "aa.dir"
  end if
end

The "sprite(DVsprite).duration" might have to be
"sprite(DVsprite).member.duration" - I never can remember if some of the
digital video properties are properties of the member or the sprite, and I
don't have a QT handy to test.

-Kurt


[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