[VxE]
Joined: 07 Oct 2006 Posts: 1499
|
Posted: Thu Dec 20, 2007 4:17 am Post subject: |
|
|
| The Manual wrote: | | If a file is playing and the current script plays a second file, the first file will be stopped so that the second one can play. On some systems, certain file types might stop playing even when an entirely separate script plays a new file. | For advanced sound playing, I would suggest that you investigate an open-source media player program with either command-line interface or an open API. With such a media player, you could use AHK to, for instance... | Code: | | run c:\VLC.exe "Filepath.wav" -play -multiinstance -nogui ; not actual code !! | or someting similar and then use either controlsend or sendmessage to control the program once it's launched.
Anyways, it probably won't be quick and easy to get this working, but I think instancing other media player programs might be your best bet. _________________ My Home Thread
More Common Answers: [1]. It's in the FAQ [2]. Ternary ( a ? b : c ) guide [3]. Post code inside [code][/code] tags ! |
|