Search found 84 matches

by likethevegetable
Yesterday, 21:10
Forum: Scripts and Functions (v2)
Topic: Apply hotkeys to the new context menu on Windows 11
Replies: 11
Views: 4028

Re: Apply hotkeys to the new context menu on Windows 11

Looking forward to giving this try. On a somewhat related note, have you tried to implement shortcuts for opening folders in new tabs, with say Shift+Click?

Gosh there's a lot of low-hanging fruit for Win 11 to be better.
by likethevegetable
03 Jun 2024, 11:54
Forum: Ask for Help (v2)
Topic: menu object on top of windows 11 start menu
Replies: 2
Views: 175

menu object on top of windows 11 start menu

I'm mapping a hotkey to open a few things simultaneously: windows start menu, notification menu, and custom menu of my design. I would like this custom menu to appear on top of the start and notification menu, however. Currently, it appears behind it. Eg. #Requires Autohotkey v2.0+ makemenu(){ mainm...
by likethevegetable
28 Dec 2023, 15:59
Forum: Ask for Help (v2)
Topic: ComboBox - change appearance of border and arrow button
Replies: 1
Views: 272

ComboBox - change appearance of border and arrow button

I would like to ideally hide the border but if not change the color of the border for a ComboBox. Further, I would like to hide or change the color of the arrow. The only option that seems to work is Theme. mygui := Gui() mygui.BackColor := "1d1f21" mygui.AddComboBox("cc5c8c6 Background1d1f21 -Theme...
by likethevegetable
19 Dec 2023, 07:11
Forum: Ask for Help (v2)
Topic: Update list of entries for combox? Topic is solved
Replies: 1
Views: 231

Update list of entries for combox? Topic is solved

You can initialize a list of options for a combobox, but can you change them while the GUI is still open?

```
mygui.AddComboBox("", ["hello","world"]) ;
mygui.Opt("",["hello2","world2"]); this obviously does not work..
``
by likethevegetable
28 Aug 2023, 16:01
Forum: Ask for Help (v2)
Topic: Press and hold an SC key
Replies: 7
Views: 381

Re: Press and hold an SC key

Fn+Esc toggles function lock my keyboard. I agree that it may be a hardware problem.
by likethevegetable
28 Aug 2023, 11:49
Forum: Ask for Help (v2)
Topic: Press and hold an SC key
Replies: 7
Views: 381

Re: Press and hold an SC key

Interesting, it doesn't register the Esc.

FF 163 d 2.34 not found
FF 163 u 0.00 not found
by likethevegetable
28 Aug 2023, 10:37
Forum: Ask for Help (v2)
Topic: Press and hold an SC key
Replies: 7
Views: 381

Re: Press and hold an SC key

boiler wrote:
28 Aug 2023, 10:09
Try implementing a v2 translation of Masonjar13’s solution.
That seems to detect Fn presses, I want to emulate it.
by likethevegetable
28 Aug 2023, 10:02
Forum: Ask for Help (v2)
Topic: Press and hold an SC key
Replies: 7
Views: 381

Press and hold an SC key

I'm trying to emulate toggling Fn lock on my keyboard, however the following does not seem to work like I thought it would:

SendInput "{SC163 Down}"
SendInput "{Esc}"
SendInput "{SC163 Up}"
by likethevegetable
24 Jul 2023, 13:28
Forum: Scripts and Functions (v2)
Topic: LNCHR - my version of a quick launcher
Replies: 5
Views: 1542

Re: LNCHR - my version of a quick launcher

Very smooth app -- I like it! Just a heads up that the Outlook search feature doesn't seem to work on my system. Error: (0x80080005) Server execution failed ---- S:\AutoHotkey\MiscTools\LNCHR-pub-master\LNCHR-Funcs.ahk 088: outlookApp := ComObjActive("Outlook.Application") 089: Catch ▶ 090: outlook...
by likethevegetable
23 Jul 2023, 08:44
Forum: Scripts and Functions (v2)
Topic: [AHK v2] File/Folder Path Auto Complete
Replies: 4
Views: 2003

Re: [AHK v2] File/Folder Path Auto Complete

Are you able to demonstrate how we could use this to autocomplete an edit/input control on a gui?
by likethevegetable
13 Jul 2023, 21:22
Forum: Ask for Help (v2)
Topic: GUI with CapsLock sometimes fails to activate
Replies: 9
Views: 458

Re: GUI with CapsLock sometimes fails to activate

Sounds good. I'm starting to think the problem only occurs on my work laptop, will try mine and your examples and see if the behavior occurs. Thank you for the help.
by likethevegetable
13 Jul 2023, 21:17
Forum: Ask for Help (v2)
Topic: GUI with CapsLock sometimes fails to activate
Replies: 9
Views: 458

Re: GUI with CapsLock sometimes fails to activate

You can see one of the problems with your script if you simply press CapsLock repeatedly. I don't think that your Suspend calls have any practical usage, and #WinActivateForce does not seem relevant to your script. I use the Suspend calls because in my actual implementation, I'm #including some oth...
by likethevegetable
13 Jul 2023, 21:06
Forum: Ask for Help (v2)
Topic: GUI with CapsLock sometimes fails to activate
Replies: 9
Views: 458

Re: GUI with CapsLock sometimes fails to activate

It would be useful if you can test the posted script to see how it behaves. If you have a problem with it, provide specific details about the circumstances (windows, etc.) and what actions you take to reproduce the problem. Could the posted script have a different result from yours? Yes, because it...
by likethevegetable
13 Jul 2023, 21:02
Forum: Ask for Help (v2)
Topic: GUI with CapsLock sometimes fails to activate
Replies: 9
Views: 458

Re: GUI with CapsLock sometimes fails to activate

I'm not sure why you would want to keep building the same GUI multiple times. The script is a bit convoluted and can be simplified a great deal. #Requires AutoHotkey v2.0 lngui := Gui('+AlwaysOnTop -SysMenu -Caption +Border') lngui.AddText(, 'Hello World') lngui.OnEvent('Escape', (gui) => gui.Hide(...
by likethevegetable
13 Jul 2023, 20:38
Forum: Ask for Help (v2)
Topic: GUI with CapsLock sometimes fails to activate
Replies: 9
Views: 458

GUI with CapsLock sometimes fails to activate

I have a GUI that's triggered by CapsLock (and CapsLock toggling is disabled and the script allows toggling with alt or shift or ctrl CapsLock). Sometimes, I noticed particularly if I exit out of another program and press the CapsLock too soon, the GUI does not activate and the CapsLock state is tog...
by likethevegetable
06 Jul 2023, 09:06
Forum: Scripts and Functions (v2)
Topic: LNCHR - my version of a quick launcher
Replies: 5
Views: 1542

LNCHR - my version of a quick launcher

There are many out there that do a similar job, but I wanted to share mine. This is my version of a quick launcher to map shortcuts, run commands, Google searches, and even a calculator, to a snappy little app that you open with CapsLock and start typing. The documentation contains more info: https:...

Go to advanced search