Search found 10 matches

by FastRide2
18 Dec 2023, 23:22
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

I use the dark theme and I can read it fine.

Thank you for explaining everything to me so I can understand and learn <3
by FastRide2
17 Dec 2023, 01:55
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

andymbody wrote:
16 Dec 2023, 05:18
Post your updated code (that does not toggle on/off) so we can offer suggestions to get it working.
Nah I just didn't understand how the toggling worked until I saw the code you posted.
What I really don't understand is what Update does. I can't find it in the documentation either.
by FastRide2
16 Dec 2023, 04:53
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

I figured it out. After much help from andymbody and some slight edits that I kinda learned from his code but had to figure out myself for the most part, I have come up with the final code. First I would like to say this script isn't supposed to be optimized or minimalistic. It was made as a learnin...
by FastRide2
16 Dec 2023, 01:52
Forum: Gaming
Topic: Push To Talk (PTT) Mute
Replies: 2
Views: 1026

Re: Push To Talk (PTT) Mute

Congrats on your first script! Just in case you wanted to see how it would be with a loop: #Requires AutoHotkey v2.0 loop { if GetKeyState("XButton1") { ;MsgBox "At least one Backbutton key is down." SoundSetVolume 20 } else { ;MsgBox "Neither Backbutton key is down." SoundSetVolume 100 } } ^q::Exi...
by FastRide2
16 Dec 2023, 01:16
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

Except the loop one as it runs virtually infinitely and I can have it sleep for 1 second... The choice is yours of course, but a loop may reduce accuracy of the values displayed. Loops can also cause blocking (may not be an issue with this particular script). To fix the update issue, simply remove ...
by FastRide2
07 Dec 2023, 03:44
Forum: Gaming
Topic: Push To Talk (PTT) Mute
Replies: 2
Views: 1026

Push To Talk (PTT) Mute

I made a very simple script that lowers your computer volume when you hold your Push To Talk button. It is my first script and it is very basic.... But is very helpful to me as I don't use headphones/earbuds. You will need to change the button around. It is said to mouse button 4 I think? The Browse...
by FastRide2
07 Dec 2023, 03:08
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

Just doesn't update Try this... Use Ctrl+U to display the simulated counter. #Requires AutoHotkey v2.0 #SingleInstance force CoordMode "tooltip", "screen" begin := A_Now ; counter starts when script starts (change if this is not desired) return esc::ExitApp ^u:: ; Ctrl+U ; toggle counter display { ...
by FastRide2
06 Dec 2023, 22:38
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

How about Tooltip and SetTimer instead of MsgBox ? So I actually tried that. It definitely makes it cleaner. But the same problem. The Uptime doesn't update. Below is the code I used. I used the code you provided and that seems to work with what I need.... Just doesn't update. Do you think the main...
by FastRide2
04 Dec 2023, 05:03
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Re: Auto update MsgBox

just an idea with GUI, show only systemstarttime (german) but this is AHK-version -1 #Requires AutoHotkey v1.1.33 #Warn #Noenv setworkingdir,%a_scriptdir% ;mycmd:="netstat -e -s" ;srch :="Bytes" ;- search for this word and show this LINE in EDIT ;- mycmd:="systeminfo" srch :="Systemstartzeit:" ;- g...
by FastRide2
04 Dec 2023, 00:37
Forum: Ask for Help (v2)
Topic: Auto update MsgBox
Replies: 17
Views: 1448

Auto update MsgBox

I was bored so I started to make a uptime script. My problem is with this part of the code. I want the variables to keep updating while the msg box is open and the msg box update to reflect this. The current code works I just can't think of how to add this feature. I am also not sure if the main loo...

Go to advanced search