Audio::setRadioTrack: Difference between revisions
(yay) |
(yay) |
||
| Line 1: | Line 1: | ||
Only found this one in the decompiled scripts:<br><br>AUDIO::SET_RADIO_TRACK('RADIO_03_HIPHOP_NEW', 'ARM1_RADIO_STARTS');<br>==Syntax==<syntaxhighlight lang="javascript">audio.setRadioTrack(radioStation, radioTrack);</syntaxhighlight>=== Required Arguments ===*'''radioStation:''' String*'''radioTrack:''' String===Return value===*'''Undefined'''==Example==<syntaxhighlight lang="javascript">todo</syntaxhighlight>==See also=={{Audio_function_c}}[[Category:Clientside API]][[Category:TODO: Example]] | Only found this one in the decompiled scripts:<br><br>AUDIO::SET_RADIO_TRACK('RADIO_03_HIPHOP_NEW', 'ARM1_RADIO_STARTS');<br> | ||
==Syntax== | |||
<syntaxhighlight lang="javascript">audio.setRadioTrack(radioStation, radioTrack);</syntaxhighlight> | |||
=== Required Arguments === | |||
*'''radioStation:''' String | |||
*'''radioTrack:''' String | |||
===Return value=== | |||
*'''Undefined''' | |||
==Example== | |||
<syntaxhighlight lang="javascript"> | |||
todo | |||
</syntaxhighlight> | |||
==See also== | |||
{{Audio_function_c}} | |||
[[Category:Clientside API]] | |||
[[Category:TODO: Example]] | |||
Revision as of 19:54, 6 May 2017
Only found this one in the decompiled scripts:
AUDIO::SET_RADIO_TRACK('RADIO_03_HIPHOP_NEW', 'ARM1_RADIO_STARTS');
Syntax
audio.setRadioTrack(radioStation, radioTrack);
Required Arguments
- radioStation: String
- radioTrack: String
Return value
- Undefined
Example
todo