Search found 750 matches

by wetware05
16 Jun 2023, 22:38
Forum: Ask for Help (v2)
Topic: Script for opening task manager?
Replies: 5
Views: 675

Re: Script for opening task manager?

iPhilip wrote:
16 Jun 2023, 19:47
By the way, in case you were not aware of it already, there is a built-in shortcut for opening the task manager: Ctrl+Shift+Esc
I didn't know that shortcut. Thank you! :thumbup:
by wetware05
16 Jun 2023, 22:35
Forum: Ask for Help (v1)
Topic: Coordinate error on multiple monitors
Replies: 4
Views: 339

Re: Coordinate error on multiple monitors

Aida gives the correct information, AutoHotkey doesn't. At the level of the script that I am doing, the script works well on her mistake. I don't know understands me. Although her coordinates are wrong, she places the windows correctly in the form of her coordinates. But I find it more difficult to ...
by wetware05
16 Jun 2023, 22:08
Forum: Ask for Help (v1)
Topic: Coordinate error on multiple monitors
Replies: 4
Views: 339

Re: Coordinate error on multiple monitors

I see no scripts here of either version. I have seen some other posts about "DPI aware", so they might provide the answer that you are seeking. Hi, mikeyww I have tried several scripts. And even with the MDMF function, which I leave here attached to a routine that shows the information from the mon...
by wetware05
16 Jun 2023, 18:36
Forum: Ask for Help (v1)
Topic: How can I use same code with different variable
Replies: 5
Views: 342

Re: How can I use same code with different variable

I've added a menu that shows clipboards, but it's designed to keep the texts short. If they are not short it will be a real mess, visually. The menu is displayed with Windows key + Right mouse button. Clicking on one of them pastes it into the active window. To exit the menu, hit the escape key. Cli...
by wetware05
16 Jun 2023, 18:31
Forum: Ask for Help (v1)
Topic: How can I use same code with different variable
Replies: 5
Views: 342

Re: How can I use same code with different variable

Hi.

A command that I pasted first and then deletes it.
So the 2 is now 1, paste it and delete it.
So the 3 is now 1, paste it and delete it?

That is, always paste the oldest?
by wetware05
16 Jun 2023, 17:52
Forum: Ask for Help (v1)
Topic: How can I use same code with different variable
Replies: 5
Views: 342

Re: How can I use same code with different variable

Hi TobyMacster Ctrl+F3: Copy what you have selected to the clipboard. Ctrl+F4: Tells you the number of clipboards in memory. Ctrl+F5: Paste all clipboards. Ctrl+F6: Clears all clipboards from memory, to start from scratch. Clip:=[] ^F3:: Send, ^c Clip.Push(Clipboard) Return ^F4:: MaxClip:=Clip.maxIn...
by wetware05
16 Jun 2023, 16:52
Forum: Ask for Help (v1)
Topic: Coordinate error on multiple monitors
Replies: 4
Views: 339

Coordinate error on multiple monitors

