Search found 16907 matches

by boiler
01 Feb 2022, 08:30
Forum: Ask for Help (v1)
Topic: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved
Replies: 25
Views: 2010

Re: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved

And when someone like just me comments on my code, I can be sure that there is something I can or should be learning from it. Another member and I were talking earlier about how even experienced programmers would have to take a second to stop and see what that loop is doing rather than glancing quic...
by boiler
01 Feb 2022, 08:13
Forum: Ask for Help (v1)
Topic: Take screenshots every xx sec? Topic is solved
Replies: 10
Views: 878

Re: Take screenshots every xx sec? Topic is solved

It all depends on your usage. I actually use a script that is very similar to this, and there is no reason to perform a check to see whether the image has changed because it is constantly changing, so there would never be two images that are the same. However, one per second is adequate for me to ca...
by boiler
01 Feb 2022, 04:50
Forum: Ask for Help (v1)
Topic: Take screenshots every xx sec? Topic is solved
Replies: 10
Views: 878

Re: Take screenshots every xx sec? Topic is solved

Use edited version above, found after you see this message, which corrects an error.
by boiler
01 Feb 2022, 04:45
Forum: Ask for Help (v1)
Topic: Take screenshots every xx sec? Topic is solved
Replies: 10
Views: 878

Re: Take screenshots every xx sec? Topic is solved

You'll need to download Gdip_All.ahk and place it in your AHK library or some other location. If not in a standard library location, modify the #Include statement to point at the file location. The prefix on the file name that I used for the file name is better for keeping them in order and preventi...
by boiler
01 Feb 2022, 04:03
Forum: Ask for Help (v1)
Topic: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved
Replies: 25
Views: 2010

Re: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved

I doubt it could be called a "good idea". He never determines xpos, ypos with MouseGetPos in his script, thus they are just blank and ToolTip, Some text, xpos, ypos is equivalent to ToolTip, Some text, , that means that ToolTip is to be placed near his mouse cursor. That is exactly the result he wa...
by boiler
01 Feb 2022, 00:13
Forum: Ask for Help (v1)
Topic: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved
Replies: 25
Views: 2010

Re: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved

That’s a good idea. So if you do want to place them at a certain location later instead of following the mouse, you can just assign those values to xpos and ypos at the top of the script.
by boiler
31 Jan 2022, 23:36
Forum: Ask for Help (v1)
Topic: Check if variable exists without querying its contents
Replies: 17
Views: 4656

Re: Check if variable exists without querying its contents

Because you initialized test2 with the = operator (instead of the := operator - a common error), test2 's value is not a blank but two double-quotes. Your statement is equivalent to test2 := """" ; The variable was set to two double-quotes A minor point, but just so there's no confusion, the above ...
by boiler
31 Jan 2022, 23:26
Forum: Ask for Help (v1)
Topic: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved
Replies: 25
Views: 2010

Re: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved

When you have ToolTip commands with coordinates specified, then it will be placed at those coordinates. So everywhere it has 0,0 for the X and Y parameters of ToolTip, you have to remove those. I didn't expect that you were writing ToolTip commands with 0,0 for X and Y when you didn't want them to a...
by boiler
31 Jan 2022, 17:31
Forum: Ask for Help (v1)
Topic: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved
Replies: 25
Views: 2010

Re: With CoordMode, Tooltip, can I the tooltip be placed at the mouse cursor? Topic is solved

Run the following script (as shown with no lines added) and describe what you see: loop { ToolTip, This ToolTip follows the mouse cursor Sleep, 50 } return Esc::ExitApp If your mouse cursor is at the bottom of the screen, then the ToolTip will be at the top because there isn't room for it to be belo...
by boiler
31 Jan 2022, 17:27
Forum: Ask for Help (v1)
Topic: I want to search using text on the clipboard. Topic is solved
Replies: 14
Views: 1300

Re: I want to search using text on the clipboard. Topic is solved

Ah, you interpreted the new request correctly. I assumed OP was still having troubles getting it to work for a regular search. My apologies.
by boiler
31 Jan 2022, 17:24
Forum: Ask for Help (v1)
Topic: NoxPlayer execution enhancement
Replies: 3
Views: 411

Re: NoxPlayer execution enhancement

Did you mean to answer his post in the German forum?
by boiler
31 Jan 2022, 17:17
Forum: Ask for Help (v1)
Topic: I want to search using text on the clipboard. Topic is solved
Replies: 14
Views: 1300

Re: I want to search using text on the clipboard. Topic is solved

Don’t you really mean you want to search for the word AutoHotkey by having it use that url with AutoHotkey for the search term? (which is what the script does if you first copy the word AutoHotkey to the clipboard before pressing F3)
by boiler
31 Jan 2022, 17:04
Forum: Ask for Help (v1)
Topic: With CoordMode, Tooltip, can the tooltip be placed at the mouse cursor? Topic is solved
Replies: 25
Views: 2010

Re: With CoordMode, Tooltip, can I the tooltip be placed at the mouse cursor? Topic is solved

No, it defaults to being placed at the the mouse cursor if you don’t use CoordMode at all. Did you try it?
by boiler
31 Jan 2022, 16:58
Forum: Ask for Help (v1)
Topic: I want to search using text on the clipboard. Topic is solved
Replies: 14
Views: 1300

Re: I want to search using text on the clipboard. Topic is solved

That’s exactly what it does. You asked for it to operate that way form the beginning. Did you even try it with a word in the clipboard (as opposed to the script itself in the clipboard)? Copy a word to the clipboard, then press F3.
by boiler
31 Jan 2022, 14:38
Forum: Ask for Help (v1)
Topic: Hold Window Key, Shift + Down Arrow?
Replies: 2
Views: 241

Re: Hold Window Key, Shift + Down Arrow?

You can do it as you’ve shown, but you can also do it like this:

Code: Select all

Send, #+{Down}
by boiler
31 Jan 2022, 12:07
Forum: Ask for Help (v1)
Topic: Gui show - hide when a specific program is active or not Topic is solved
Replies: 8
Views: 1285

Re: Gui show - hide when a specific program is active or not Topic is solved

You're welcome. Glad to help. Note (as you probably have already) that you don't need to compile the script since the way the GUI window is referenced in the above script works with the uncompiled script.
by boiler
31 Jan 2022, 11:50
Forum: Ask for Help (v1)
Topic: Gui show - hide when a specific program is active or not Topic is solved
Replies: 8
Views: 1285

Re: Gui show - hide when a specific program is active or not Topic is solved

Yes, you're right. Apparently, sometimes we catch it right in between the two WinActive checks separated by && . Sort of a fluky thing, but apparently not too hard to catch it in between. Incorporating your suggestion to wait a bit then check it again before hiding it seems to eliminate the issue fo...

Go to advanced search