Search found 8 matches

by scatrmind
12 Apr 2023, 17:06
Forum: Ask for Help (v1)
Topic: MsgBox and WinMove
Replies: 29
Views: 6162

Re: MsgBox and WinMove

@FanaticGuru - Yes; it works! Thank you!
by scatrmind
12 Apr 2023, 15:30
Forum: Ask for Help (v1)
Topic: MsgBox and WinMove
Replies: 29
Views: 6162

Re: MsgBox and WinMove

@teadrinker How do I get your code to work with negative coordinates such as when your primary monitor is on the right and your secondary monitor is on the left (meaning all x-coordinates on the secondary monitor are negative). When I try to get message boxes to appear on my secondary monitor, the m...
by scatrmind
03 Mar 2022, 10:40
Forum: Ask for Help (v1)
Topic: IfWinExist can't find a window on a different desktop on Windows 10
Replies: 6
Views: 4894

Re: IfWinExist can't find a window on a different desktop on Windows 10

I have a similar issue despite "DetectHiddenWindows, On" at the beginning of the script. I am trying to detect other running AHK files. WinExist() does not always work. WinExist(WinTitle) has the highest failure rate. WinExist("ahk_id" hwnd) seems to have greater consistency but is not 100%. Getting...
by scatrmind
01 Mar 2022, 16:27
Forum: Scripts and Functions (v2)
Topic: CliSAK class - 2022/11/12 - beta.15
Replies: 29
Views: 7952

Re: CliSAK class - 2021/07/25 - beta.3

TheArkive My bad. I am using AHK v1, and I am indeed using the version of CliSAK intended for AHK v1. I am sorry that I did not initially notice your link to the v1 forum thread in your first post. Plink IS fully working with CliSAK. I "thought" there was a difference between sending commands via P...
by scatrmind
28 Feb 2022, 17:01
Forum: Scripts and Functions (v2)
Topic: CliSAK class - 2022/11/12 - beta.15
Replies: 29
Views: 7952

Re: CliSAK class - 2021/07/25 - beta.1

Thank you for the quick response! As I said, I am able to get Plink to work using cmd.exe as env ("plink.exe" is merely part of the initial session-login command sent). Is there a different way to use Plink with CliSAK? Can "plink" be specified as the env variable? Using ControlSend alone is pretty ...
by scatrmind
26 Feb 2022, 17:56
Forum: Scripts and Functions (v2)
Topic: CliSAK class - 2022/11/12 - beta.15
Replies: 29
Views: 7952

Re: CliSAK class - 2021/07/25 - beta.1

Great work here. I am shocked there are not more comments - CliSAK must be working well. You mentioned using CliSAK with PuTTY/Plink. I am able to get it to work with Plink (essentially using CMD as env and opening an interactive Plink session via the initial command). How can I attach directly to a...
by scatrmind
14 May 2021, 09:22
Forum: Ask for Help (v1)
Topic: A_TimeIdlePhysical to detect any input but not mouse movement?
Replies: 5
Views: 3721

Re: A_TimeIdlePhysical to detect any input but not mouse movement?

[EDIT: Added the missing space before "Up" in the Hotkeys] I know this is not elegant, but below is what I do. I tried some of evilC's classes for looping and creating hotkeys on the fly, but I kept getting errors that disallowed the script from running (operator error perhaps). Making the list of ...
by scatrmind
29 Apr 2021, 12:23
Forum: Ask for Help (v1)
Topic: Send number string with numpad
Replies: 2
Views: 1252

Re: Send number string with numpad

Code: Select all

Loop, Parse, code
    Send {Numpad%A_LoopField%}

Go to advanced search