Search found 19 matches

by PaigeDown
13 Sep 2023, 00:20
Forum: Ask for Help (v1)
Topic: Indicate the window is "always on top" Topic is solved
Replies: 8
Views: 625

Re: Indicate the window is "always on top" Topic is solved

A Windows Hook would be faster, of course, but isn't a slow Timer enough? More than enough, I really appreciate your effort since there is nothing like this on the web :thumbup: This is extremely cool! both of them are!! in fact, they're both so cool I tried to have both's features, the boarder, bu...
by PaigeDown
18 Feb 2023, 13:24
Forum: Ask for Help (v1)
Topic: Is there a way for AHK to track what icon the mouse cursor is?
Replies: 6
Views: 609

Re: Is there a way for AHK to track what icon the mouse cursor is?

assuming %A_Cursor% wont do the trick, a imagesearch might suit your needs, or, if theres text that appears when you hover over the text, you can use this (this script is so long I have to pastebin it) https://pastebin.com/QpdUedjH A_cursor is limited for my purposes due to my programs custom icons...
by PaigeDown
16 Feb 2023, 17:34
Forum: Scripts and Functions (v1)
Topic: UA - Some small tweaks to improve results for new users.
Replies: 9
Views: 1873

Re: UIAViewer.ahk - Some small tweaks to improve results for new users.

first impression, woah!!
second impression.. yikes...
third impression, woah!!
this is awesome, I just tried it out, I see so much potential with this, it wouldn't work to click my target, but just that it can read it is impressive! excited to see where this goes!
by PaigeDown
16 Feb 2023, 14:00
Forum: Ask for Help (v1)
Topic: Longpress mediakey controller - to activate continuous keyboard letter
Replies: 3
Views: 289

Re: Longpress mediakey controller - to activate continuous keyboard letter

[Mod edit: Topic moved from 'Scripts and Functions'.] Hi all, I have the following issue. I have a bluetooth media controller which I use to remotely press two letters on my keyboard "A" and "D". This works fine with the script written below, where A is pressed when I push "play previous song" and ...
by PaigeDown
16 Feb 2023, 13:38
Forum: Ask for Help (v1)
Topic: Is there a way for AHK to track what icon the mouse cursor is?
Replies: 6
Views: 609

Re: Is there a way for AHK to track what icon the mouse cursor is?

assuming %A_Cursor% wont do the trick, a imagesearch might suit your needs, or, if theres text that appears when you hover over the text, you can use this (this script is so long I have to pastebin it)
https://pastebin.com/QpdUedjH
by PaigeDown
07 Feb 2023, 14:14
Forum: Ask for Help (v1)
Topic: strange A_ScreenWidth and A_ScreenHeight behavior
Replies: 7
Views: 624

Re: strange A_ScreenWidth and A_ScreenHeight behavior

Is "YT" the actual title of the window? I don't understand what the picture is supposed to be showing me since I don't see window corresponding to that name. Is it meant to be the Chrome window? yes, the giant video playing in the background is the window stretched, the window title is YT. the Y sh...
by PaigeDown
07 Feb 2023, 11:34
Forum: Ask for Help (v1)
Topic: send the actions key combos do directly?
Replies: 3
Views: 300

Re: send the actions key combos do directly?

Although various programs have various ways to manage a cut, my understanding is that Ctrl + X is the standard that is used by default throughout Windows, so it would typically work just about everywhere, though programs could override it if they choose. The main issue with the Windows clipboard is...
by PaigeDown
07 Feb 2023, 11:20
Forum: Ask for Help (v1)
Topic: strange A_ScreenWidth and A_ScreenHeight behavior
Replies: 7
Views: 624

Re: strange A_ScreenWidth and A_ScreenHeight behavior

while on this subject, is it possible to make the height of the window larger? to combat these offsets, I can overextend the width of the window, and I can move its position, but I cannot seem to extend the height of a window beyond my screen's 2160 height. is there a way to go even taller? (if no,...
by PaigeDown
06 Feb 2023, 15:53
Forum: Ask for Help (v1)
Topic: send the actions key combos do directly?
Replies: 3
Views: 300

send the actions key combos do directly?

I am wondering if its possible to send the actions key combos do directly, without pressing those keys. for example, to cut, you could do ^x, but alternatively you could do +{ins}, or mouseclick, right then select cut, or you could send +{f10}, or AppsKey, and select cut. is there a way to just send...
by PaigeDown
01 Feb 2023, 18:42
Forum: Ask for Help (v1)
Topic: strange A_ScreenWidth and A_ScreenHeight behavior
Replies: 7
Views: 624

