| View previous topic :: View next topic |
| Author |
Message |
jackieku
Joined: 30 Nov 2008 Posts: 64
|
Posted: Thu Oct 29, 2009 8:33 am Post subject: UNICODE version of AutoHotkey |
|
|
AutoHotkey_L has been merged with AutoHotkeyU. Please use it instead.
AutoHotkeyU - AutoHotkey_L with Unicode supports
The sources are available at git://ku.myftp.org/autohotkey.git via Git. Browse the repository with the web interface. (ChangeLog)
Please see this wiki article for more details.
Read the 'Script compatibility' section if your scripts don't work.
Download:
AutoHotkeyU (AutoHotkeySC.bin included) commit 3804d380dbbd56ad9787f9e42ef0cac084099a28 (based on AutoHotkey_L rev.41)
XDebugClient for AutoHotkeyU (patched to handle UTF-8, the patch is included in the package.)
Last edited by jackieku on Tue Feb 02, 2010 10:52 am; edited 43 times in total |
|
| Back to top |
|
 |
HotKeyIt
Joined: 18 Jun 2008 Posts: 1994 Location: GERMANY
|
Posted: Thu Oct 29, 2009 10:40 am Post subject: |
|
|
Awesome
After a quick test it looks to work, I will test more as soon as I can
Thanks for the source code as well. _________________ AutoHotFile - ToolTip(n,text,title,options) |
|
| Back to top |
|
 |
wiseley
Joined: 22 Apr 2009 Posts: 17
|
Posted: Thu Oct 29, 2009 11:41 am Post subject: |
|
|
This is great news
I would give it a try if i get home.
by the way, is your version base on Lexikos's Ahk_L? |
|
| Back to top |
|
 |
n-l-i-d Guest
|
Posted: Thu Oct 29, 2009 11:57 am Post subject: |
|
|
Excellent!
 |
|
| Back to top |
|
 |
Sean
Joined: 12 Feb 2007 Posts: 2141
|
Posted: Thu Oct 29, 2009 12:45 pm Post subject: |
|
|
Suddenly superb features are flooding into AHK!  |
|
| Back to top |
|
 |
rousni
Joined: 23 Mar 2006 Posts: 87
|
Posted: Thu Oct 29, 2009 2:10 pm Post subject: |
|
|
| Finally !!! |
|
| Back to top |
|
 |
Relayer
Joined: 24 Nov 2008 Posts: 11
|
Posted: Thu Oct 29, 2009 3:09 pm Post subject: |
|
|
Can someone explain to us non computer science folks why this is such good news? With that info, I too can be excited  |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4052 Location: Belgrade
|
Posted: Thu Oct 29, 2009 4:33 pm Post subject: |
|
|
Very nice.
Lets hope Chris will notice this. _________________
 |
|
| Back to top |
|
 |
hugov
Joined: 27 May 2007 Posts: 2181
|
Posted: Thu Oct 29, 2009 4:44 pm Post subject: |
|
|
Perhaps this thread should be stickied for the time being to draw attention over a longer period of time and get people to test it
Edit: and yes it will surely help make AHK to become even more popular so congratulations on your work _________________ Tut 4 Newbies
TF : Text file & string lib, TF Forum |
|
| Back to top |
|
 |
HotKeyIt
Joined: 18 Jun 2008 Posts: 1994 Location: GERMANY
|
Posted: Thu Oct 29, 2009 5:47 pm Post subject: |
|
|
| Relayer wrote: | Can someone explain to us non computer science folks why this is such good news? With that info, I too can be excited  |
Just because it is превосходно
And yes I agree this should be made sticky, now many more users will be interested in AutoHotkey I think  _________________ AutoHotFile - ToolTip(n,text,title,options) |
|
| Back to top |
|
 |
rousni
Joined: 23 Mar 2006 Posts: 87
|
Posted: Thu Oct 29, 2009 8:19 pm Post subject: |
|
|
| I was about to reconsider my choice in favor of AutoIt. Now there is a chance to continue using AutoHotkey! |
|
| Back to top |
|
 |
JimKarvo
Joined: 09 Jan 2009 Posts: 104
|
Posted: Thu Oct 29, 2009 11:25 pm Post subject: |
|
|
I found a bug..  | Code: |
Gui, Add, Edit, x46 y37 w330 h20 vonomatainias,
Gui, Add, Button, x116 y767 w180 h50 , Ok
; Generated using SmartGUI Creator 4.0
Gui, Show, x166 y117 h880 w420, New GUI Window
Return
GuiClose:
ExitApp
ButtonOK:
Gui, Submit, nohide
fileappend, %onomatainias%, %onomatainias%.txt |
It appends an empty file..
BUT: because of I am using linux, Is is possible for someone in Windows to test that? |
|
| Back to top |
|
 |
kli6891
Joined: 01 Aug 2009 Posts: 42
|
Posted: Fri Oct 30, 2009 12:38 am Post subject: |
|
|
| OP said file IO isn't implemented yet. |
|
| Back to top |
|
 |
Sean
Joined: 12 Feb 2007 Posts: 2141
|
Posted: Fri Oct 30, 2009 1:03 am Post subject: |
|
|
I'd like to know how many trailing bytes VarSetCapacity adds to the end of the variable, 1 or 2? I suppose it better be 2 with the unicode build. BTW, NumGet/NumPut didn't work as expected.
| Code: | VarSetCapacity(x,2,1)
MsgBox, % NumGet(x) ; not work
; MsgBox, % NumGet(&x) ; work
|
OK, I reckon it's 2-byte base.
| Code: | MsgBox % VarSetCapacity(x,3) "|" VarSetCapacity(y,4)
MsgBox % VarSetCapacity(z,1,1) "|" NumGet(&z) |
|
|
| Back to top |
|
 |
TodWulff
Joined: 29 Dec 2007 Posts: 116
|
Posted: Fri Oct 30, 2009 3:48 am Post subject: FINALLY!!! |
|
|
Wicked good news. Now maybe I don't need to learn PowerShell with WASP/PowerBoots/White to do up a UI unit test suite for a piece of oss. I am SO glad that I can leverage my ahk skillsets to this end now.!.
Quite simply, THANK YOU!!!
-t _________________ When replying, please feel free to address me as Tod. My AHK.net site... |
|
| Back to top |
|
 |
|