layer Posted August 5, 2005 Posted August 5, 2005 (edited) I submitted this to jpm, because I thought it would go good with the beep function... Hoping it gets included... It's pretty straight forward, but it's not one of those things like oh I know how to do this in AutoIt why have it as a UDF... It's something from MSDN, do you don't just know how to do it off the bat, that's why I feel it would make a good addition. Edited August 5, 2005 by layer FootbaG
layer Posted August 6, 2005 Author Posted August 6, 2005 Hello guys and gals, now I really need some testers. Can I get feedback from, Win 2000, WinME, Win 95, and Win NT users please? I really need to know if they work on these systems... If you run my example, you should only here 2 beeps... Both the same frequency and length (2000 freq. and 2 seconds(2000 miliseconds)) ... Thanks so much! FootbaG
Helge Posted August 7, 2005 Posted August 7, 2005 I'm unable to comment on this myself, but maybe if you explained a littlebit better (or at all) what this function actually does, you might get afew comments from people.
jpm Posted August 7, 2005 Posted August 7, 2005 Hello guys and gals, now I really need some testers.Can I get feedback from, Win 2000, WinME, Win 95, and Win NT users please? I really need to know if they work on these systems... If you run my example, you should only here 2 beeps... Both the same frequency and length (2000 freq. and 2 seconds(2000 miliseconds)) ... Thanks so much!<{POST_SNAPBACK}>You better put a script that's people can run directly your .zip is not.
w0uter Posted August 7, 2005 Posted August 7, 2005 other then that it blocks the beep requests. i dont see anything else. My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
layer Posted August 7, 2005 Author Posted August 7, 2005 (edited) You guys are confusing... (Needs latest BETA) ...@w0uter, what system are you running? Because that's what it's supposed to do... If you're running XP, don't bother, because it's been tested on XP, but if it's another system, please tell me ! Thanks.@Helge,Sorry, I knew I didn't explain it enough. If you run the script (I'll post it at thje bottom of this post) , you should here 1 low beep. If you here 0 beeps, let me know what system you are running (I believe you're win 2000 ?)... The beep will be 2 seconds long@jpm,The .ZIP includes an example, but I'll do as you said and post one directly on the forums. Maybe this function will not proove useful for AutoIt ? But I'd like to see Bepp have at least one UDF for it ...Example:_BeepServiceStart() Beep(400, 2000) _BeepServiceStart(0) Beep(2000, 2000) _BeepServiceStart() Func _BeepServiceStart($iStartStop = 1) If StringIsAlpha($iStartStop) Then SetError(0) Return 0 ElseIf $iStartStop = 1 Then $sNetCmd = "net start beep" Else $sNetCmd = "net stop beep" EndIf Return RunWait(@ComSpec & " /C " & $sNetCmd, "", @SW_HIDE) EndFuncThanks guys ! Edited August 7, 2005 by layer FootbaG
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now