At 02:13 +0800 05/11/2002, noelle cheng wrote:
>At 12:04 PM 5/10/2002 -0500, you wrote:
>
>>> My whole movie has hung again... The playhead does not move forward...
>>
>>There's no reason it should. The intermediary framescript behavior
>>explicitly keeps the playback head on the frame containing it.
>
>No, it jumps backward to the frame before it ( and stays there,
>refusing to move).
There's nothing in the code I posted that would cause that to happen.
Something else is going on with the file.
>>All you have to do once these behaviors are made is attach the QT
>>one to your QT sprites, and name each one however you want to;
>
>I name this sprite in the PI with a name I choose myself. Is there
>a limit on the number of characters?
None that I know of. If there is a limit, I suspect it would be 255 characters.
> >then attach the volume one to the volume buttons, specifying the
>name of the QT sprite whose volume is to be adjusted (this would
>be >the name you already gave to the QT sprite).
>
>I name this sprite exactly the same name as the one above and
>adjust the button as up or down
That should work fine too.
>I think that the frame script
>
>on AdjustQTVolume me, nIncrement
> if sprite(me.spriteNum).member.type <> #quickTime then
> put "Sprite" && (me.spriteNum) && "is not a QuickTime sprite."
> exit
> end if
> sprite(me.spriteNum).volume = \
> sprite(me.spriteNum).volume + nIncrement
> END AdjustQTVolume
>should be
>
> on AdjustQTVolume me, nIncrement
> if sprite(me.spriteNum).member.type <> #quickTimeMedia then
> put "Sprite" && (me.spriteNum) && "is not a QuickTime sprite."
> exit
> end if
> sprite(me.spriteNum).volume = \
> sprite(me.spriteNum).volume + nIncrement
> END AdjustQTVolume
Right. But the above is not part of the frame script. The above
belongs on the QuickTime sprite in the Score, along with the rest of
the handlers I indicated belonged in the behavior for the QT sprite.
--
Warren Ockrassa | http://www.nightwares.com/
Director help | Free files | Sample chapters | Freelance | Consulting
Author | Director 8.5 Shockwave Studio: A Beginner's Guide
Published by Osborne/McGraw-Hill
http://www.osborne.com/indexes/beginners_guides.shtml
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/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!]