anton23 0 Posted October 28, 2010 i have this Autoit small script :while 1 = 1$coord = PixelSearch( 200, 250, 700, 800, 0x9c024b, 1 )If Not @error Then MsgBox(0, "X and Y are:", $coord[0] & "," & $coord[1])EndIfsleep ("2000")WEndi wonder how can i change the msgbox into sound, i try use soundplay but its not working?what command i should use appreciate if anyone can modified my script. Share this post Link to post Share on other sites
nitekram 68 Posted October 28, 2010 Make sure you use the whole path of the sound file. If you do not want to, make sure the sound file is in the same directory as the script and it should work. SoundPlay(@WindowsDir & "\media\tada.wav",1) 2¢All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDFLearning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming TipsExcel ChangesControlHover.UDFGDI_PlusDraw_On_ScreenGDI BasicsGDI_More_BasicsGDI RotateGDI GraphGDI CheckExistingItemsGDI TrajectoryReplace $ghGDIPDll with $__g_hGDIPDllDLL 101?Array via ObjectGDI SwimlaneGDI Plus French 101 SiteGDI Examples UEZGDI Basic ClockGDI DetectionTernary operator Share this post Link to post Share on other sites
JoHanatCent 13 Posted October 28, 2010 Like so: ? while 1 = 1 $coord = PixelSearch( 200, 250, 700, 800, 0x9c024b, 1 ) If Not @error Then MsgBox(0, "X and Y are:", $coord[0] & "," & $coord[1] & SoundPlay(@WindowsDir & "\media\tada.wav",1)) EndIf sleep ("2000") WEnd Share this post Link to post Share on other sites
anton23 0 Posted October 28, 2010 Make sure you use the whole path of the sound file. If you do not want to, make sure the sound file is in the same directory as the script and it should work.SoundPlay(@WindowsDir & "\media\tada.wav",1)Yeah I understand about the path the problem is I want run sound in same folder call “tada.wav”I try SoundPlay (" \tada.wav",1)not working what script I need to write for play sound in same folder? Share this post Link to post Share on other sites
Realm 18 Posted October 28, 2010 Hello anton23, Try: SoundPlay(@ScriptDir & "\tada.wav",1) Realm My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. Share this post Link to post Share on other sites
anton23 0 Posted October 28, 2010 Hello anton23, Try: SoundPlay(@ScriptDir & "\tada.wav",1) Realm thank you very much Share this post Link to post Share on other sites
Realm 18 Posted October 28, 2010 thank you very muchMy Pleasure, I had the time Realm My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. Share this post Link to post Share on other sites