Thanks for the heads up.
I usually use indentation quite a bit to help me keep various things straight. So it's mainly for my own purposes. However, I will try to remember your comment so it will not be confusing when pasting code here in the forum.
Search found 307 matches
- 13 Nov 2020, 22:21
- Forum: Ask For Help
- Topic: Proper format for multiple IF statements Topic is solved
- Replies: 7
- Views: 117
- 13 Nov 2020, 21:43
- Forum: Ask For Help
- Topic: Proper format for multiple IF statements Topic is solved
- Replies: 7
- Views: 117
Re: Proper format for multiple IF statements Topic is solved
Ahh. That did the trick.
Many thanks to both of you.
Many thanks to both of you.
- 13 Nov 2020, 21:22
- Forum: Ask For Help
- Topic: Proper format for multiple IF statements Topic is solved
- Replies: 7
- Views: 117
Re: Proper format for multiple IF statements Topic is solved
Note: I just discovered that the object is being moved to each of the four locations and ends with B. Why is that occurring if the Ref variable is only equal to R?
- 13 Nov 2020, 21:18
- Forum: Ask For Help
- Topic: Proper format for multiple IF statements Topic is solved
- Replies: 7
- Views: 117
Re: Proper format for multiple IF statements Topic is solved
Thank you for the comments and the link. I made changes to the script by placing the IF criteria in parentheses and enclosing the blocks in curly brackets. Now there is a response to the script but it always responds as if the reference (Ref) is B — the last option. For example, below is the updated...
- 13 Nov 2020, 20:18
- Forum: Ask For Help
- Topic: Proper format for multiple IF statements Topic is solved
- Replies: 7
- Views: 117
Proper format for multiple IF statements Topic is solved
Hello, Can someone look at the script below and help me understand what I've missed or done wrong? I'm working in PowerPoint and I want to move a selected object by entering the horizontal and vertical positions in the Format Shape box. Prior to running the script, I must input three variables: xPos...
- 06 Sep 2020, 17:16
- Forum: Ask For Help
- Topic: MouseClickDrag function not working
- Replies: 2
- Views: 154
MouseClickDrag function not working
Hello, What would cause MouseClickDrag to not work and is there a way to improve its function? I'm using Camtasia video editing software and I've got a number of steps which are repetitive, hence my use of an AutoHotkey script. In one part of the process, I remove a small section of the recording. D...
- 01 Sep 2020, 15:19
- Forum: Ask For Help
- Topic: Stop looping thread without killing script Topic is solved
- Replies: 2
- Views: 54
Re: Stop looping thread without killing script Topic is solved
Thanks Xtra,
What a great and clever solution!
That's just what I needed.
Thanks again.
What a great and clever solution!
That's just what I needed.
Thanks again.
- 01 Sep 2020, 14:04
- Forum: Ask For Help
- Topic: Stop looping thread without killing script Topic is solved
- Replies: 2
- Views: 54
Stop looping thread without killing script Topic is solved
Hello, Is there a way to stop or interrupt a looping thread without killing the script (ie without closing the .ahk file)? Suppose you have a script which contains several threads (each with its own hotkey), and suppose one of the threads has a Loop, 99 command. Once you press the hotkey to begin ru...
- 14 Aug 2020, 13:16
- Forum: Ask For Help
- Topic: AHK determine if window is Maximized or not Topic is solved
- Replies: 13
- Views: 3354
Re: AHK determine if window is Maximized or not Topic is solved
Thanks boiler & Epialis.
Both of your posts were very helpful.
I got just the solution I needed for the current situation plus I have a new function in my AHK bag of tricks.
Both of your posts were very helpful.
I got just the solution I needed for the current situation plus I have a new function in my AHK bag of tricks.
- 14 Aug 2020, 10:27
- Forum: Ask For Help
- Topic: AHK determine if window is Maximized or not Topic is solved
- Replies: 13
- Views: 3354
AHK determine if window is Maximized or not Topic is solved
Hello, Does AutoHotkey have a method for determining if a particular window is Maximized or not? In other words, I want to include an IF command in my script to ask if the window is maximized. For example, suppose you have a script which needs to end with one sequence of commands if the active windo...
- 14 Aug 2020, 10:12
- Forum: Ask For Help
- Topic: Display list of user threads, not user posts
- Replies: 7
- Views: 3245
Re: Display list of user threads, not user posts
Thanks for all the help.
Interesting reading the follow-up dialogue.
Interesting reading the follow-up dialogue.
- 09 Aug 2020, 18:22
- Forum: Ask For Help
- Topic: Display list of user threads, not user posts
- Replies: 7
- Views: 3245
Display list of user threads, not user posts
Hello, How do you create a list of the titles of threads you have created or participated in? I know that there are two places which display a user's posts : Username drop-down > User Control Panel > Show your posts Username drop-down > Profile > Search user's posts However, rather than listing ever...
- 21 Jul 2020, 18:31
- Forum: Ask For Help
- Topic: How to know when to enclose something in percent marks (%'s)
- Replies: 2
- Views: 1237
Re: How to know when to enclose something in percent marks (%'s)
Thanks Joe,
That's a great link. I've never been there before but it looks like it's got a lot of great info.
That's a great link. I've never been there before but it looks like it's got a lot of great info.
- 21 Jul 2020, 12:49
- Forum: Ask For Help
- Topic: How to know when to enclose something in percent marks (%'s)
- Replies: 2
- Views: 1237
How to know when to enclose something in percent marks (%'s)
Hello, What does it mean when something is enclosed in %'s and how do you know when to use them? I was recently looking up something on an unrelated topic in the docs (https://www.autohotkey.com/docs/commands/LoopReadFile.htm) and came across an example script in which A_Index and other built-in var...
- 20 Jul 2020, 17:06
- Forum: Ask For Help
- Topic: Save multiple separate values for pasting later in the script
- Replies: 3
- Views: 1501
Re: Save multiple separate values for pasting later in the script
Thanks for the great information braunbaer . I love getting solutions which cause me to learn an AHK function I've never used before. I found an example in the docs which combines Loop, read, . . . with Loop, parse, . . . to get one value at a time: F1:: Loop, read, C:\Database Export.txt { Loop, pa...
- 20 Jul 2020, 14:15
- Forum: Ask For Help
- Topic: Save multiple separate values for pasting later in the script
- Replies: 3
- Views: 1501
Save multiple separate values for pasting later in the script
Hello, When running a script, is there a way to have ahk save multiple separate values then paste those same values later when the script calls for them? For example, suppose you have a website which stores membership records and each record includes four fields: First Name Last Name DOB Phone Numbe...
- 08 Jul 2020, 18:05
- Forum: Ask For Help
- Topic: SendRaw =" not working Topic is solved
- Replies: 3
- Views: 1530
Re: SendRaw =" not working Topic is solved
Thanks a bunch for all the replies. This one did the trick:
- 07 Jul 2020, 20:23
- Forum: Ask For Help
- Topic: SendRaw =" not working Topic is solved
- Replies: 3
- Views: 1530
SendRaw =" not working Topic is solved
Hello, I've got a script in which in one step I want to SendRaw the two literal characters: =" (ie the equal sign and a quotation mark). I am familiar with the command SendRaw and use it all the time. However, my current script includes the following lines: … Click, 1010, 345 Send {Home} SendRaw =" ...
- 27 May 2020, 13:50
- Forum: Ask For Help
- Topic: GUI modification questions
- Replies: 20
- Views: 944
Re: GUI modification questions
FYE: For Your Entertainment
- 27 May 2020, 13:49
- Forum: Ask For Help
- Topic: GUI modification questions
- Replies: 20
- Views: 944
Re: GUI modification questions
Thanks for the enlightenment. Head scratching was wearing a hole in my scalp. The only thing you should have done more is to begin your latest post with: FYE.*