OnClientSoundChangedMeta: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 22: Line 22:
end)
end)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
===Client sound events===
{{Sound_events}}
===Client event functions===
{{Client_event_functions}}


[[Category:Needs_Example]]
{{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 [-]
Client

This 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