Hi. If I have two monitors activated (4K) the coordinates are fine (SysGet or with Window Spy): 1: 0 3840 0 2160 2: 3840 7680 0 2160 But when activating the third and requesting the coordinates again, I get an error on monitors 2 and 3. 1: 0 3840 0 2160 2: 5760 9600 0 2160 <- Error (to the right of ...
by wetware05
16 Jun 2023, 14:47
Forum: Ask for Help (v1)
Topic: Only numbers
Replies: 5
Views: 502

Re: Only numbers

I would like to paste only numbers. Whether the clipboard contains his numbers. If it's numbers together with text it doesn't do anything. I would like to paste only numbers #IfWinActive WhatsApp Home:: if RegExMatch(clipboard, "^[0-9]+$") { Send ^v } Return #IfWinActive This works if the number do...
by wetware05
16 Jun 2023, 13:18
Forum: Ask for Help (v1)
Topic: Only numbers
Replies: 5
Views: 502

Re: Only numbers

Hi. It is not clear if what you want is to paste the numbers contained in a text. Or if you only want it to paste the contents of the clipboard if they are only numbers. Check that they are only numbers: Clipboard:= "2425555" if RegExMatch(clipboard, "^[0-9]+$") { MsgBox, The clipboard only contains...
by wetware05
16 Jun 2023, 11:00
Forum: Ask for Help (v1)
Topic: Need Help w/ Custom IntelliSense GUI Error Topic is solved
Replies: 16
Views: 845

Re: Need Help w/ Custom IntelliSense GUI Error Topic is solved

I'll take a look at the margins, They seem fine on my end but maybe show up differently for other users based on monitor resolution or somethings. For my use the conditions I took out take care of the second part since it will only work in the edit box you type drug names into on my script. But yea...
by wetware05
16 Jun 2023, 02:32
Forum: About This Community
Topic: Constructive criticism
Replies: 24
Views: 8889

Re: Constructive criticism

Hi, lexikos It is true that I had not realized that you had said that version 2 will offer to install version 1. It may have happened because my short-term memory fails me too much, perhaps due to age, perhaps due to other things (every day I do things twice without realizing that I had done it the ...
by wetware05
16 Jun 2023, 02:03
Forum: Ask for Help (v1)
Topic: Need Help w/ Custom IntelliSense GUI Error Topic is solved
Replies: 16
Views: 845

Re: Need Help w/ Custom IntelliSense GUI Error Topic is solved

great job The_One_True_Rick , congratulations. :clap: Your script didn't work, it was throwing errors quickly (maybe because I tried it in OneNotes?), Rohwedder fix did. It is somewhat invasive, in the sense that it appears on top of the writing itself. You should give a bigger margin or maybe it sh...
by wetware05
15 Jun 2023, 15:54
Forum: Ask for Help (v2)
Topic: help me v1 to v2
Replies: 5
Views: 370

Re: help me v1 to v2

I don't know if it's a secret, but mmikeww himself created a converter https://github.com/mmikeww/AHK-v2-script-converter Afaik, that's not the same person as mikeyww on this forum :shh: , if you are thinking that. (I would rather look at guest3456 and a few other contributors.) But yes, there is a...
by wetware05
15 Jun 2023, 13:45
Forum: Ask for Help (v2)
Topic: help me v1 to v2
Replies: 5
Views: 370

Re: help me v1 to v2

I don't know if it's a secret, but mmikeww himself created a converter https://github.com/mmikeww/AHK-v2-script-converter

The converter says:

Code: Select all

Run("*RunAs " A_ComSpec " /c netsh interface set interface name=`"Local Area Connection`" admin=disabled", , "Hide")
by wetware05
15 Jun 2023, 13:35
Forum: Ask for Help (v1)
Topic: Need Help w/ Custom IntelliSense GUI Error Topic is solved
Replies: 16
Views: 845

Re: Need Help w/ Custom IntelliSense GUI Error Topic is solved

Hi, The_One_True_Rick So... you share a script that nobody can test to see what kind of errors it gives? :geek: From what you say it is a kind of predictor. Windows 11 has this function built in (like the one that mobile phones have), I imagine that if the medicines are added to the custom dictionar...
by wetware05
15 Jun 2023, 11:42
Forum: Ask for Help (v2)
Topic: Read COM Port
Replies: 1
Views: 218

Re: Read COM Port

See if you can "recycle" the script from that page. If we don't have anything in COM3 we can't test such scripts. The expertise of a good programmer can tell if the code should work. https://www.autohotkey.com/board/topic/24205-serial-port-control/ or https://www.autohotkey.com/boards/viewtopic.php?...
by wetware05
15 Jun 2023, 11:22
Forum: Ask for Help (v1)
Topic: Need Help w/ Custom IntelliSense GUI Error Topic is solved
Replies: 16
Views: 845

Re: Need Help w/ Custom IntelliSense GUI Error Topic is solved

Another question that I find strange is the following sequence: if (MouseWin != Drugs_GUI_ID) || if (ctrl ~= "Edit\d+") = false { Gui, Drugs: Destroy Medication_InputHook.Stop() } else { } return Should the Gui be destroyed in the else sequence, I don't see the point of it being empty, isn't it the ...
by wetware05
15 Jun 2023, 11:03
Forum: Ask for Help (v1)
Topic: Need Help w/ Custom IntelliSense GUI Error Topic is solved
Replies: 16
Views: 845

Re: Need Help w/ Custom IntelliSense GUI Error Topic is solved

Hi, The_One_True_Rick I downloaded the script and haven't gotten it to work. Is the keyboard shortcut LButton? Under what conditions is it displayed? I don't know what the script does, display the drug list and paste the text into the active window? If so, this approach is easier and prone to errors...

Go to advanced search