Jump to content

Play a sound when pressing a button


ctl
 Share

Recommended Posts

Have a look at the _IsPressed command, which you will need to run in a loop (with Sleep), or you could just set a hotkey via a shortcut for your script.

Make sure brain is in gear before opening mouth!
Remember, what is not said, can be just as important as what is said.

Spoiler

What is the Secret Key? Life is like a Donut

If I put effort into communication, I expect you to read properly & fully, or just not comment.
Ignoring those who try to divert conversation with irrelevancies.
If I'm intent on insulting you or being rude, I will be obvious, not ambiguous about it.
I'm only big and bad, to those who have an over-active imagination.

I may have the Artistic Liesense ;) to disagree with you. TheSaint's Toolbox (be advised many downloads are not working due to ISP screwup with my storage)

userbar.png

Link to comment
Share on other sites

Ok, i think i got it, its working fine, here is the code:

Any suggestions ? Could i maybe stop the sound ?

 #include <Misc.au3>
 #include <MsgBoxConstants.au3>
 
Local $hDLL = DllOpen("user32.dll")
 
 
While 1
    If _IsPressed("78", $hDLL) Then
  SoundPlay('D:\sound.mp3', 1)
           ; Wait until key is released.
        While _IsPressed("78", $hDLL)
            Sleep(1)
        WEnd
    EndIf
    Sleep(250)
WEnd
Edited by ctl
Link to comment
Share on other sites

Easy enough if you look at the Parameters and Remarks in the Help file for SoundPlay, then either use another key to stop the sound or set a value in a variable and use the original key via an Else If test.

I'm not understanding your use of the second While...Wend loop?

You should only need the one, for both start and stop.

Edited by TheSaint

Make sure brain is in gear before opening mouth!
Remember, what is not said, can be just as important as what is said.

Spoiler

What is the Secret Key? Life is like a Donut

If I put effort into communication, I expect you to read properly & fully, or just not comment.
Ignoring those who try to divert conversation with irrelevancies.
If I'm intent on insulting you or being rude, I will be obvious, not ambiguous about it.
I'm only big and bad, to those who have an over-active imagination.

I may have the Artistic Liesense ;) to disagree with you. TheSaint's Toolbox (be advised many downloads are not working due to ISP screwup with my storage)

userbar.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...