[AutoIt] Help

09/17/2012 20:58 extreme30#1
Hi all epvp coders :D !
I have just a little question...about AutoIt..
How i can add my own music to my project/hack?
I searched on google but could'nt find it....:(
Any help would be apreciated..;)
09/17/2012 21:58 H@CT0R#2
how do you compile your musicfiles with your script= use fileinstall() (use autoit help [F1 in SciTE] for more info)
how do you play them? use _playsound() (use autoit help [F1 in SciTE] for more info)
09/17/2012 22:13 Logtetsch#3
[Only registered and activated users can see links. Click Here To Register...]
09/17/2012 22:56 extreme30#4
Thanks but it's not working ! :(
What i did wrong?...uhmm
Code:
SoundPlay("Trance- Dragon.mp3",1)
09/17/2012 23:12 Achat#5
Play a sound file.


SoundPlay ( "filename" [, wait] )

The Helpfile helps you. Use it!

You need a valid path like @ScriptDir&'\test.mp3'

Regards / MfG
09/18/2012 15:16 extreme30#6
The full code how should look like? Pls help :)
Thanks.!
I just don't really understand ...i wanna the full code like that:
Code:
SoundPlay("filename" etc.....
09/18/2012 16:24 H@CT0R#7
Code:
SoundPlay(@ScriptDir & "test.mp3", 1)
that will play the file test.mp3 in the same directory as the script is
09/18/2012 20:44 extreme30#8
Thanks i got it to work now :) !