Search found 5 matches
- 22 Jun 2020, 09:39
- Forum: Ask For Help
- Topic: Advice: Abstracting a Program GUI as a Class?
- Replies: 2
- Views: 1285
Advice: Abstracting a Program GUI as a Class?
I'm an instructional designer on a team of 14 designers. Most of the team uses Adobe Captivate all day, every day. We've made some real productivity gains using AHK with Captivate, but I'm always looking for improvements to the process. Sadly, Captivate isn't easy to automate. It doesn't use COM or ...
- 09 Jun 2020, 09:08
- Forum: Ask For Help
- Topic: Dual monitor coordinates help needed
- Replies: 5
- Views: 227
Re: Dual monitor coordinates help needed
Hmmm . . one thing I'm noticing offhand is that you're using an equals sign to assign values to variables. Try using := instead. A plain equals is for comparison.
Code: Select all
a := 12 ; sets A's value to 12
a = 12 ; asks if a is equal to 12
- 07 Jun 2020, 13:31
- Forum: Ask For Help
- Topic: Dual monitor coordinates help needed
- Replies: 5
- Views: 227
Re: Dual monitor coordinates help needed
Have you set CoordMode? It controls if your coords are relative to the window, the screen, or the client. Be sure to set it for both the screen and the mouse!
We use dual monitors in our office, and I typically use SCREEN, like this:
We use dual monitors in our office, and I typically use SCREEN, like this:
Code: Select all
CoordMode, Pixel, Screen
CoordMode, Mouse, Screen
- 15 Nov 2019, 15:09
- Forum: Ask For Help
- Topic: WinWaitClose suddenly stops waiting Topic is solved
- Replies: 2
- Views: 930
Re: WinWaitClose suddenly stops waiting Topic is solved
Oh excellent! Thank you! That plagued me for weeks.


- 15 Nov 2019, 11:16
- Forum: Ask For Help
- Topic: WinWaitClose suddenly stops waiting Topic is solved
- Replies: 2
- Views: 930
WinWaitClose suddenly stops waiting Topic is solved
Hello! WinWaitClose is giving me fits, and I'd appreciate any help you can give me. I've written a GUI replacement for MsgBox. It doesn't do much, just centers the box in the active window. WinWaitClose should prevent anything else from happening until the user closes the GUI, but the script isn't p...