![]() |
|
#10
|
|||
|
|||
|
Well, before I go to bed...
I placed the following code in to help me debug... Starting with (Original) Line 180: <font class="small">Code:</font><hr /><pre> WinGetPos, x, y, w, h, ahk_id%winID% px := Floor((w/800) * 400) py := Floor((h/573) * 80) Casey_Var = winID is %winID% px is %px% and py is %py% msgbox %Casey_Var% </pre><hr /> Then again under the CR_PostLeftClick sub: <font class="small">Code:</font><hr /><pre> msgbox % "I am going to click here: " . ((y*65536)+x) Postmessage 0x201, 0x0001, ((y*65536)+x), , ahk_id%table_id% Postmessage 0x202, 0, ((y*65536)+x), , ahk_id%table_id% </pre><hr /> The values of those variables were: winID = 0x2f01c0 px = 400 py = 80 <<Click Location>> = 5243280 Now if only I could correlate that location with my option button, I suppose I could fix this [img]/images/graemlins/frown.gif[/img] --Casey |
|
|