
The xch_sound tag may have the following values:
xch_sound
| play
| Begins playing the associated href.
|
| loop
| Begins playing the associated href. The sound will loop continuously until a
'play' or 'stop' is received.
|
| stop
| Stops any currently playing sound.
|
HREF
If the play or loop values are specified, then this tag specifies the URL of the sound file.
EVENT
This attribute specifies the sound events which should cause commands to be sent to the world. The following events are currently supported:
complete A command will be sent when the sound file finishes playing.
For a more complete explanation of event notification, see the section below.
MD5
This attribute specifies the MD5 value for this user. The MD5 value is passed to the world server through the PUEBLOCLIENT command.
This attribute is used only when method=xch_cmd is specified.
ACTION
If the MD5 attribute is specified, then the ACTION attribute may be specified to override the command sent to the world when a requested sound event occurs. If this attribute is not specified, or the MD5 attribute is incorrect or missing, then the PUEBLOSOUND command is sent.
Event notification
You can be notified when a sound file has completed playing. You do this by specifying the EVENT attribute and optionally the ACTION and MD5 attributes.
The EVENT attribute specifies the events for which you wish notification. Currently, the only event supported is the ‘complete’ event, which is triggered when the sound is finished playing. When this occurs, you receive the PUEBLOSOUND command followed by the event name. For example, if you specified the following command:
<img xch_sound=play href="http://www.chaco.com/music/disco.mid" event="complete">
Then the specified MIDI file would play. When the end of the MIDI file was reached, the following command would be sent to the world:
PUEBLOSOUND complete
Note: By definition, a looped sound never completes, so no ‘complete’ notification will ever be sent.
Using the ACTION and MD5 attributes, you can change the command that is sent to the world. The value of the ACTION attribute is the command that is sent to the world, providing that the MD5 attribute matches the value sent to the world through the
PUEBLOCLIENT command. For example, if the sound was played using the following command:<img xch_sound=play href="http://www.chaco.com/music/explosion.wav" event="complete" action="_on_explosion" md5="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
Then the specified WAVE file would play. When the end of the sound file was reached, the following command would be sent to the world:
_on_explosion complete
Examples
This tag loads the specified URL and begin playing the midi file:
<img xch_sound=play href="http://www.chaco.com/music/jazz.mid">
Also see
Pueblo Enhancers Guide
xch_device
xch_volume