|
|
|
Wait for cuePoint behavior
Added on 6/10/1999
|
Wait for cuePoint behavior
property WhichCuePoint, WhichChannel
on exitFrame me
if (isPastCuePoint (sound #whichChannel, #cuePoint)=1) then
go to the frame + 1
end if
end
on getPropertyDescriptionList
set p_list = [#whichChannel: [ #comment:"Channel:",#format:#integer,#default:1 ],#WhichSound: [ #comment: "CuePoint:", #format: #cuePoint, #default: "" ]]
return p_list
end
on getBehaviorDescription
return "Does exactly the same thing as setting the temp channel to "Wait for cuePoint in the specified channel."
end
|
|