| Author |
Message |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
jackieku
Replies: 442
Views: 82625
|
Forum: Scripts & Functions Posted: Tue Mar 16, 2010 4:41 pm Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
| On a related note, I think we should replace (or supplement) the numeric flags with a more intuitive options string. I don't like having to refer to the documentation every time I want to call FileOpe ... |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
jackieku
Replies: 442
Views: 82625
|
Forum: Scripts & Functions Posted: Tue Mar 16, 2010 6:44 am Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
Hello,
I just apply some changes to AutoHotkeyU. It added shared file accesses
supports to FileOpen(), since I found it may be useful for some situations.
Perhaps you could apply this SHARE_REA ... |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
jackieku
Replies: 442
Views: 82625
|
Forum: Scripts & Functions Posted: Sat Feb 20, 2010 8:14 am Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
| Is there any plan to support variable length arguments for functions? I saw some scripts like [url=http://www.autohotkey.com/forum/viewtopic.php?t=49736][AHK_L] Arrays recently. I think it might work ... |
Topic: Experimental COM support for AutoHotkeyU/_L |
jackieku
Replies: 54
Views: 2291
|
Forum: General Chat Posted: Sat Feb 13, 2010 3:03 am Subject: Experimental COM support for AutoHotkeyU/_L |
Hello,
I might miss something, but how about wrapping ComEnumerate/ComEventConnect/ComEventDisconnect in this form:
comobj.__Enumerate()
comobj.__EventConnect()
comobj.__EventDis ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Wed Feb 10, 2010 4:11 pm Subject: Re: UNICODE version of AutoHotkey |
I don't mean to be picky. Maybe my command of English is below par. But...Does 'it' stand for AutoHotkey_L or AutoHotkeyU?
I've edited the first post. Thank for your advice. |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
jackieku
Replies: 442
Views: 82625
|
Forum: Scripts & Functions Posted: Fri Feb 05, 2010 3:14 pm Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
| One big concern, however, are DllCalls. DllCalls were failing in such measure that I spent entire day debugging and tracking which one failed and why (MRS has 20 or so modules). Because some APIs have ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Tue Feb 02, 2010 3:52 pm Subject: Re: URLDownloadToFile |
Am I right in thinking that URLDownloadToFile is not working in AHKU?
It works here.
Please try the Unicode build of AutoHotkey_L (see the first post) first. If it fails, please give us more details ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Sat Jan 16, 2010 3:01 am Subject: UNICODE version of AutoHotkey |
@Lexikos
It seems those lines should be...
output_var.ByteLength() = is_binary_clipboard ? bytes_actually_read
: (VarSizeType)_tcslen((LPCTSTR) output_buf) * ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Sat Dec 26, 2009 8:51 am Subject: UNICODE version of AutoHotkey |
SendKeySpecial is only used for individual characters which have no corresponding vk+modifiers.
So is it needed to send the characters < 255 by SendASC instead of SendUnicodeChar?
Visual C++ 20 ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Sat Dec 26, 2009 6:25 am Subject: UNICODE version of AutoHotkey |
@Lexikos
Hmm, I'll make SendKeySpecial use SendUnicodeChar, hope it won't break anything. |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Sat Dec 26, 2009 3:11 am Subject: UNICODE version of AutoHotkey |
This won't work:
<^>!+é::Send É
<^>!+ç::Send Ç
It would rather show ╔ and Ã
etc.
Ç(U+00C7) and É(U+00C9) are both in the range between U+0080 and U+00FF. Both of them are valid ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Wed Dec 23, 2009 1:36 am Subject: UNICODE version of AutoHotkey |
array := Object()
array["a"] := "alpha"
array["b"] := "bravo"
MsgBox % array["a"] . " " . arr ... |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Mon Dec 21, 2009 1:43 am Subject: UNICODE version of AutoHotkey |
AutoHotkeySC.bin is not included
Sorry, I forgot to modify the batch file. Please download it again. |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Sun Dec 20, 2009 4:32 pm Subject: UNICODE version of AutoHotkey |
| I uploaded a new copy of AutoHotkeyU. (based on L41) |
Topic: UNICODE version of AutoHotkey |
jackieku
Replies: 231
Views: 19114
|
Forum: Scripts & Functions Posted: Sat Dec 19, 2009 12:26 pm Subject: UNICODE version of AutoHotkey |
The MenuMaskKey was indeed a mistake in my version.
About the debugging log, there's a macro (DBGMSG(1)) which enables MessageBoxes.
Also: (script_object.cpp, line 791)
tmemcpy(marker, str, ... |
| |