Re: strange A_ScreenWidth and A_ScreenHeight behavior

It's a known Windows issue (feature?) that has led to this thread and many others. I believe it has been said that Windows considers the window being the size you changed it to. It's just that part of the border is invisible. By the way, minor point, but just so no one tries it and wonders why it d...
by PaigeDown
01 Feb 2023, 15:55
Forum: Ask for Help (v1)
Topic: strange A_ScreenWidth and A_ScreenHeight behavior
Replies: 7
Views: 624

strange A_ScreenWidth and A_ScreenHeight behavior

i have a 3840 x 2160 screen resolution (standard 4k resolution). A_ScreenWidth and A_ScreenHeight see my correct resolution. if I were to WinMove,"A",,0,0,A_ScreenWidth,A_ScreenHeight it will not completely fill my screen. after playing with it til i got the exact pixel boarder right, it seems that ...
by PaigeDown
13 Jan 2023, 14:36
Forum: Ask for Help (v1)
Topic: auto hide mouse on idle
Replies: 7
Views: 525

Re: auto hide mouse on idle

It's hard to say without seeing the script. In many situations, when people believe that one line in the script causes their problem, it is actually another line. ah, that certainly might help haha #Persistent SystemCursor("I") SetTimer, CheckIdle, 250 return CheckIdle: if A_TimeIdlePhysical >= 500...
by PaigeDown
13 Jan 2023, 04:37
Forum: Ask for Help (v1)
Topic: auto hide mouse on idle
Replies: 7
Views: 525

Re: auto hide mouse on idle

You have the right idea. Yeah, well, the code that I stole seemed to work the last time I tried it, a while back! :) CheckIdle is used just if you want to do the sort of thing that you are doing-- checking for idleness. Other scripts might do other things with the cursor. hey mikey, the script work...
by PaigeDown
12 Jan 2023, 09:57
Forum: Ask for Help (v1)
Topic: help figuring out my taskbar hider script
Replies: 6
Views: 454

Re: help figuring out my taskbar hider script

Hi, @PaigeDown. Good vibe. Your script has forced me to log out. Warn him not to run, because what he does is unpredictable. A few days ago they published this script that hides the taskbar (and shows it), with F12, and the Windows menu keeps appearing when I hit the Win key. $F12:: HideShowTaskbar...
by PaigeDown
12 Jan 2023, 05:59
Forum: Ask for Help (v1)
Topic: help figuring out my taskbar hider script
Replies: 6
Views: 454

help figuring out my taskbar hider script

The intention of this script is two things, 1, the taskbar will be hidden unless I press the windows key to bring up the startmenu, otherwise its hidden. 2, when I double press the windows key, the tray bar's expanded menu is shown (this part seems to work fine). since I didn't want to lose function...
by PaigeDown
10 Jan 2023, 00:01
Forum: Ask for Help (v1)
Topic: auto hide mouse on idle
Replies: 7
Views: 525

Re: auto hide mouse on idle

Hello, Here is a lead: https://www.autohotkey.com/boards/viewtopic.php?p=453539#p453539 You could use a :arrow: SetTimer to check the A_TimeIdle . wow the man himself! I've found plenty of your posts super helpful over the past weeks! i changed the top bit based off the lead ya sent me, seems to be...
by PaigeDown
09 Jan 2023, 16:30
Forum: Ask for Help (v1)
Topic: auto hide mouse on idle
Replies: 7
Views: 525

auto hide mouse on idle

Hello, in my Google searches to find auto hide mouse on idle scripts, I have tried a handful, most have an issue of the mouse not reappearing if I'm idle for a few hours, they only work if I'm idle for a few seconds/minutes. and my .."attempts" to search on the forum.. am I doing it wrong or somethi...
by PaigeDown
26 Dec 2022, 02:58
Forum: Ask for Help (v1)
Topic: Reopen Last closed window script - what is wrong here?
Replies: 10
Views: 898

Re: Reopen Last closed window script - what is wrong here?

Merry Christmas! so whatever the last <anything> closed was? I think in general this is not possible. Imagine, the last closed window is some kind of settings window for some application. How can my script know how to open it again? hey, thanks for the response! i did a lot of googling since this m...
by PaigeDown
25 Dec 2022, 14:29
Forum: Ask for Help (v1)
Topic: Reopen Last closed window script - what is wrong here?
Replies: 10
Views: 898

Re: Reopen Last closed window script - what is wrong here?

teadrinker wrote:
29 Sep 2022, 13:07
Edited one more time.
this is excellent! is is possible to extend this to reopen a non explorer window as well? so whatever the last <anything> closed was?
merry Christmas!

Go to advanced search