| Author |
Message |
Topic: Popup calculator / expression evaluator |
Laszlo
Replies: 70
Views: 16554
|
Forum: Scripts & Functions Posted: Fri Sep 30, 2011 10:53 pm Subject: Popup calculator / expression evaluator |
| The low level functions only work with an old AHK version. Install it, compile the script and run the executable,when the calculator is needed. This way you can have the newer AHK versions for your ot ... |
Topic: Paste plain text (and copy/cut) |
Laszlo
Replies: 20
Views: 13121
|
Forum: Scripts & Functions Posted: Fri Sep 30, 2011 12:34 pm Subject: Paste plain text (and copy/cut) |
| the simplest is to define two hotkeys, one with removing special chars |
Topic: Paste plain text (and copy/cut) |
Laszlo
Replies: 20
Views: 13121
|
Forum: Scripts & Functions Posted: Thu Sep 29, 2011 10:55 pm Subject: Paste plain text (and copy/cut) |
| just add a bunch of StringReplace, or a RegExReplace instruction |
Topic: Dim screen but still use mouse? |
Laszlo
Replies: 9
Views: 1223
|
Forum: Ask for Help Posted: Fri Sep 16, 2011 5:23 pm Subject: Dim screen but still use mouse? |
You can try a timer loop to constantly set the cover window on top of others:Gui Color, 0,0 ; Black
Gui -Caption +ToolWindow +E0x20 ; No title bar, No taskbar button, Transpare ... |
Topic: Popup calculator / expression evaluator |
Laszlo
Replies: 70
Views: 16554
|
Forum: Scripts & Functions Posted: Mon Jul 11, 2011 4:49 pm Subject: Popup calculator / expression evaluator |
| If you mean the download links, they are in the bottom of the first post. If you mean, how to comprehend the script, try to go over it, line-by-line, and modify the commands, to see, what effects you ... |
Topic: RC4 encryption to hex stream |
Laszlo
Replies: 36
Views: 13245
|
Forum: Scripts & Functions Posted: Sun Jul 03, 2011 11:18 pm Subject: RC4 encryption to hex stream |
| start here: http://www.autohotkey.com/forum/viewtopic.php?t=23719 |
Topic: Popup calculator / expression evaluator |
Laszlo
Replies: 70
Views: 16554
|
Forum: Scripts & Functions Posted: Wed Jun 22, 2011 1:54 am Subject: Popup calculator / expression evaluator |
| what error? |
Topic: RC4 encryption to hex stream |
Laszlo
Replies: 36
Views: 13245
|
Forum: Scripts & Functions Posted: Mon Apr 04, 2011 8:18 pm Subject: RC4 encryption to hex stream |
| (This is not the right section of the Forum, but I think a good direction with developing AHK is fixing its inconsistent syntax, numerous bugs, removing limitations, and add features, like dynamic exp ... |
Topic: RC4 encryption to hex stream |
Laszlo
Replies: 36
Views: 13245
|
Forum: Scripts & Functions Posted: Mon Apr 04, 2011 6:48 pm Subject: RC4 encryption to hex stream |
| RC4 is byte oriented, so you have to convert your Unicode string to a byte array, and process that. The result is also a byte array, not a Unicode string, so you have to transmit it coded to strings, ... |
Topic: Small and fast Text File Encryptor |
Laszlo
Replies: 59
Views: 14763
|
Forum: Scripts & Functions Posted: Sat Mar 12, 2011 8:44 pm Subject: Small and fast Text File Encryptor |
| The used cipher was meant for very short messages (<225 characters). I forgot to document this restriction at the original post (now fixed). For general case use the other function in the same [url ... |
Topic: Small and fast Text File Encryptor |
Laszlo
Replies: 59
Views: 14763
|
Forum: Scripts & Functions Posted: Sat Mar 12, 2011 5:52 pm Subject: Small and fast Text File Encryptor |
| The original function is [url=http://www.autohotkey.com/forum/viewtopic.php?p=382962#382962]here, but you use it incorrectly: with only one key out of the 4 required, which is not secure. Also, the 4 ... |
Topic: IsPrime() - Check if Number is Prime |
Laszlo
Replies: 11
Views: 2229
|
Forum: Scripts & Functions Posted: Wed Feb 23, 2011 7:50 pm Subject: IsPrime() - Check if Number is Prime |
| You can use the two possible mod 6 candidates (33.3% of all integers), or the 8 possible mod 30 candidates (8/30 ~ 26.7% of all integers), and so on. For short numbers (up to 64 bits) cleverly generat ... |
Topic: Make sentences start with capitals |
Laszlo
Replies: 52
Views: 12078
|
Forum: Scripts & Functions Posted: Wed Feb 23, 2011 6:28 pm Subject: Make sentences start with capitals |
Nimda's script is too simple, much more restricted. Here are a few issues with it:
- It only replaces, when {!?.} is followed by one space -> next char capitalized: two spaces, new lines are not h ... |
Topic: Challenge: translate rosettacode - Was promoting autohotkey |
Laszlo
Replies: 415
Views: 24000
|
Forum: General Chat Posted: Thu Dec 09, 2010 12:09 am Subject: Challenge: translate rosettacode - Was promoting autohotkey |
| Why would anyone hate you for writing an incorrect AutoIt script (plural/singular after k Bottle(s))? You can take any one of the correct AHK scripts and translate them to AutoIt in one minute. |
Topic: Machine code functions: Bit Wizardry |
Laszlo
Replies: 346
Views: 67417
|
Forum: Scripts & Functions Posted: Sun Nov 28, 2010 4:44 pm Subject: Machine code functions: Bit Wizardry |
| There could be any number of other problems besides the proper AHK installation. The function code is stored as data, which some security settings or antivirus programs prevent to be executed. Try oth ... |
| |