AutoHotkey Community

It is currently May 27th, 2012, 11:34 am

All times are UTC [ DST ]




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 237 posts ]  Go to page 1, 2, 3, 4, 5 ... 16  Next
Author Message
PostPosted: October 29th, 2009, 9:33 am 
Offline

Joined: November 30th, 2008, 1:51 pm
Posts: 73
AutoHotkey_L has been merged with AutoHotkeyU. Please use AutoHotkey_L 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 February 10th, 2010, 4:09 pm, edited 44 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 11:40 am 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
Awesome :D

After a quick test it looks to work, I will test more as soon as I can ;)
Thanks for the source code as well.

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 12:41 pm 
Offline

Joined: April 22nd, 2009, 6:04 am
Posts: 29
This is great news :D
I would give it a try if i get home.
by the way, is your version base on Lexikos's Ahk_L?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 12:57 pm 
Excellent!

8)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 1:45 pm 
Offline

Joined: February 12th, 2007, 7:54 am
Posts: 2462
Suddenly superb features are flooding into AHK! :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 3:10 pm 
Offline

Joined: March 23rd, 2006, 2:20 pm
Posts: 128
Finally !!!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 4:09 pm 
Offline

Joined: November 24th, 2008, 7:22 pm
Posts: 73
Can someone explain to us non computer science folks why this is such good news? With that info, I too can be excited :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 5:33 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Very nice.
Lets hope Chris will notice this.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 5:44 pm 
Offline

Joined: May 27th, 2007, 9:41 am
Posts: 4999
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

_________________
AHK FAQ
TF : Text files & strings lib, TF Forum


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 6:47 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
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 превосходно :D

And yes I agree this should be made sticky, now many more users will be interested in AutoHotkey I think ;)

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 29th, 2009, 9:19 pm 
Offline

Joined: March 23rd, 2006, 2:20 pm
Posts: 128
I was about to reconsider my choice in favor of AutoIt. Now there is a chance to continue using AutoHotkey!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 30th, 2009, 12:25 am 
Offline

Joined: January 9th, 2009, 10:42 pm
Posts: 104
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 30th, 2009, 1:38 am 
Offline

Joined: August 1st, 2009, 12:24 pm
Posts: 46
OP said file IO isn't implemented yet.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 30th, 2009, 2:03 am 
Offline

Joined: February 12th, 2007, 7:54 am
Posts: 2462
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)


Report this post
Top
 Profile  
Reply with quote  
 Post subject: FINALLY!!!
PostPosted: October 30th, 2009, 4:48 am 
Offline

Joined: December 29th, 2007, 9:40 pm
Posts: 142
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...


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 237 posts ]  Go to page 1, 2, 3, 4, 5 ... 16  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: bowen666, MSN [Bot], nomissenrojb and 64 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group