| Author |
Message |
Topic: Are you: Just Another AutoHotkey Hacker? |
DevX
Replies: 31
Views: 2124
|
Forum: Scripts & Functions Posted: Tue Aug 02, 2011 9:16 pm Subject: Are you: Just Another AutoHotkey Hacker? |
UrlDownloadToFile, http://www.dev-x.org/jaah.gif, %A_Temp%\jaah.gif
Gui, -Caption +ToolWindow
Gui, Add, Picture,, %A_Temp%\jaah.gif
Gui, Show
|
Topic: simple regex question |
DevX
Replies: 2
Views: 97
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 4:20 pm Subject: simple regex question |
x := "file1-file2-file3.1.mml"
RegExMatch(x, ".*?\.", y)
StringReplace, y, y, .
MsgBox % y |
Topic: 3 Noob Questions (Win Shortcuts, SendInput etc..) |
DevX
Replies: 2
Views: 1068
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 4:15 pm Subject: Re: 3 Noob Questions (Win Shortcuts, SendInput etc..) |
1-) How do we disable Windows shortcuts to prevent conflicts?
For example; I want CTRL+W to do certain action, without causing a mozilla firefox tab to be closed. =) How do we do that? (I remember s ... |
Topic: COM Reloading over and over, sometimes fork bombing |
DevX
Replies: 3
Views: 85
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 4:09 pm Subject: COM Reloading over and over, sometimes fork bombing |
How do i delete this post, i do not see an option for it?
I finally found the problem, i edited one of my COM.ahk files a couple years ago and it was causing this. (bad idea) =\
Sorry about that ... |
Topic: COM Reloading over and over, sometimes fork bombing |
DevX
Replies: 3
Views: 85
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 3:33 pm Subject: COM Reloading over and over, sometimes fork bombing |
COM reloads over and over when it seems to have an error?
It seems if you do COM_Invoke on something that doesnt work, it reloads itself. Sometimes fork bombing the entire machine.
This line see ... |
Topic: How to hide/protect folders/files or programs? [SOLVED] |
DevX
Replies: 16
Views: 770
|
Forum: Ask for Help Posted: Tue Sep 28, 2010 8:45 pm Subject: How to hide/protect folders/files or programs? [SOLVED] |
Couldn't help but reply to tanks funny response =\
He has no security tab because hes in XP home, which disables it. Safe mode allows it, it just trying to get people to use XP Pro. Same thing with ... |
Topic: wish there were two versions of the help file |
DevX
Replies: 26
Views: 827
|
Forum: General Chat Posted: Tue Sep 21, 2010 3:28 pm Subject: wish there were two versions of the help file |
| Best advice I can give is to have a task that you want to complete. Don't ask yourself if its possible, or if you know how to do it already. Just make sure its something simple. Then go at it one comm ... |
Topic: Pass parameters to AutoHotkey script |
DevX
Replies: 7
Views: 1311
|
Forum: Ask for Help Posted: Mon Jun 28, 2010 8:36 pm Subject: Pass parameters to AutoHotkey script |
Medium difficulty task.
Either have to use the clipboard to transfer the data, or use window messages.
I believe window messages would be the best solution, as it will not interrupt anything of ... |
Topic: Efficiency of this script |
DevX
Replies: 0
Views: 370
|
Forum: Ask for Help Posted: Mon Jun 28, 2010 8:25 pm Subject: Efficiency of this script |
Hey guys, just checking to see if this is the most efficient way to do this.
I want to perform an action when a window pops up (save for web in photoshop).
Then check to see if convert to sRGB i ... |
Topic: IF Color |
DevX
Replies: 12
Views: 633
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 2:43 pm Subject: IF Color |
ZyanWu's code works fine for me. Mine returns true, while yours returns false hahaha. My color changed because of desktop
1::
CoordMode, Pixel
PixelGetColor, color, 1, 1
MsgBox % color
... |
Topic: How to hide/protect folders/files or programs? [SOLVED] |
DevX
Replies: 16
Views: 770
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 2:05 pm Subject: How to hide/protect folders/files or programs? [SOLVED] |
Either encrypt the whole thing, or take it with you.
All other defences are useless, as all one needs to do is plug in a usb stick, and they have access to everything.
It all depends on how inex ... |
Topic: Conditionally remap TAB but retain default ALT+TAB |
DevX
Replies: 2
Views: 255
|
Forum: Ask for Help Posted: Fri Jan 29, 2010 10:06 pm Subject: Conditionally remap TAB but retain default ALT+TAB |
You'll have to do it like this
#IfWinActive, ahk_class SALFRAME
Tab::
GetKeyState, CtrlIsDown, Ctrl
GetKeyState, AltIsDown, Alt
GetKeyState, ShiftIsDown, Shift
if ( (CtrlIs ... |
Topic: Is there a ImageSearch without a file? |
DevX
Replies: 3
Views: 332
|
Forum: Ask for Help Posted: Fri Jan 29, 2010 7:43 pm Subject: Is there a ImageSearch without a file? |
Awesome, thanks for the replies.
Got it with the reply leef_me sent. I put the Hex into the ahk file, write to the windows users temp folder, read it, use it, then delete it. ( actually it wont del ... |
Topic: Is there a ImageSearch without a file? |
DevX
Replies: 3
Views: 332
|
Forum: Ask for Help Posted: Wed Jan 27, 2010 8:45 pm Subject: Is there a ImageSearch without a file? |
I would like to distribute an AHK file without compiling, and without any other files to go along with it.
But my script uses image search, which requires a file.
Is there any way to, say, take ... |
Topic: Mouse Numpad Grid |
DevX
Replies: 2
Views: 1131
|
Forum: Scripts & Functions Posted: Mon Dec 28, 2009 10:17 pm Subject: Mouse Numpad Grid |
Well I made a prototype but I don't really like it, maybe someone else will.
It's a mouse clicker via numpad, with graphical grid drawn on screen to see where your going. Toy around and you'll see ... |
| |