| Author |
Message |
Topic: Help encrypting password saved in text file. |
greynite
Replies: 6
Views: 417
|
Forum: Ask for Help Posted: Thu Mar 17, 2011 7:58 pm Subject: Help encrypting password saved in text file. |
Search for xxtea by Laszlo
Be sure to salt the stored password (put a few random characters at the front)
Cheers,
Shawn |
Topic: Reduce the background image for Win 7 / Vista task bar area |
greynite
Replies: 0
Views: 388
|
Forum: Scripts & Functions Posted: Tue Jul 20, 2010 7:04 pm Subject: Reduce the background image for Win 7 / Vista task bar area |
| The Windows 7 and Vista taskbar are both partially transparent, and as a result show the background image (aka glass effect). I saw a neat idea on the interwebs to have a script append a task-bar size ... |
Topic: Vista alt-tab preview size adjuster |
greynite
Replies: 3
Views: 1404
|
Forum: Scripts & Functions Posted: Tue Jul 20, 2010 6:56 pm Subject: Updated to add partially opaque taskbar |
| I've updated the code to add a partially opaque window underneath the Vista / Windows 7 taskbar. "Why?" you ask? To reduce the bleed from the background image into the taskbar. It's a cute i ... |
Topic: WindowPad - multi-monitor window-moving tool |
greynite
Replies: 319
Views: 158741
|
Forum: Scripts & Functions Posted: Thu Jul 08, 2010 6:29 pm Subject: Adding a tile action... |
First off, mad props to Lexikos -- I love this script!!!
I've added a "Tile" action (copying heavily from the existing code). One of the ways I work is having two+ "big as possible&q ... |
Topic: Window (or process) handling ? (too many) |
greynite
Replies: 1
Views: 354
|
Forum: Ask for Help Posted: Wed May 12, 2010 5:16 pm Subject: Window (or process) handling ? (too many) |
Use the process command to watch for existing FFmpeg & wait instead for it to close
Loop, 600
{
Process, WaitClose, FFmpeg.exe, 5
if !ErrorLevel ; The PID no longer exists.
break
... |
Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ... |
greynite
Replies: 1035
Views: 177345
|
Forum: Scripts & Functions Posted: Mon Mar 22, 2010 7:13 pm Subject: Re: Having trouble with call to user defined meta-function |
| The documentation says "When called, the parameter list contains a reference to the target object, followed by the parameters of the get, set or call operation."Check the context - that onl ... |
Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ... |
greynite
Replies: 1035
Views: 177345
|
Forum: Scripts & Functions Posted: Fri Mar 19, 2010 10:10 pm Subject: Having trouble with call to user defined meta-function |
I'm trying to call a user define function "newEntry" thusly:
t1.newEntry()newEntry doesn't take any parameters. This is by design (think of it as a constructor w/ no parameters).
... |
Topic: Remove Empty Directories |
greynite
Replies: 33
Views: 6836
|
Forum: Scripts & Functions Posted: Tue Mar 16, 2010 9:16 pm Subject: Remove Empty Directories |
Decarlo110 also posted a very long
Horray again for Laszlo! I had a ;Run, notepad,,, Npid
;WinActivate, ahk_pid %Npid%
;WinWaitActive, ahk_pid %Npid%
gLoopCount := 0
gLastFolder :=
... |
Topic: Folder Spy to Copy Files |
greynite
Replies: 11
Views: 1460
|
Forum: Ask for Help Posted: Wed Dec 23, 2009 7:23 pm Subject: Folder Spy to Copy Files |
To have the script "do" something, edit the section in this area:
If ( FileExist( FullPath ) = "" )
{
LV_Insert( 1, "", Time ... |
Topic: Almost Truely Random Function |
greynite
Replies: 1
Views: 599
|
Forum: Scripts & Functions Posted: Thu Aug 13, 2009 5:01 pm Subject: Almost Truely Random Function |
| Laszlo, AHK cryptography emeritis, has [url=http://www.autohotkey.com/forum/viewtopic.php?t=5681random]beat this [url=http://www.autohotkey.com/forum/viewtopic.php?t=3004 ... |
Topic: LVA: Color individual cells of a ListView, and more ... |
greynite
Replies: 33
Views: 7111
|
Forum: Scripts & Functions Posted: Mon Jul 27, 2009 1:04 am Subject: LVA: Color individual cells of a ListView, and more ... |
First off, thanks for the awesome library! Per-cell control is very cool.
That said, I've managed to find some issues, generally around locking the interface up (or at least seeming to). What info ... |
Topic: Script's/Process' Priority question |
greynite
Replies: 6
Views: 534
|
Forum: Ask for Help Posted: Mon Jul 27, 2009 12:54 am Subject: Re: Script's/Process' Priority question |
any help appreciated, i can post code if necessary but its really a more general questionOk, here goes with the general explanation, I hope this helps:
Your fundamental issue is one of having a cen ... |
Topic: Monster: evaluate math expressions in strings |
greynite
Replies: 80
Views: 16642
|
Forum: Scripts & Functions Posted: Thu Jul 16, 2009 2:34 am Subject: Monster: evaluate math expressions in strings |
Seriously, Laszlo, you should try getting into Assembly, this stuff you do with AHK only already is amazing.
He already has He's got more than a few posts of binary ASM code to use in-line in AH ... |
Topic: Monster: evaluate math expressions in strings |
greynite
Replies: 80
Views: 16642
|
Forum: Scripts & Functions Posted: Wed Jun 24, 2009 8:05 pm Subject: Monster: evaluate math expressions in strings |
| I chopped out the existing hotkeys, and am using the Eval() etc functions as a library. I then set up a hotkey for Cntl-C in my auto-start script, so that if hit twice quickly will Eval() the ClipBoar ... |
Topic: Run a program or switch to an already running instance |
greynite
Replies: 14
Views: 9251
|
Forum: Scripts & Functions Posted: Wed Apr 01, 2009 5:07 pm Subject: Run a program or switch to an already running instance |
SetTitleMatchMode, 2
is your bugaboo. It's set down in line 15 or so -- set it instead before your IfWinActive
Cheers,
Shawn |
| |