removeMusicEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma3 |Game name=
| arma3 |Game name=
Line 9: Line 8:


|gr2= Sounds |GROUP2=
|gr2= Sounds |GROUP2=
____________________________________________________________________________________________


| Removes specified music track event handler.  |DESCRIPTION=
| Removes specified music track event handler.  |DESCRIPTION=
____________________________________________________________________________________________


| [[removeMusicEventHandler]] [type, id] |SYNTAX=
| [[removeMusicEventHandler]] [type, id] |SYNTAX=
Line 30: Line 27:
[[removeMusicEventHandler]] ["MusicStop",hnd_stop];
[[removeMusicEventHandler]] ["MusicStop",hnd_stop];
</code>|EXAMPLE3=
</code>|EXAMPLE3=
____________________________________________________________________________________________


| [[addMusicEventHandler]], [[setMusicEventHandler]], [[removeAllMusicEventHandlers]], [[playMusic]] |SEEALSO=  
| [[addMusicEventHandler]], [[setMusicEventHandler]], [[removeAllMusicEventHandlers]], [[playMusic]] |SEEALSO=  


|  |MPBEHAVIOUR=  
|  |MPBEHAVIOUR=  
____________________________________________________________________________________________
}}
}}



Revision as of 03:17, 17 January 2021

Hover & click on the images for description

Description

Description:
Removes specified music track event handler.
Groups:
Event HandlersSounds

Syntax

Syntax:
removeMusicEventHandler [type, id]
Parameters:
[type, id]: Array
type: String - "MusicStart" or "MusicStop"
id: Number - event handler id
Return Value:
Nothing

Examples

Example 1:
removeMusicEventHandler ["MusicStart", 12];
Example 2:
removeMusicEventHandler ["MusicStop", 12];
Example 3:
hnd_stop = addMusicEventHandler ["MusicStop",{}]; removeMusicEventHandler ["MusicStop",hnd_stop];

Additional Information

See also:
addMusicEventHandlersetMusicEventHandlerremoveAllMusicEventHandlersplayMusic

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section