> The question though is, does anyone have any ideas how I could monitor it
as
> it plays, and get Director to execute a handler each time
> "sound(n).member.membernum" changes?

I just tried this which worked just fine.
Of course I wouldnt use the idle handler in a real project. Did it just to
test the functionality.
Id suggest You do the checking in an exitFrame Handler.
But here is the script, and it works fine on my D8 Win

global currentMember

on startMovie
    sound(1).queue(member(1))
    sound(1).queue(member(2))
    sound(1).queue(member(3))
    sound(1).queue(member(4))
    sound(1).play()
end startMovie


on idle
    aMember = sound(1).member
    if aMember <> currentMember then
        put aMember
        currentMember = aMember
    end if
end idle

BTW I would be happy to hear about the cuePoint bug You are refering to. I
have used it a lot with no problem.
In fact, I would prefer to use it in this situation.

Bjarne
_______________________________________________________
"solving a problem is not a case of finding a solution, it is a case of
finding
a set of easier problems that you already know how to solve."
James Newton


Bjarne Nyquist
Researcher, Lingo Programmer
The Interactive Institute, phone: +46-(0)8 783 24 74
www.interactiveinstitute.se
----- Original Message -----
From: "Michael Nadel" <[EMAIL PROTECTED]>
To: "Buzz Kettles" <[EMAIL PROTECTED]>
Cc: "HandyMan" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, June 14, 2001 11:03 AM
Subject: Re: <lingo-l> queued sounds


> When a queued list of sounds is playing, I did notice that you can monitor
> this: "sound(n).member.membernum"
>

>
> Thanks for any ideas!
>
> Michael Nadel
> [EMAIL PROTECTED]
> Mediart - Multimedia as an Art Form
>
>
>
>
>
>
>
>
>
>
> [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!]


[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