Search found 30 matches

by Mark2402
30 Jul 2023, 19:52
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Re: Why does this simple "HotIf WinActive" not work? Topic is solved

The entire script now works as I want it to.
Thanks for your help, people.
by Mark2402
30 Jul 2023, 17:04
Forum: Ask for Help (v2)
Topic: A question ONLY for users of Thunderbird email:
Replies: 2
Views: 285

Re: A question ONLY for users of Thunderbird email:

Thanks for that idea, Emp00, but I found that MouseMove and MouseClick commands actually Do work. The Options seem to disappear, but the Sender is still highlighted, and that's the desired end-result. So, my email can then be inserted there. Besides, I'm having a difficult enough time just understan...
by Mark2402
29 Jul 2023, 20:16
Forum: Ask for Help (v2)
Topic: A question ONLY for users of Thunderbird email:
Replies: 2
Views: 285

A question ONLY for users of Thunderbird email:

I've reduced this script to showing only the Problem part. Looking at your INBOX, you can hit REPLY and at the top, if you click on the FROM line, you can then CUSTOMIZE the From address. This (Ctrl-Shift-S) script goes to the correct spot, and it CLICKs, and it opens the Options available, but as s...
by Mark2402
29 Jul 2023, 18:49
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Re: Why does this simple "HotIf WinActive" not work? Topic is solved

More crap: It wasn't even Roseanne Roseannadanna.
It was Emily Litella. OK,... I'm stoopid.
https://www.youtube.com/watch?v=fZLeaSWY37I

:lol:
by Mark2402
29 Jul 2023, 16:08
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Re: Why does this simple "HotIf WinActive" not work? Topic is solved

This Works! Cool! Great!

Code: Select all

#SingleInstance 
#Requires AutoHotkey >=2.0
^+s::
{
if WinActive("Inbox")
{
MsgBox "seeing inbox 1"
}
if WinActive("Sent")
{
MsgBox "seeing Sent 1"
}
if WinActive("xplorer")
{
MsgBox "seeing xplorer"
}
}
Exit
/*
by Mark2402
29 Jul 2023, 15:41
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Re: Why does this simple "HotIf WinActive" not work? Topic is solved

Crap. I apologize. I was apparently looking at the AHK Version 1 Help file.
(Roseanne Roseannadanna): "Never mind."
by Mark2402
29 Jul 2023, 15:34
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Re: Why does this simple "HotIf WinActive" not work? Topic is solved

Wow. I'm tellin' yous peoples, I like to think that I am not stooopid. Fifty years ago, I was programming Assembler language on IBM mainframes. And I've been working on computers ever since. But this stuff is quite frustrating. I'M ASSUMING that the first two lines: #SingleInstance #Requires AutoHot...
by Mark2402
26 Jul 2023, 22:35
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Re: Why does this simple "HotIf WinActive" not work? Topic is solved

Thanks for the reply, Mike, but. . . What? "until the Message box is closed". ? IF you're referring to the FIRST (Is Inbox open?) Msgbox, then. . . of course, I hit "OK" to Close that First Msgbox. Is THAT what you're referring to? Done. I do not understand anything that you said after that. I expec...
by Mark2402
26 Jul 2023, 18:18
Forum: Ask for Help (v2)
Topic: Why does this simple "HotIf WinActive" not work? Topic is solved
Replies: 12
Views: 1010

Why does this simple "HotIf WinActive" not work? Topic is solved

Hello, people. Trying to fix a script that was working on AHK V1, now changing it to V2. First, I just want to know if I am looking at the Inbox of my Thunderbird email client, which looks like: Inbox looks like.jpg Why does this script . . . #SingleInstance #Requires AutoHotkey >=2.0 MsgBox "Is Inb...
by Mark2402
24 Jul 2023, 13:34
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

Well, Boiler, I ran your two-line script: v1 := "v2" MsgBox v1 Using V1, the box shows v1. Using V2, the box shows v2. I don't completely understand why, but I s'pose that's just part of the upcoming learning curve. The script that was working under V1 was written a few years ago, and I haven't work...
by Mark2402
23 Jul 2023, 21:03
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

Respectfully, Boiler, I Did run that one-line script, as you'd suggested. THAT's how we finally got the indication that it IS using AHK V 1. I just had not shown the "code" part... MsgBox, % A_AhkVersion OK, I Uninstalled the programs. It asked what version(s) to uninstall: 2.0.2 and/or 2.0.4. There...
by Mark2402
23 Jul 2023, 17:05
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

In the v2 folder are the programs that were installed yesterday.
C-Pgm files-AHK v2.jpg
C-Pgm files-AHK v2.jpg (33.14 KiB) Viewed 1043 times
HOW to make it go to WHICH EXE file?
by Mark2402
23 Jul 2023, 17:02
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

Ah Hah ! Yous were correct all along. It's using V 1 ! AHK example16 error 11.jpg I Know that I installed V 2. In Win 10 "file associations", it says AHK files are opened by "AutoHotkey Unicode 64-bit" but I cannot see where exactly that association goes. That is, I cannot see exactly which EXE open...
by Mark2402
23 Jul 2023, 15:51
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

I apologize. I hadn't seen that MSGBOX suggestion from Boiler. I've now tried it. Regardless, it does not display the Version. It does nothing, then shows the same error, now from Line 2. AHK example15 error 11.jpg MsgBox, % A_AhkVersion #Requires AutoHotkey v2.0 #MsgBox "Hello, world!" I also tried...
by Mark2402
23 Jul 2023, 14:41
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

Thanks for that Edit, Greg.
HOW do I include the image in the post?
by Mark2402
23 Jul 2023, 14:30
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

Boiler: the script displays: Error at line 1: Line text: #Requires AutoHotkey v2.0 Error: This line does not contain a recognized action. The program will exit. https://www.dropbox.com/scl/fi/mdzu465msk7psc8lizatg/AHK-example13-error-11.jpg?rlkey=rgg45w8lxrqwi2dricvt9amzh&dl=0 Ntepa: That "Auto-dete...
by Mark2402
22 Jul 2023, 19:50
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Re: Why does this Very simple test not work?

Thanks for the reply, Mike. I installed 2.0.4 from the .EXE that was downloaded, with Default options. "File associations"? It produces an AHK message, so I think that cannot be the problem. To start it, I double-clicked the .AHK file in File Explorer. I didn't ever Compile the script. What is causi...
by Mark2402
22 Jul 2023, 16:58
Forum: Ask for Help (v2)
Topic: Why does this Very simple test not work?
Replies: 17
Views: 1231

Why does this Very simple test not work?

I just installed V 2.0.4 The Entire script is: #Requires AutoHotkey v2.0 MsgBox "Hello, world!" It gets the error message: Error at line 1: Line text: #Requires AutoHotkey v2.0 Error: This line does not contain a recognized action. The program will exit. Please! Wassup? Thanks, people. Mark2402
by Mark2402
25 Jun 2019, 14:52
Forum: Ask for Help (v1)
Topic: Can you move the mouse in a random curved path?
Replies: 27
Views: 10158

Re: Can you move the mouse in a random curved path?

It's only purpose is to record mouse movements?
But MS Paint does the same thing,. . . yes? :?:

Go to advanced search