WoW:API PlayMusic: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (Typos)
No edit summary
Line 15: Line 15:


:("mp3")
:("mp3")
:;mp3 : String - This is the complete path to an mp3. It is relative to your World of Warcraft Folder!
:;mp3 : String - This is the complete path to an mp3. It is relative to your World of Warcraft\Data sub-folder!


----
----

Revision as of 14:14, 27 July 2006

PlayMusic -Documentation by Holo-


PlayMusic("mp3");


Plays the given mp3.


Arguments


("mp3")
mp3
String - This is the complete path to an mp3. It is relative to your World of Warcraft\Data sub-folder!

Example


PlayMusic("Sound\\Music\\GlueScreenMusic\\wow_main_theme.mp3");

Details


This function plays the given music file (file format has to be mp3, I think. I have not tried others.) You cannot pause the playback. You can stop it with StopMusic.
If any of the built-in music is playing when you call this function (e.g. Stormwind background music), it will fade out.
The file you specified will loop until you call StopMusic.

Template:WoW API