Search found 240 matches

by V0RT3X
07 May 2024, 09:25
Forum: Ask for Help (v1)
Topic: Monitor resolution
Replies: 2
Views: 485

Re: Monitor resolution

For total screen resolution try... Sysget, totalWidth, 78 Sysget, totalHeight, 79 MsgBox % "Total screen resolution is " totalWidth " x " totalHeight Result on my system... image.png For individual monitor info try... SysGet, MonitorCount, MonitorCount SysGet, MonitorPrimary, MonitorPrimary MsgBox, ...
by V0RT3X
07 May 2024, 09:00
Forum: Ask for Help (v1)
Topic: Export large icon without shortcut overlay
Replies: 2
Views: 318

Re: Export large icon without shortcut overlay

No idea how to remove the shortcut overlay arrows with AHK, but if you are simply trying to eliminate those arrows, there's a simple app called "Windows Shortcut Arrow Editor" that can do that for you that I've been using for years... image.png https://winaero.com/windows-shortcut-arrow-editor/ (Mod...
by V0RT3X
04 May 2024, 08:01
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 3098

Re: HoverScroll and Microsoft Edge

Probably a silly question, but do you actually have AutoHotkey installed? You need that to run .ahk files. Once installed, you can compile your .ahk script into an .exe using ahk2exe that comes with the AutoHotkey installation as noted by Gregster, that you can run on any computer without the need t...
by V0RT3X
30 Apr 2024, 07:18
Forum: Gaming Help (v1)
Topic: Hello im trying to figure out is going on in this script could anyone help
Replies: 1
Views: 275

Re: Hello im trying to figure out is going on in this script could anyone help

You will probably have better luck asking ChatGPT to summarize that script as it is unlikely anyone is going to try documenting someone else's almost 3000 line script.
by V0RT3X
23 Apr 2024, 07:45
Forum: Ask for Help (v1)
Topic: Translation hotkey
Replies: 6
Views: 239

Re: Translation hotkey

Yet another option...
viewtopic.php?f=6&t=119371&p=537110&hilit=translate#p529653

image.png
(16.95 KiB) Downloaded 24 times
by V0RT3X
21 Apr 2024, 22:22
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 260

Re: Sendinput Won't Send ! Within A Variable

Thanks goes to mikey... my code is a mutation of something he helped me with before.
by V0RT3X
21 Apr 2024, 20:13
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 260

Re: Sendinput Won't Send ! Within A Variable

Perhaps something like this..? #NoEnv SendMode Input SetWorkingDir %A_ScriptDir% Variable1 := "Send variable with an exclamation mark inside the variable!" Variable2 := "And now send variable with an exclamation mark outside the variable" Variable3 := "Hopefully this is along the lines of what you a...
by V0RT3X
17 Apr 2024, 17:17
Forum: Ask for Help (v2)
Topic: Open a pdf file in Chrome New tab
Replies: 8
Views: 252

Re: Open a pdf file in Chrome New tab

I would lose the brackets... >!l:: ;; RAlt + L Var := % Explorer_GetSelection() Run "C:\Program Files\Google\Chrome\Application\chrome.exe /newtab" %Var% Return You will also need the Explorer_GetSelection() function for this if you don't already have it. Looks to be a version of this old script pos...
by V0RT3X
16 Apr 2024, 18:24
Forum: Ask for Help (v1)
Topic: I accidently deleted a script file, how can I restore it?
Replies: 6
Views: 158

Re: I accidently deleted a script file, how can I restore it?

If the script is still running and you can create a dump file through task manager, this link may or may not help...

https://superuser.com/questions/817375/recover-the-text-from-a-notepad-dump-file
by V0RT3X
09 Apr 2024, 08:21
Forum: Gaming Help (v1)
Topic: Pause, STOP, restart.
Replies: 2
Views: 151

Re: Pause, STOP, restart.

Add this line to your script...

Code: Select all

F3::Reload

Also, please use the code tags. Makes it a lot easier for other to help.
Simply highlight the coding, then press the code button.
image.png
image.png (22.38 KiB) Viewed 148 times

Depending on your board style, it may show the word 'Code'...
image.png
image.png (10.21 KiB) Viewed 148 times
by V0RT3X
07 Apr 2024, 20:19
Forum: Ask for Help (v1)
Topic: Multiline input
Replies: 24
Views: 1009

