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 

AutoHotkey_L : Arrays, Debugger, #If expression, etc.
Goto page Previous  1, 2, 3 ... 10, 11, 12 ... 28, 29, 30  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Guest






PostPosted: Wed Apr 15, 2009 11:08 am    Post subject: Reply with quote

Hi Lexikos,

thanks for the quick response. I will use your build now. I don't write any code to the public so I should be fine.

Are there any discussions if/when to merge the two builds?

Regards,
Peter

PS thanks also for being so helpful all the time !!!!!!!!
Back to top
Lexikos



Joined: 17 Oct 2006
Posts: 4468
Location: Qld, Australia

PostPosted: Wed Apr 15, 2009 11:27 am    Post subject: Reply with quote

Anonymous wrote:
Are there any discussions if/when to merge the two builds?
Not in any sort of planned manner. Features of AutoHotkey_L are added to the official release at Chris' discretion, though we discussed some implementation details prior to v1.0.48.
Quote:
PS thanks also for being so helpful all the time !!!!!!!!
You are welcome, though "all the time" is a bit exaggerated. Wink
Back to top
View user's profile Send private message Visit poster's website
Lexikos



Joined: 17 Oct 2006
Posts: 4468
Location: Qld, Australia

PostPosted: Tue Apr 21, 2009 3:03 am    Post subject: Reply with quote

Here, I wrote:
I'd like to point out that AutoHotkey_L supports RegEx Callouts, which make it possible to "debug" a regular expression by stepping through each item in the pattern. There is an example ready to use, though it has a very basic interface. At each step you may see the captured sub-strings, the current position in the input string and the pattern item being evaulated. This allows you to see, for instance, how differently .* and .*? work.

Would there be any interest in a more advanced, user-friendly regex debugger? This could also be made available as a compiled script, for those that don't use AutoHotkey_L.
Back to top
View user's profile Send private message Visit poster's website
Laszlo



Joined: 14 Feb 2005
Posts: 4515
Location: Boulder, CO

PostPosted: Tue Apr 21, 2009 3:46 am    Post subject: Reply with quote

Lexikos wrote:
Would there be any interest in a more advanced, user-friendly regex debugger? This could also be made available as a compiled script, for those that don't use AutoHotkey_L.
YES
Back to top
View user's profile Send private message
TheGood



Joined: 30 Jul 2007
Posts: 399

PostPosted: Tue Apr 21, 2009 3:49 am    Post subject: Reply with quote

Laszlo wrote:
Lexikos wrote:
Would there be any interest in a more advanced, user-friendly regex debugger? This could also be made available as a compiled script, for those that don't use AutoHotkey_L.
YES

I concur.
Back to top
View user's profile Send private message Visit poster's website
Krogdor



Joined: 18 Apr 2008
Posts: 1381
Location: The Interwebs

PostPosted: Tue Apr 21, 2009 4:12 am    Post subject: Reply with quote

Lexikos wrote:

Would there be any interest in a more advanced, user-friendly regex debugger? This could also be made available as a compiled script, for those that don't use AutoHotkey_L.

Certainly.
Back to top
View user's profile Send private message AIM Address
Lexikos



Joined: 17 Oct 2006
Posts: 4468
Location: Qld, Australia

PostPosted: Sun Apr 26, 2009 9:40 am    Post subject: Reply with quote

Quote:
Revision 27 - April 26, 2009
  • Updated from v1.0.48.00 to v1.0.48.02.
Back to top
View user's profile Send private message Visit poster's website
Montu



Joined: 11 Feb 2009
Posts: 140
Location: India

PostPosted: Wed Apr 29, 2009 6:37 am    Post subject: Reply with quote

thanks for that Adding icons in the menu function.
one more thing I want to ask - is it possible to change the font
and font color of such menus?
_________________
Montu
Back to top
View user's profile Send private message
Guest






PostPosted: Wed Apr 29, 2009 7:02 am    Post subject: Reply with quote

Request

please add .png file support to be used as menu icons
Back to top
Lexikos



Joined: 17 Oct 2006
Posts: 4468
Location: Qld, Australia

PostPosted: Wed Apr 29, 2009 8:35 am    Post subject: Reply with quote

Montu wrote:
is it possible to change the font and font color of such menus?
No. I've only added icons; menus in AutoHotkey_L are otherwise the same as in AutoHotkey. I think MMenu can do custom font colours.
Quote:
please add .png file support to be used as menu icons
I will consider it.
Back to top
View user's profile Send private message Visit poster's website
Lexikos



Joined: 17 Oct 2006
Posts: 4468
Location: Qld, Australia

PostPosted: Sat May 02, 2009 8:06 am    Post subject: Reply with quote

Quote:
Revision 28 - May 2, 2009
Improved average-case performance of dynamic function calls by implementing binary search for function name look-ups. This change also applies to other areas, such as load-time resolution of function references in expressions and run-time resolution by OnMessage, RegisterCallback, etc.

Revision 29 - May 2, 2009
All supported image formats may now be used as menu icons. Currently it is necessary to specify "actual size" when setting the icon to preserve transparency on Windows Vista and later. For example:
Code:
Menu, Icon, MenuItemName, Filename.png,, 0
Back to top
View user's profile Send private message Visit poster's website
calculon



Joined: 21 Aug 2008
Posts: 72

PostPosted: Sun May 03, 2009 10:00 pm    Post subject: Reply with quote

Hi Lexikos, great program. Thanks a bunch for the icon additions.

I'm having problems combining AutoHotkey_L with Compile_AHK.

Using AutoHotkey_L_SC, exe's work unless i specify 'Execution Level' or 'NoDecompile':



The exe's compile, but here's the error I get when I try to run them:



Help appreciated.
Back to top
View user's profile Send private message
Lexikos



Joined: 17 Oct 2006
Posts: 4468
Location: Qld, Australia

PostPosted: Mon May 04, 2009 2:42 am    Post subject: Reply with quote

I've posted a solution to the "side-by-side configuration" problem in the Compile_AHK thread.

I'm not able to offer support for NoDecompile as I have no idea how it works. Having studied the Ahk2Exe source code, it seems clear that the implementation of NoDecompile has been "withheld". I'm not sure if the same is true of the AutoHotkey source code.
Back to top
View user's profile Send private message Visit poster's website
calculon



Joined: 21 Aug 2008
Posts: 72

PostPosted: Mon May 04, 2009 6:40 pm    Post subject: Reply with quote

Lexikos wrote:
I've posted a solution to the "side-by-side configuration" problem in the Compile_AHK thread.


Solution tried & works! Thanks very much.
Back to top
View user's profile Send private message
Guest






PostPosted: Mon May 11, 2009 4:34 am    Post subject: Reply with quote

Lexicos
3 Salutes for this great mod.
I especially like the send Unicode function. cause that's most imp.
for my hotstrings

now I request you add unicode text support for the menu item's text as well.

thanks in Advance.!
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 10, 11, 12 ... 28, 29, 30  Next
Page 11 of 30

 
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