OnClientSoundChangedMeta: Difference between revisions
Jump to navigation
Jump to search
(Created page with '__NOTOC__ {{Client event}} This event is triggered when a sound's meta tags have been modified. ==Parameters== <syntaxhighlight lang="lua"> string streamTitle </syntaxhighlight> *'''streamTitle''': The…') |
m (→See Also) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 14: | Line 14: | ||
==Example== | ==Example== | ||
<section name="Client" class="client" show="true"> | |||
This example will output the new stream title in the chatbox. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
addEventHandler("onClientSoundChangedMeta", root, function(streamTitle) | |||
outputChatBox("* Now streaming: "..streamTitle, 255, 200, 0, false) | |||
end) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | |||
==See Also== | ==See Also== | ||
{{Sound events}} |
Latest revision as of 16:34, 24 May 2012
This event is triggered when a sound's meta tags have been modified.
Parameters
string streamTitle
- streamTitle: The title of a specific stream
Source
The source of this event is the sound of which the meta tags have just been modified.
Example
Click to collapse [-]
ClientThis example will output the new stream title in the chatbox.
addEventHandler("onClientSoundChangedMeta", root, function(streamTitle) outputChatBox("* Now streaming: "..streamTitle, 255, 200, 0, false) end)
See Also
- onClientSoundBeat
- onClientSoundChangedMeta
- onClientSoundFinishedDownload
- onClientSoundStarted
- onClientSoundStopped
- onClientSoundStream