Re: Multiline input

Per the documentation... look at Default.

https://www.autohotkey.com/docs/v1/lib/GuiControls.htm#Button
by V0RT3X
05 Apr 2024, 06:56
Forum: Ask for Help (v1)
Topic: Long press is not working Topic is solved
Replies: 78
Views: 3233

Re: Long press is not working Topic is solved

Haven't tested myself, but I would have a look at Rohwedder's code at...

viewtopic.php?f=76&t=125300&p=556712&hilit=long+press#p556696
by V0RT3X
03 Apr 2024, 15:24
Forum: Ask for Help (v1)
Topic: Can't terminate scripts Topic is solved
Replies: 4
Views: 207

Re: Can't terminate scripts Topic is solved

Try adding this to the top of your script...

Code: Select all

DetectHiddenWindows, On
by V0RT3X
03 Apr 2024, 09:58
Forum: Ask for Help (v1)
Topic: #If documentation
Replies: 3
Views: 75

Re: #If documentation

Thank you, I was just looking into making that swap.
So do you know if that Gui created is by the {Volume_Up} and {Volume_Down} commands?
That became my suspicion, but I haven't come across anything stating as much yet.
Thanks for the suggestion!!
by V0RT3X
03 Apr 2024, 09:34
Forum: Ask for Help (v1)
Topic: #If documentation
Replies: 3
Views: 75

#If documentation

Referencing example #1 on the #If documents page for scrolling volume when mouse cursor is over the taskbar, this also produces a vertical scrollbar gui. https://www.autohotkey.com/docs/v1/lib/_If.htm#ExVolume image.png Is there anyway to use this example without the gui being created? #If MouseIsOv...
by V0RT3X
03 Apr 2024, 09:01
Forum: Ask for Help (v1)
Topic: Scroll volume when over Gui. Topic is solved
Replies: 2
Views: 90

Re: Scroll volume when over Gui. Topic is solved

Thanks for this tabr3 . It works, but also works across the entire taskbar on my second monitor. I'll have to see if I can figure out if this can be fine tuned to only be a 50x40 pixel area. But for the time being it's a lot better than what I had going!! Thank you!! EDIT: This actually turned out t...
by V0RT3X
03 Apr 2024, 07:26
Forum: Ask for Help (v1)
Topic: Scroll volume when over Gui. Topic is solved
Replies: 2
Views: 90

Scroll volume when over Gui. Topic is solved

I came across this little script that detects when mouse cursor is over a script's Gui and when it leaves a script's Gui. What I can't figure out is how to put hotkeys inside a function for simple volume up and down. What I'm attempting to do is I have a volume script that display the volume percent...
by V0RT3X
02 Apr 2024, 12:05
Forum: Ask for Help (v1)
Topic: How to change text color and allow click-through in small Gui? Topic is solved
Replies: 8
Views: 138

Re: How to change text color and allow click-through in small Gui? Topic is solved

I think I need some sleep. I shouldn't be making these kinds of mistakes.

Code: Select all

; THIS
Gui, Font, cLime
GuiControl, Font, VolumeText

; NOT THIS
GuiControl, Font, cLime
Paying attention to the details matters!
Sorry for taking up your time with my carelessness!

Seriously, Thank you VERY much!!
by V0RT3X
02 Apr 2024, 10:44
Forum: Ask for Help (v1)
Topic: How to change text color and allow click-through in small Gui? Topic is solved
Replies: 8
Views: 138

Re: How to change text color and allow click-through in small Gui? Topic is solved

Ugg... something so small. Thank you for spotting that. So now if volume level is Zero the display shows Mute in red as wanted, but when raising the volume above Zero again it stays red. Shouldn't the 'else' in this script show the volume % in lime again once it goes to One or above? UpdateVolume: S...
by V0RT3X
02 Apr 2024, 09:04
Forum: Ask for Help (v1)
Topic: How to change text color and allow click-through in small Gui? Topic is solved
Replies: 8
Views: 138

Re: How to change text color and allow click-through in small Gui? Topic is solved

Okay, so while your test script works exactly as anticipated, when I try adapting to what I have I still can't click-through. I managed to get this to say Mute if the volume is all the way down, but still in the color lime and the preference would be any time the volume is muted regardless of level,...

Go to advanced search