| Author |
Message |
Topic: AHK-W: Writing Web-Based Programs with AutoHotkey Syntax |
trueski
Replies: 17
Views: 1277
|
Forum: Scripts & Functions Posted: Wed Feb 01, 2012 11:25 pm Subject: AHK-W: Writing Web-Based Programs with AutoHotkey Syntax |
| Pretty much. I didn't receive any help on it and I don't have time to maintain it myself. I'm just completing my undergraduate education and will be working on dual masters programs for the next 5 yea ... |
Topic: Make _L default AHK, and retire basic as legacy AHK? |
trueski
Replies: 38
Views: 1312
|
Forum: Wish List Posted: Mon Jan 30, 2012 5:37 pm Subject: Make _L default AHK, and retire basic as legacy AHK? |
| Good points sumon. If it were possible to create a new name that could still be abbreviated, "AHK" the impact of these drawbacks could be reduced.. I have no idea where one would start to fi ... |
Topic: Make _L default AHK, and retire basic as legacy AHK? |
trueski
Replies: 38
Views: 1312
|
Forum: Wish List Posted: Sun Jan 29, 2012 10:42 pm Subject: Make _L default AHK, and retire basic as legacy AHK? |
| If a new website is created for v2, I think the name "AutoHotkey" should be reconsidered. Although there may be an emphasis on automation and hotkeys, this name just touches the surface of w ... |
Topic: AutoHotkey v2 Alpha Release |
trueski
Replies: 710
Views: 57944
|
Forum: Scripts & Functions Posted: Thu Apr 14, 2011 5:53 pm Subject: AutoHotkey v2 Alpha Release |
Remove double %, introduce %().
No ambiguity.The nice thing about this is that since whatever is in %() can be interpreted as an expression it would result in exactly one way to dereference a variabl ... |
Topic: AutoHotkey v2 Alpha Release |
trueski
Replies: 710
Views: 57944
|
Forum: Scripts & Functions Posted: Thu Apr 14, 2011 5:41 pm Subject: AutoHotkey v2 Alpha Release |
Remove double %, introduce %().
No ambiguity.
+1 |
Topic: AutoHotkey v2 Alpha Release |
trueski
Replies: 710
Views: 57944
|
Forum: Scripts & Functions Posted: Wed Apr 13, 2011 8:37 pm Subject: AutoHotkey v2 Alpha Release |
I think the current method wastes space and looks a bit ugly:
Var := "
(
Line 1 of the text.
Line 2 of the text. By default, a linefeed (``n) is present between lines.
)& ... |
Topic: AutoHotkey v2 Alpha Release |
trueski
Replies: 710
Views: 57944
|
Forum: Scripts & Functions Posted: Wed Apr 13, 2011 3:04 pm Subject: AutoHotkey v2 Alpha Release |
This pattern is not used in any other language, it's a bit strange to write text on multiple lines...
I'm not really sure what languages you're using, but this can be done in any language that term ... |
Topic: AutoHotkey v2 Alpha Release |
trueski
Replies: 710
Views: 57944
|
Forum: Scripts & Functions Posted: Wed Apr 13, 2011 1:20 pm Subject: AutoHotkey v2 Alpha Release |
For multiline assignments, can you make it so that text between quotes may span more than one line?
Variable := "This
Should
Work"
Is there a problem with this design? |
Topic: 7zip 7-zip32.dll Library without commandline [AHK_L] |
trueski
Replies: 11
Views: 3600
|
Forum: Scripts & Functions Posted: Mon Apr 11, 2011 6:17 am Subject: 7zip 7-zip32.dll Library without commandline [AHK_L] |
... you may use
Oh ok. I may try to integrate ZipArchive (http://www.artpol-software.com/ZipArchive/, which actually uses zlib) for a 'hybrid' type approach. I would like to generate CSV files fro ... |
Topic: 7zip 7-zip32.dll Library without commandline [AHK_L] |
trueski
Replies: 11
Views: 3600
|
Forum: Scripts & Functions Posted: Mon Apr 11, 2011 1:28 am Subject: 7zip 7-zip32.dll Library without commandline [AHK_L] |
Update:
- Many bug-fixes.
- conversion of Dos Date and Time added.
- New examples added.
Nice work! This is very useful. Is there a way to write the contents of a variable to a file within an a ... |
Topic: Array manipulation functions |
trueski
Replies: 1
Views: 463
|
Forum: Wish List Posted: Fri Apr 08, 2011 6:39 am Subject: Array manipulation functions |
AutoHotkey works great for string manipulation. With the introduction of Objects to AHK, I think arrays should get the same respect in v2.
Current string manipulation commands/functions:
InStr
Lo ... |
Topic: Class definition syntax for AutoHotkey |
trueski
Replies: 96
Views: 6245
|
Forum: General Chat Posted: Thu Apr 07, 2011 6:48 am Subject: Re: Class definition syntax for AutoHotkey |
i'm not qualified to enter this discussion, but i will just say this is A LOT more intuitive/familiar for me and
sorry, one of my favorite quotes...
And I do agree with you on it being more int ... |
Topic: Class definition syntax for AutoHotkey |
trueski
Replies: 96
Views: 6245
|
Forum: General Chat Posted: Thu Apr 07, 2011 5:15 am Subject: Class definition syntax for AutoHotkey |
| Being able to call an overridden version of a method can be important...Could the ability to adjust the visibility of variables and functions within classes be provided (i.e. public, protected, privat ... |
Topic: AutoHotkey v2 Alpha Release |
trueski
Replies: 710
Views: 57944
|
Forum: Scripts & Functions Posted: Wed Apr 06, 2011 2:19 am Subject: AutoHotkey v2 Alpha Release |
On the topic of dynamic variables, I think they should be allowed in ahk v2. To make the syntax more legible, the php syntax could be used (or a twist on it could be done)
AHK v1:
DynamicVar : ... |
Topic: Random Encryption |
trueski
Replies: 13
Views: 2170
|
Forum: Scripts & Functions Posted: Fri Apr 01, 2011 2:57 am Subject: Random Encryption |
Here's the code translated into php (Laszlo's version).
function Code($x,$E,$K0=0,$K1=1,$K2=2,$K3=3) {
static $S = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678 ... |
| |