| Author |
Message |
Topic: Mouse movement along a catmull-rom spline |
Mistrel
Replies: 1
Views: 113
|
Forum: Ask for Help Posted: Fri Sep 28, 2007 5:14 am Subject: Mouse movement along a catmull-rom spline |
| If I have two points a beginning and a destination how can the movement between these two points be plotted with a random point in the middle using catmull-rom interpolation? |
Topic: How to prevent the parent window from losing focus? |
Mistrel
Replies: 5
Views: 722
|
Forum: Ask for Help Posted: Mon Sep 17, 2007 5:31 pm Subject: How to prevent the parent window from losing focus? |
With this I can actually embed one program into another seamlessly by parenting it to a child window or an MDI window and setting these flags to prevent loss of focus from the main application.  |
Topic: How to prevent the parent window from losing focus? |
Mistrel
Replies: 5
Views: 722
|
Forum: Ask for Help Posted: Sun Sep 16, 2007 11:20 pm Subject: How to prevent the parent window from losing focus? |
Thank you! I've been trying to get this to work forever.  |
Topic: How to prevent the parent window from losing focus? |
Mistrel
Replies: 5
Views: 722
|
Forum: Ask for Help Posted: Sun Sep 16, 2007 3:51 am Subject: How to prevent the parent window from losing focus? |
When I set a window as a child of another using SetParent how can I prevent a loss of focus of the parent window (the title bar greying out) when I select the child inside?
Is there some way to gro ... |
Topic: Click not sending mouse up? |
Mistrel
Replies: 3
Views: 162
|
Forum: Ask for Help Posted: Wed Aug 22, 2007 12:10 am Subject: Click not sending mouse up? |
I tried using to click on the "Google Search" button at Google.com. Also in Notepad.
I downloaded the latest version of AutoHotkey and still have this problem. |
Topic: Child of SetParent lost to oblivion? |
Mistrel
Replies: 2
Views: 167
|
Forum: Ask for Help Posted: Tue Aug 21, 2007 9:44 pm Subject: Child of SetParent lost to oblivion? |
Excellent. Thank you.  |
Topic: Child of SetParent lost to oblivion? |
Mistrel
Replies: 2
Views: 167
|
Forum: Ask for Help Posted: Tue Aug 21, 2007 8:29 pm Subject: Child of SetParent lost to oblivion? |
I noticed that if I set a process as a child of a gui window and then close that gui window the child is still a running process but is no longer visible.
Do I have to run my own cleanup for this s ... |
Topic: Click not sending mouse up? |
Mistrel
Replies: 3
Views: 162
|
Forum: Ask for Help Posted: Tue Aug 21, 2007 8:20 pm Subject: Click not sending mouse up? |
numpad9::
click
return
Shouldn't this be the same as a mouse down/up? It only sends mouse down. |
Topic: Sending mouse and keyboard events to a child window? |
Mistrel
Replies: 2
Views: 255
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 4:48 am Subject: Sending mouse and keyboard events to a child window? |
That method of preventing focus is very nice except that it only functions on the parent script and not the child. It also doesn't prevent focus when a keystroke is sent to it.
Or better yet, if I ... |
Topic: Sending mouse and keyboard events to a child window? |
Mistrel
Replies: 2
Views: 255
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 4:11 am Subject: Sending mouse and keyboard events to a child window? |
I'm trying to disable mouse/keyb events on the child window without actually disabling it so that it functions normally but won't steal focus from the parent when clicked on.
My question is, is the ... |
Topic: How to detect if a particular mouse button is present? |
Mistrel
Replies: 7
Views: 267
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 12:16 am Subject: How to detect if a particular mouse button is present? |
I want the script that I'm writing to be prepared for all possible mouse buttons 1, 2, 3, 4.. that might be available.
The problem I have is that if I run my script and the particular mouse button ... |
Topic: Identifying the current cursor |
Mistrel
Replies: 3
Views: 321
|
Forum: Ask for Help Posted: Thu Mar 15, 2007 11:57 pm Subject: Identifying the current cursor |
| In this case all of the cursors I'm trying to identify are custom to this application so A_Cursor always returns "Unknown". |
Topic: ControlGetFocus returning a different result than ControlGet |
Mistrel
Replies: 1
Views: 185
|
Forum: Ask for Help Posted: Thu Mar 15, 2007 10:01 pm Subject: ControlGetFocus returning a different result than ControlGet |
Would someone please explain why these return different control names in some applications?
numpad7::
ControlGetFocus, FocusedControl, A
msgbox %FocusedControl%
return
numpad8:& ... |
Topic: ControlGetFocus disables Doubleclick |
Mistrel
Replies: 20
Views: 2465
|
Forum: Bug Reports Posted: Thu Mar 15, 2007 9:46 pm Subject: ControlGetFocus disables Doubleclick |
| Assuming that isn't sufficient, you could limit your calls to ControlGetFocus to only when a keystroke or mouseclick occurs. A keystroke event can be detected with the Input command. A mouseclick ca ... |
Topic: Identifying the current cursor |
Mistrel
Replies: 3
Views: 321
|
Forum: Ask for Help Posted: Thu Mar 15, 2007 6:44 pm Subject: Identifying the current cursor |
I'm updating my numpad7::
MouseGetPos, mousex, mousey, OutputVarWin, OutputVarControl, 2
X1:=mousex-8
Y1:=mousey-8
X2:=mousex+8
Y2:=mousey+8
ImageSearch, OutputVarX, ... |
| |