Search found 24 matches

by OrangeCat
01 May 2024, 16:03
Forum: Ask for Help (v1)
Topic: Toggle NumLock ScrollLock & CapsLock Issue
Replies: 2
Views: 337

Toggle NumLock ScrollLock & CapsLock Issue

I was provided a CapsLock toggle answer that works perfect for CapsLock I tried to replicate the same for NumLock and ScrollLock but they don't toggle at all. What is it that I'm doing wrong? TOGGLE_CapsLock: If GetKeyState("CapsLock", "T") = 1 SetCapsLockState, Off Else If GetKeyState("CapsLock", "...
by OrangeCat
25 Apr 2024, 15:45
Forum: Ask for Help (v1)
Topic: "'Non Titlebar-limited/From anywhere-within' Window Mover" Script Improvement Help
Replies: 2
Views: 225

Re: "'Non Titlebar-limited/From anywhere-within' Window Mover" Script Improvement Help

Thanks, I found Juho's version and tweaked it a little bit... For those interested: SetWinDelay, -1 CoordMode, Mouse, Screen ; .--------. ; ×××××××××××××××| HOTKEY |××××××××××××××× ; '========' ~LButton & MButton::Gosub, WindowDrag ; .--------. ; ×××××××××××××××| SCRIPT |××××××××××××××× ; '========'...
by OrangeCat
25 Apr 2024, 06:34
Forum: Ask for Help (v1)
Topic: "'Non Titlebar-limited/From anywhere-within' Window Mover" Script Improvement Help
Replies: 2
Views: 225

"'Non Titlebar-limited/From anywhere-within' Window Mover" Script Improvement Help

Hello... I found & tweaked a script that does exactly as post's title description, although I'd like to learn/to come with a different approach for arriving to the same result. As long as the cursor is anywhere within selected-window's area, I can move the entire window where-ever (The same action t...
by OrangeCat
23 Apr 2024, 12:33
Forum: Ask for Help (v1)
Topic: Create & Use Custom Labels as Hotkey
Replies: 10
Views: 912

Re: Create & Use Custom Labels as Hotkey

Okay, I meant to say that I was just thinking your Dec 30th example of "hotkey line usage" seemed to applied the same rules as a 1 lined script... (seeing a Return included in what I assumed to be a single-line code as the rest of the same-line seems to be related the same as a gosub, Thus I was thi...
by OrangeCat
23 Apr 2024, 03:14
Forum: Ask for Help (v1)
Topic: Create & Use Custom Labels as Hotkey
Replies: 10
Views: 912

Re: Create & Use Custom Labels as Hotkey

No, you just have to use proper syntax. As always, literal strings in expressions must be quoted: #Requires AutoHotkey v1.1.35 MB0 := "XButton1" Hotkey % MB0 " & WheelDown", Cancel, On Return Cancel: Send help Return Or you could use legacy syntax instead of forcing an expression. This is the equiv...
by OrangeCat
15 Apr 2024, 19:58
Forum: Tutorials (v1)
Topic: Profile Categories & SplashImage Tray Area
Replies: 1
Views: 154

Re: Profile Categories & SplashImage Tray Area

I figured out 1), How to "Profile reverse" ChangeProfileUp: Profile := Profile = Count ? 1 : Profile + 1 Gosub, _DisplayProfile RETURN ChangeProfileDown: Profile := Profile - 1 If Profile = 0 Profile := Count Gosub, _DisplayProfile RETURN The moment profile = 0, it instantly auto-changes to the last...
by OrangeCat
11 Apr 2024, 18:20
Forum: Tutorials (v1)
Topic: Profile Categories & SplashImage Tray Area
Replies: 1
Views: 154

Profile Categories & SplashImage Tray Area

Hello, I'm trying to make a script with profiles. I have the profiles setup and all of that works perfect for changing to the next profile and everything via increments There's 2 things that I'd like to do - 1) I'd like to make it possible to navigate backwards to the prior profile rather than loopi...
by OrangeCat
07 Apr 2024, 03:20
Forum: Ask for Help (v1)
Topic: Need help with my script
Replies: 2
Views: 122

Re: Need help with my script

Thank you! I tend to use a "_" as the starting character to all my gosubs (which, I prior also used to do the same for my "variables / or w.e it is that they're called") which I'm copying my old stuff into a new script, trying to have a more cleaner/organized look somehow via Visual Studio Code so, ...
by OrangeCat
04 Apr 2024, 14:06
Forum: Ask for Help (v1)
Topic: Need help with my script
Replies: 2
Views: 122

Need help with my script

Hello... I need help with my script... The WindowDrag Feature doesn't want to work, remains stuck on, which I would assume releasing L button should cease drag feature... Here's my entire script... #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enab...
by OrangeCat
01 Apr 2024, 17:41
Forum: Ask for Help (v1)
Topic: Replicate Action Center via AHK Icon
Replies: 0
Views: 60

Replicate Action Center via AHK Icon

Hello... I find the Action Center Icon to be a bit too big... I was wondering if it's possible/how easy it would be to script something that can change the AHK tray Icon for whenever there's any action center unread notification... And to then revert back to initial tray icon when all notification a...
by OrangeCat
28 Mar 2024, 17:08
Forum: Ask for Help (v1)
Topic: Toggle any window clickthrough on/off
Replies: 3
Views: 173

Re: Toggle any window clickthrough on/off

Was wondering, If I were to change the class of an .exe, would this affect anything? Wondering if I should change the class via a clickthrough toggle, as-well as setting a %count% for each .exe applied hotkey, so that way I can disable clickthrough via class call? Unless if you or anyone else would ...
by OrangeCat
28 Mar 2024, 07:01
Forum: Ask for Help (v1)
Topic: Toggle any window clickthrough on/off
Replies: 3
Views: 173

Toggle any window clickthrough on/off

I've been searching for hours but yet can't find a solution to my problem... I found bits & pieces online for transparency and successfully integrated it into my script... ...but I can't figure out how to properly set a clickthrough toggle... I can set a window as clickthrough, but then when doing s...
by OrangeCat
02 Jan 2024, 12:44
Forum: Ask for Help (v1)
Topic: Create & Use Custom Labels as Hotkey
Replies: 10
Views: 912

Re: Create & Use Custom Labels as Hotkey

Thank you kindly everyone, really appreciate your help.
mikeyww & boiler
by OrangeCat
30 Dec 2023, 22:37
Forum: Ask for Help (v1)
Topic: Create & Use Custom Labels as Hotkey
Replies: 10
Views: 912

Re: Create & Use Custom Labels as Hotkey

I'm gathering that the hotkey command cannot be used as part of a combination... ...unless if the combination is already included within the hotkey's related ":=" entry itself... am I correct? or would something similar to this be possible? Hotkey % MB0 & WheelDown, Cancel, On ======================...
by OrangeCat
30 Dec 2023, 16:40
Forum: Ask for Help (v1)
Topic: Create & Use Custom Labels as Hotkey
Replies: 10
Views: 912

Re: Create & Use Custom Labels as Hotkey

I've often attempted to properly interpret that help-file's specific section (using original-post's hotkey syntax of preference) If not too much trouble, I'll paste one of a sub-profile's portion of my code and relative Go Subs here... If not much trouble to provide a small portion example of how i'...
by OrangeCat
26 Dec 2023, 21:51
Forum: Ask for Help (v1)
Topic: Create & Use Custom Labels as Hotkey
Replies: 10
Views: 912

Create & Use Custom Labels as Hotkey

I've been searching the forums and found some hints but I haven't been able to figure out how to achieve my desired goal... I've a ReDragon M913 Mouse, A mouse that has a total of 16 remapped buttons via its factory-software... I remapped 13 of the 16 factory-software's remapable buttons only (leav...
by OrangeCat
04 Dec 2023, 23:07
Forum: Ask for Help (v1)
Topic: Altering specific-file's attributes.
Replies: 2
Views: 233

Re: Altering specific-file's attributes.

Removing the quotations resolved everything. Thank you!
(I had only included the quotations due to having a "space-separated" target paths).
by OrangeCat
03 Dec 2023, 16:10
Forum: Ask for Help (v1)
Topic: Altering specific-file's attributes.
Replies: 2
Views: 233

Altering specific-file's attributes.

Hello... I'm trying to write a script to simply hide a specific "lnk" located in " Start Menu " ( All Users ) (for which I've attempted to execute via " run as administrator ") I believe I'm on the right path, but, I just don't understand why the script won't work at all (as no attributes are change...
by OrangeCat
11 Sep 2023, 05:58
Forum: Ask for Help (v1)
Topic: Universal input-language switch script
Replies: 0
Views: 283

Universal input-language switch script

Hello, If not too much trouble, was wondering if someone would be able to provide a "input-language/keyboard layout switch" script via below-stated parameter respect For the script to not rely onto any of windows default-set hotkey(s) configuration (As in: to not rely on "Send {!Shift}", "Send {#Spa...
by OrangeCat
29 Aug 2023, 06:29
Forum: Ask for Help (v1)
Topic: Have a "Recent .ahk" quick access menu...
Replies: 3
Views: 325

Re: Have a "Recent .ahk" quick access menu...

I was thinking about Windows recent directory while writing this... the classic one located in %APPDATA%\Microsoft\Windows\Recent Items (I'll have to do a quick search on how to extend said-directory to exceed 7 days) Although, if not too much trouble, would you be able to point me to the proper di...

Go to advanced search