AutoHotkey Community

It is currently May 22nd, 2012, 1:58 pm

All times are UTC [ DST ]


Search found 102 matches
Search these results:

Author Message

 Forum: Support   Topic: Case Sensitive IF?

Posted: August 29th, 2011, 12:12 pm 

Replies: 3
Views: 97


Case-sensitive-equal operator

 Forum: Support   Topic: Pay $20 first one, who modified this script to work

Posted: August 28th, 2011, 12:11 am 

Replies: 7
Views: 536


Ongame update has probably rendered postmessage method useless. It seems the client application checks mouse cursor position upon receiving WM_LBUTTONDOWN and WM_LBUTTONUP messages, and acts, not based on message data, but actual mouse cursor coordinates. The only reasonable workaround I can think o...

 Forum: Support   Topic: Pay $20 first one, who modified this script to work

Posted: August 27th, 2011, 8:25 pm 

Replies: 7
Views: 536


You probably want to fix the X coordinate the first thing. It's 2 63 px, not 363. I'm not familiar with Ongame poker table windows, but there's a chance that you also need to take the title bar height and window border thicknesses into account, as posting WM_LBUTTONDOWN (0x201) and WM_LBUTTONUP (0x2...

 Forum: Support   Topic: Using tooltip in a hook callback function clogs execution

Posted: March 14th, 2011, 11:53 pm 

Replies: 2
Views: 145


have to ever successfully gotten the hook to work? I tried for a long time only succeeded in making my system unstable. I have actually. It's just that if you want to hook applications other than your script that installs the hook, you must have the hook procedure in a DLL file: A global hook -- pr...

 Forum: Support   Topic: Need help to read memory

Posted: March 14th, 2011, 12:23 am 

Replies: 20
Views: 897


Ah, my bad. It's been a while since I've dealt with these. The ttseconds, being a buffer , will not contain data accessible as a regular variable would be, but you can retrieve data in binary format from ttseconds' memory address. To get actual data out of the buffer, I can instantly come up with a ...

 Forum: Support   Topic: Need help to read memory

Posted: March 12th, 2011, 9:14 pm 

Replies: 20
Views: 897


Without having tried your code, I can spot a couple of errors. ttseconds := numget(adr1) err1 := %errorlevel% ttsecpart := numget(adr2) err2 := %errorlevel% First of all, according to AHK documentation, numget() does not set errorlevel. Secondly, you don't want to do errx := %errorle...

 Forum: Support   Topic: Autohotkey paused by ctrl / shift / alt.

Posted: March 12th, 2011, 5:48 pm 

Replies: 5
Views: 132


Anonymous wrote:
Didn't work, thanks though. What's the difference between this and my script in the OP?

http://www.autohotkey.com/docs/Hotkeys.htm#wildcard

 Forum: Support   Topic: Autohotkey paused by ctrl / shift / alt.

Posted: March 12th, 2011, 5:36 pm 

Replies: 5
Views: 132


Try this:
Code:
Ins::Suspend

*LButton::
SetMouseDelay 30
Loop
{
    Click
    If (GetKeyState("LButton","P")=0)
        Break
}
return

 Forum: Support   Topic: Using tooltip in a hook callback function clogs execution

Posted: March 12th, 2011, 5:32 pm 

Replies: 2
Views: 145


Why does using tooltip in callwndproc prevent SetWindowsHookExA in auto-execute section from returning (i.e., msgbox does not show up)? Try commenting out the tooltip line and msgbox works just fine. Why is that? detecthiddenwindows, on onexit, cleanup msgbox % hhook := dllcall("SetWindowsH...

 Forum: Support   Topic: Hot-track selection issue with listview

Posted: February 28th, 2011, 2:47 am 

Replies: 1
Views: 293


Update: MSDN documentation may have an error. LVS_EX_TRACKSELECT listview style also makes the control send NM_HOVER message to its parent window. That's the message you want to prevent from being processed in order to stop auto-activation. gui, add, listview, +lv0x8, Column ; 0x8 = LVS_EX_TRACKSELE...

 Forum: Support   Topic: Hot-track selection issue with listview

Posted: February 27th, 2011, 2:15 am 

Replies: 1
Views: 293


Hi, I'm having problems manipulating hot-tracking. For what I understand from MSDN docs, the following code should not select the listview item when the mouse cursor hovers over it, but it gets selected nevertheless. gui, add, listview, +lv0x8, Column ; 0x8 = LVS_EX_TRACKSELECT lv_add("&quo...

 Forum: Scripts   Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...

Posted: August 20th, 2010, 12:38 am 

Replies: 1035
Views: 183403


Having never tried AutoHotkey_L, I have understood one could create scripts to automate MS Office applications and browsers (via COM). What I personally also like is 64-bit support, unicode support and debugging features. I took a peek at the license but remained unsure of whether or not AutoHotkey_...

 Forum: Support   Topic: XP: Right-click on "naked" desktop in AHK?

Posted: August 17th, 2010, 3:02 pm 

Replies: 8
Views: 697


After trying a couple of things I think I have the answer for you. controlget, hSysList, hwnd, , SysListView321, ahk_class Progman ; The handle for the ListView control spread over the desktop sysget, SM_XVIRTUALSCREEN, 76 ; X coordinate for the left edge of the entire virtual screen postmessage, 0x...

 Forum: Support   Topic: Variables within quotes in a function

Posted: August 17th, 2010, 1:27 am 

Replies: 7
Views: 282


It works for me, at least partially. If you start dragging from near the upper-left corner of the area you should see a nice triangle. Isn't that what you're trying to accomplish?

 Forum: Support   Topic: Auto-Correct Two Consecutive Capitals

Posted: August 16th, 2010, 11:54 pm 

Replies: 13
Views: 750


I typed the cpaitals as ast as I could. I tried this several time but it still didn't work How many consecutive capital letters did you type? The script only deals with the situation of exactly two capital letters by decapitalizing the latter one. Meaning, if you type three or more capital letters ...
Sort by:  
Page 1 of 7 [ Search found 102 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group