AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 73 matches
AutoHotkey Community Forum Index
Author Message
  Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Mon Sep 27, 2010 1:43 pm   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
Added: and
This is the feature I can't believe it would happen. Bravo!
  Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Fri Jul 30, 2010 9:42 am   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
I just found a bug produced by me. Embarassed
http://ku.myftp.org/~jackie/git/autohotkey.git/commit/68add1962ce73af36287da649e1f862dbc92d3af
  Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Tue Jun 01, 2010 1:53 pm   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
I cannot confirm or debug the issue you're having with the ANSI build - my system ANSI code page (1252) does not contain Russian characters, therefore they are replaced with '?' when the script is loa ...
  Topic: AutoHotkey64: 64-bit AutoHotkey_L [updated 6/24/10]
jackieku

Replies: 40
Views: 12852

PostForum: Scripts & Functions   Posted: Mon May 31, 2010 5:59 am   Subject: AutoHotkey64: 64-bit AutoHotkey_L [updated 6/24/10]
Wow, I think I missed something really interesting like this. Very Happy I hope Lexikos will release 64bit builds based on this eventually.
  Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Tue Mar 16, 2010 3:41 pm   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
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, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Tue Mar 16, 2010 5:44 am   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
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, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Sat Feb 20, 2010 7:14 am   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
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: 4146

PostForum: General Chat   Posted: Sat Feb 13, 2010 2: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: 236
Views: 34236

PostForum: Scripts & Functions   Posted: Wed Feb 10, 2010 3: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. Embarassed Thank for your advice.
  Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
jackieku

Replies: 1035
Views: 177171

PostForum: Scripts & Functions   Posted: Fri Feb 05, 2010 2:14 pm   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
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: 236
Views: 34236

PostForum: Scripts & Functions   Posted: Tue Feb 02, 2010 2: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: 236
Views: 34236

PostForum: Scripts & Functions   Posted: Sat Jan 16, 2010 2: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: 236
Views: 34236

PostForum: Scripts & Functions   Posted: Sat Dec 26, 2009 7: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: 236
Views: 34236

PostForum: Scripts & Functions   Posted: Sat Dec 26, 2009 5: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: 236
Views: 34236

PostForum: Scripts & Functions   Posted: Sat Dec 26, 2009 2: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 ...
 
Page 1 of 5 Goto page 1, 2, 3, 4, 5  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group