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 

UNICODE version of AutoHotkey
Goto page 1, 2, 3 ... 14, 15, 16  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
jackieku



Joined: 30 Nov 2008
Posts: 64

PostPosted: Thu Oct 29, 2009 8:33 am    Post subject: UNICODE version of AutoHotkey Reply with quote

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
View user's profile Send private message
HotKeyIt



Joined: 18 Jun 2008
Posts: 1994
Location: GERMANY

PostPosted: Thu Oct 29, 2009 10:40 am    Post subject: Reply with quote

Awesome Very Happy

After a quick test it looks to work, I will test more as soon as I can Wink
Thanks for the source code as well.
_________________
AutoHotFile - ToolTip(n,text,title,options) Wink
Back to top
View user's profile Send private message
wiseley



Joined: 22 Apr 2009
Posts: 17

PostPosted: Thu Oct 29, 2009 11:41 am    Post subject: Reply with quote

This is great news Very Happy
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
View user's profile Send private message
n-l-i-d
Guest





PostPosted: Thu Oct 29, 2009 11:57 am    Post subject: Reply with quote

Excellent!

Cool
Back to top
Sean



Joined: 12 Feb 2007
Posts: 2141

PostPosted: Thu Oct 29, 2009 12:45 pm    Post subject: Reply with quote

Suddenly superb features are flooding into AHK! Smile
Back to top
View user's profile Send private message
rousni



Joined: 23 Mar 2006
Posts: 87

PostPosted: Thu Oct 29, 2009 2:10 pm    Post subject: Reply with quote

Finally !!!
Back to top
View user's profile Send private message
Relayer



Joined: 24 Nov 2008
Posts: 11

PostPosted: Thu Oct 29, 2009 3:09 pm    Post subject: Reply with quote

Can someone explain to us non computer science folks why this is such good news? With that info, I too can be excited Wink
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 4052
Location: Belgrade

PostPosted: Thu Oct 29, 2009 4:33 pm    Post subject: Reply with quote

Very nice.
Lets hope Chris will notice this.
_________________
Back to top
View user's profile Send private message
hugov



Joined: 27 May 2007
Posts: 2181

PostPosted: Thu Oct 29, 2009 4:44 pm    Post subject: Reply with quote

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 Question

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
View user's profile Send private message Visit poster's website
HotKeyIt



Joined: 18 Jun 2008
Posts: 1994
Location: GERMANY

PostPosted: Thu Oct 29, 2009 5:47 pm    Post subject: Reply with quote

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 Wink


Just because it is превосходно Very Happy

And yes I agree this should be made sticky, now many more users will be interested in AutoHotkey I think Wink
_________________
AutoHotFile - ToolTip(n,text,title,options) Wink
Back to top
View user's profile Send private message
rousni



Joined: 23 Mar 2006
Posts: 87

PostPosted: Thu Oct 29, 2009 8:19 pm    Post subject: Reply with quote

I was about to reconsider my choice in favor of AutoIt. Now there is a chance to continue using AutoHotkey!
Back to top
View user's profile Send private message
JimKarvo



Joined: 09 Jan 2009
Posts: 104

PostPosted: Thu Oct 29, 2009 11:25 pm    Post subject: Reply with quote

I found a bug.. Sad
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
View user's profile Send private message MSN Messenger
kli6891



Joined: 01 Aug 2009
Posts: 42

PostPosted: Fri Oct 30, 2009 12:38 am    Post subject: Reply with quote

OP said file IO isn't implemented yet.
Back to top
View user's profile Send private message
Sean



Joined: 12 Feb 2007
Posts: 2141

PostPosted: Fri Oct 30, 2009 1:03 am    Post subject: Reply with quote

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
View user's profile Send private message
TodWulff



Joined: 29 Dec 2007
Posts: 116

PostPosted: Fri Oct 30, 2009 3:48 am    Post subject: FINALLY!!! Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page 1, 2, 3 ... 14, 15, 16  Next
Page 1 of 16

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group