playMusic: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Plays music defined in [[Description.ext#Music|CfgMusic]]. To stop the music execute [[playMusic]] "". |= Description
| Plays music defined in [[Description.ext#Music|CfgMusic]]. To stop the music execute [[playMusic]] "" or give the start time which is beyond sample duration playMusic ["SomeMusic", 1000];  |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 20: Line 20:
|p21= [name, start]: [[Array]] |= Parameter 1
|p21= [name, start]: [[Array]] |= Parameter 1
|p22 = name: [[String]] - music class |= Parameter 2
|p22 = name: [[String]] - music class |= Parameter 2
|p23= start: [[Number]] - start from (seconds) |= Parameter 3
|p23= start: [[Number]] - start from (seconds). Could be negative. |= Parameter 3


|r2= [[Nothing]] |= Return value 2
|r2= [[Nothing]] |= Return value 2

Revision as of 23:08, 15 December 2013

Hover & click on the images for description

Description

Description:
Plays music defined in CfgMusic. To stop the music execute playMusic "" or give the start time which is beyond sample duration playMusic ["SomeMusic", 1000];
Groups:
Uncategorised

Syntax

Syntax:
playMusic name
Parameters:
name : String - music class
Return Value:
Nothing

Alternative Syntax

Syntax:
playMusic [name, start]
Parameters:
[name, start]: Array
name: String - music class
start: Number - start from (seconds). Could be negative.
Return Value:
Nothing

Examples

Example 1:
playMusic "RadioAmbient1";
Example 2:
playMusic ["RadioAmbient3", 3]; //start from 00:00:03
Example 3:
Play from 00:00:01 to 00:00:050 = [] spawn { playMusic ["RadioAmbient5", 1]; sleep 4; playMusic ""; };

Additional Information

See also:
playSoundsaycreateSoundSourceaddMusicEventHandler

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

Crowe
You can get all Music Types from Arma:_cfgMusic http://community.bistudio.com/wiki/Arma_2:_Music#top

Bottom Section