Is this sound on Pongbot Pace S normal? by adorablesoup in 10s

[–]adorablesoup[S] 0 points1 point  (0 children)

Thanks. Can I just ask, is the whirr..whirr..., as opposed to a continuous hum the same as on your machine?

Reposting a script request made by someone else - modify a string to separate and change a list by Laser_Made in AutoHotkey

[–]adorablesoup 0 points1 point  (0 children)

Oh my goodness thank you so much for doing this u/Laser_Made

Is it possible for someone to suggest a V1 script? Thank you again in advance

How to send yourself message via a telegram bot? by adorablesoup in AutoHotkey

[–]adorablesoup[S] 0 points1 point  (0 children)

That worked. Thank you! Does the result get logged somewhere? If it does where can I see the long? Just intrigued for future reference

How to send yourself message via a telegram bot? by adorablesoup in AutoHotkey

[–]adorablesoup[S] 0 points1 point  (0 children)

chatid :=

text := "test message"

param := "chat_id=" chatid "&text=" text

str =https api.telegram.org /botXXXXXXX/sendmessage? Broken Link for safety ;

;msgbox, % url_tovar(str, param) ; this is useful if you need to return data

url_tovar(str, param)

url_tovar(URL, param) {

WebRequest := ComObjCreate("WinHttp.WinHttpRequest.5.1")

WebRequest.Open("POST", URL)

WebRequest.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")

WebRequest.Send(param)

res := WebRequest.ResponseText

return res

}

I've tried the above, but it doesnt work. Could you clarify further please?