| Author |
Message |
Topic: Built In Encryption/Decryption |
PurloinedHeart
Replies: 10
Views: 866
|
Forum: Scripts & Functions Posted: Thu Sep 17, 2009 3:43 am Subject: Built In Encryption/Decryption |
Bump -- Anyone have any methods to improve speed? The binary conversion seems slow/inefficient
Edit: On my new laptop, took about 30 seconds to encrypt a 1.5mb exe file
(core2 T6500 @ 2.1, 4mb ram ... |
Topic: Variables with special characters |
PurloinedHeart
Replies: 4
Views: 204
|
Forum: Ask for Help Posted: Thu Sep 17, 2009 2:42 am Subject: Variables with special characters |
| Try SendRaw |
Topic: Create my own functions and call them from inside a script. |
PurloinedHeart
Replies: 4
Views: 150
|
Forum: Ask for Help Posted: Thu Sep 17, 2009 12:27 am Subject: Create my own functions and call them from inside a script. |
Although Gosub is useful for simple, general purpose subroutines, consider using functions for more complex purposes.
http://www.autohotkey.com/docs/Functions.htm |
Topic: Dynamic Label? |
PurloinedHeart
Replies: 6
Views: 381
|
Forum: Ask for Help Posted: Mon Sep 14, 2009 1:33 am Subject: Dynamic Label? |
Caveman Attempt
Script 1
Loop 5
Dynamic .= "Label" A_Index ":`n"
FileAppend %Dynamic%, Dynamic.txt
FileAppend Msgbox Caveman Worked!`nMsgbox Write rest of script here ... |
Topic: new line / break line |
PurloinedHeart
Replies: 10
Views: 344
|
Forum: Ask for Help Posted: Mon Sep 14, 2009 1:16 am Subject: new line / break line |
i tried 'r and 'n, but it didn't make any files.
` =/= ' |
Topic: Ascii code for "square root" |
PurloinedHeart
Replies: 10
Views: 446
|
Forum: Ask for Help Posted: Sat Sep 05, 2009 7:30 pm Subject: Ascii code for "square root" |
code = ASCII Code
#a::Send % Chr(Code)
|
Topic: C++ Compilers |
PurloinedHeart
Replies: 3
Views: 2468
|
Forum: Utilities & Resources Posted: Fri Sep 04, 2009 11:47 pm Subject: C++ Compilers |
| Before I switched computers, I was using Code::Blocks, but that doesn't seem to want to run on my new laptop, so does anyone know any good compilers? Preferably something small / possibly portable (wi ... |
Topic: Command works from DOS prompt but not from RunWait |
PurloinedHeart
Replies: 5
Views: 200
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 11:42 pm Subject: Command works from DOS prompt but not from RunWait |
@Bobo - Does not produce any output
FileAppend % "id3 -q ""%l;%a;%t;%g;%c"" ""*.mp3"" > temp.txt", Run.bat
run run.bat
Temp.txt >>
... |
Topic: Command works from DOS prompt but not from RunWait |
PurloinedHeart
Replies: 5
Views: 200
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 11:13 pm Subject: Command works from DOS prompt but not from RunWait |
Doesn't even run from a batch file, that's pretty weird I think
On a side note I just made a program that does this today
Tell me if it doesn't work out for you |
Topic: Fairly simple script using up 20-25% of my CPU cyles |
PurloinedHeart
Replies: 3
Views: 141
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 8:02 pm Subject: Fairly simple script using up 20-25% of my CPU cyles |
| Try using a SetTimer instead of a loop |
Topic: Japanese |
PurloinedHeart
Replies: 1
Views: 92
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 7:44 pm Subject: Japanese |
http://www.microsoft.com/downloads/details.aspx?FamilyID=CEED31CD-15A9-4B86-AFE5-E77A095599F3&displaylang=EN
You'd have serious problems with kanji otherwise |
Topic: folder monitor |
PurloinedHeart
Replies: 20
Views: 1719
|
Forum: Scripts & Functions Posted: Fri Sep 04, 2009 7:11 pm Subject: folder monitor |
+ some people like to use their own code, so they can tweak it / learn how to improve upon it instead of just using something they don't understand  |
Topic: What type of a loop |
PurloinedHeart
Replies: 3
Views: 124
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 7:06 pm Subject: What type of a loop |
know it has to read the file first and then copy each file line by line.
First get the directory alone, then store in variable 'Dir'
Loop Parse, Dir, `n
FileRead File_%A_Index%, %A_LoopFi ... |
Topic: Hot Keys - Newcomer Comment |
PurloinedHeart
Replies: 4
Views: 150
|
Forum: Ask for Help Posted: Thu Sep 03, 2009 11:09 pm Subject: Hot Keys - Newcomer Comment |
| You don't need the {}s |
Topic: GameGuard not letting me use hotkeys |
PurloinedHeart
Replies: 5
Views: 226
|
Forum: Ask for Help Posted: Thu Sep 03, 2009 5:03 pm Subject: GameGuard not letting me use hotkeys |
| http://docs.google.com/gview?a=v&q=cache:yjX1lTp06EIJ:blizzard.cs.uwaterloo.ca/keshav/home/Papers/data/07/paper-reading.pdf ? |
| |