addMusicEventHandler: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
||
Line 23: | Line 23: | ||
|r1= [[Number]] - event handler id | |r1= [[Number]] - event handler id | ||
|x1= <code>private _ehID = addMusicEventHandler ["MusicStart", { | |x1= <code>private _ehID = addMusicEventHandler ["MusicStart", { hint [[str]] _this }];</code> | ||
|x2= <code>private _ehID = addMusicEventHandler ["MusicStop", { | |x2= <code>private _ehID = addMusicEventHandler ["MusicStop", { hint [[str]] _this }];</code> | ||
|seealso= [[setMusicEventHandler]] [[playMusic]] [[removeMusicEventHandler]] [[removeAllMusicEventHandlers]] | |seealso= [[setMusicEventHandler]] [[playMusic]] [[removeMusicEventHandler]] [[removeAllMusicEventHandlers]] |
Revision as of 11:02, 12 May 2022
Description
- Description:
- Adds playMusic event handler. Returns id of the handler or -1 when failed. Like addMissionEventHandler, the music event handler is attached to the mission.
- Groups:
- Event HandlersSounds
Syntax
- Syntax:
- addMusicEventHandler [type, function]
- Parameters:
- type: String - "MusicStart" or "MusicStop"
- function: String or Code - passed params array is [musicClassname, eventHandlerId] where:
params ["_musicClassname", "_ehId"];
- Return Value:
- Number - event handler id
Examples
- Example 1:
private _ehID = addMusicEventHandler ["MusicStart", { hint str _this }];
- Example 2:
private _ehID = addMusicEventHandler ["MusicStop", { hint str _this }];
Additional Information
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
- Posted on Mar 04, 2013 - 13:30 (UTC)
- There are these two types at this time: