| Author |
Message |
Topic: ListView Drag & Drop |
Mystiq
Replies: 22
Views: 5636
|
Forum: Scripts & Functions Posted: Mon Oct 24, 2011 5:03 pm Subject: ListView Drag & Drop |
| Exactly what i was looking for and appears to work with latest AHK_L (x64 untested). However i had little issues as i had the listview event handling label inside a function with 'assumed static' so t ... |
Topic: AutoHotkey_L v1.1.04 |
Mystiq
Replies: 47
Views: 3128
|
Forum: Announcements Posted: Sun Oct 16, 2011 10:23 am Subject: AutoHotkey_L v1.1.04 |
Anything which uses GuiType::FindControl() now supports identifying a control by HWND. This includes GuiControl, GuiControlGet and Gui ListView/TreeView.
It might be good idea to change the documen ... |
Topic: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
Mystiq
Replies: 176
Views: 12528
|
Forum: Scripts & Functions Posted: Sat Sep 24, 2011 10:19 am Subject: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
@daonlyfreez
I've got no problems getting response. Using latest AHK_L with SABnzbd version 0.6.9. Apart from having APIKEY defined and different host address, it worked on my first try.  |
Topic: [AHK_L] DisplaySwitch toggler (internal/external) |
Mystiq
Replies: 0
Views: 232
|
Forum: Scripts & Functions Posted: Wed Sep 14, 2011 1:38 pm Subject: [AHK_L] DisplaySwitch toggler (internal/external) |
Here's a simple script i put together to use the Windows DisplaySwitch executable to switch between my monitor/TV (DVI/HDMI).
#SingleInstance ignore ; One instance at a time
;-- Find first activ ... |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Mystiq
Replies: 128
Views: 19498
|
Forum: Scripts & Functions Posted: Thu Feb 10, 2011 4:15 pm Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
| With that aside, adding that feature to AHKsock_Send() wouldn't be much help. The maximum number of successful send() calls that would go through would be two (since the call after the first one will ... |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Mystiq
Replies: 128
Views: 19498
|
Forum: Scripts & Functions Posted: Tue Feb 08, 2011 4:23 pm Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
@TheGood
I've been wondering about the AHKsock_Send and ForceSend functions, specifically how the ForceSend checks/uses the send buffer size to avoid performance hit while normal Send does not.
... |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Mystiq
Replies: 128
Views: 19498
|
Forum: Scripts & Functions Posted: Fri Jan 21, 2011 2:01 pm Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Thanks! I've updated AHKsock.
You are welcome!  |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Mystiq
Replies: 128
Views: 19498
|
Forum: Scripts & Functions Posted: Mon Jan 17, 2011 9:37 pm Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
There seems to be a bug with the AHKsock_Sockets function, it does not restore the critical back properly. i.e. it "leaks critical".
A_IsCriticalOld := A_IsCritical
Critical
...
AH ... |
Topic: [module, ahk & dotNet] IPC 2.6 |
Mystiq
Replies: 58
Views: 13343
|
Forum: Scripts & Functions Posted: Sat Jan 08, 2011 8:11 am Subject: [module, ahk & dotNet] IPC 2.6 |
| If there is no huge demand for the ANSI thing then i wouldn't bother with it. |
Topic: [module, ahk & dotNet] IPC 2.6 |
Mystiq
Replies: 58
Views: 13343
|
Forum: Scripts & Functions Posted: Wed Jan 05, 2011 11:45 am Subject: [module, ahk & dotNet] IPC 2.6 |
I am thinking to support only Unicode string from now on. What do you think ?
I would go for Unicode only simply because that's what I'm going to be using anyways, unless forced otherwise (very unl ... |
Topic: [module, ahk & dotNet] IPC 2.6 |
Mystiq
Replies: 58
Views: 13343
|
Forum: Scripts & Functions Posted: Tue Jan 04, 2011 5:27 pm Subject: [module, ahk & dotNet] IPC 2.6 |
target := "Script2.exe"
How can this work since there is no "Script2.exe" but Ahk.exe with Script2.ahk as parameter ? (unless u compiled scripts).
Yea, it's meant to be compile ... |
Topic: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
Mystiq
Replies: 128
Views: 19498
|
Forum: Scripts & Functions Posted: Tue Jan 04, 2011 8:59 am Subject: AHKsock - A simple AHK implementation of Winsock (TCP/IP) |
| Noticed that AHKSock seems to use manually created GUI window, where the network messages are directed to. However this seems unnessary and might cause problems i.e. if the window gets deleted? Autoho ... |
Topic: [module, ahk & dotNet] IPC 2.6 |
Mystiq
Replies: 58
Views: 13343
|
Forum: Scripts & Functions Posted: Tue Jan 04, 2011 2:17 am Subject: [module, ahk & dotNet] IPC 2.6 |
Now that this works in 64-bit i'd like to share my changes, which also includes the various fixes from previous posters.
Most notable thing i've changed is that it no longer uses window handles, in ... |
Topic: [module, ahk & dotNet] IPC 2.6 |
Mystiq
Replies: 58
Views: 13343
|
Forum: Scripts & Functions Posted: Mon Jan 03, 2011 11:30 pm Subject: [module, ahk & dotNet] IPC 2.6 |
| Note that the dwData field is ULONG_PTR, i.e. 64-bit. Since the struct contains 64-bit fields, it is aligned to 64-bit boundaries by default; i.e. there are 32 bits of padding between cbData and lpDat ... |
Topic: [module, ahk & dotNet] IPC 2.6 |
Mystiq
Replies: 58
Views: 13343
|
Forum: Scripts & Functions Posted: Sun Jan 02, 2011 12:25 am Subject: [module, ahk & dotNet] IPC 2.6 |
I don't think thats all that important, but it should return true.
Yea it is really not that important but i thought i'd mention it.
I've been tinkering with the two example scripts and trying t ... |
| |