| Author |
Message |
Topic: IF Color |
DevX
Replies: 12
Views: 205
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 3: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: 15
Views: 303
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 3: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: 106
|
Forum: Ask for Help Posted: Fri Jan 29, 2010 11: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: 128
|
Forum: Ask for Help Posted: Fri Jan 29, 2010 8: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: 128
|
Forum: Ask for Help Posted: Wed Jan 27, 2010 9: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: 1
Views: 293
|
Forum: Scripts & Functions Posted: Mon Dec 28, 2009 11: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 ... |
Topic: variable doesn't count |
DevX
Replies: 2
Views: 86
|
Forum: Ask for Help Posted: Tue Dec 15, 2009 9:38 pm Subject: variable doesn't count |
Use := not =
and no % for outputvar
gemiddeldetemp := Outputvar + 1
Msgbox, %gemiddeldetemp% |
Topic: Curious, which of these two code's is more efficient in AHK |
DevX
Replies: 1
Views: 109
|
Forum: Ask for Help Posted: Tue Dec 15, 2009 7:41 pm Subject: Curious, which of these two code's is more efficient in AHK |
Mouse mover via numpad script, two ways to do it,
First is a hotkey for each Numpad and numpad with modifier
#Numpad1::MouseMove -20, 20, 0, R
#Numpad2::MouseMove 0, 20, 0, R
... |
Topic: Shutterfly Image Stealer |
DevX
Replies: 4
Views: 2015
|
Forum: Scripts & Functions Posted: Thu Sep 17, 2009 2:42 pm Subject: Shutterfly Image Stealer |
Sorry, long wait before reply lol.
The 3d110 is the size they use to get their images. Of course it can change if they want it to. If you look in fiddler, you'll see the image name attributes on ea ... |
Topic: Shutterfly Image Stealer |
DevX
Replies: 4
Views: 2015
|
Forum: Scripts & Functions Posted: Wed Aug 19, 2009 3:20 pm Subject: Shutterfly Image Stealer |
Hey guys,
Had to get an image album off this crappy website for some reason, but they don't let you download, you have to order prints from them. At least thats what they think.
Here is code to ... |
Topic: RegExMatch - Between http and ' or " |
DevX
Replies: 3
Views: 144
|
Forum: Ask for Help Posted: Tue Jul 07, 2009 5:56 pm Subject: RegExMatch - Between http and ' or " |
http[^"|']*
Got it =D
Thx for the help |
Topic: Capture text from Flash element in real-time. |
DevX
Replies: 6
Views: 417
|
Forum: Ask for Help Posted: Tue Jul 07, 2009 5:44 pm Subject: Capture text from Flash element in real-time. |
| if it were easy, google would be indexing flash content, and every website on earth would be flash already =\ |
Topic: New Clipboard Challenge |
DevX
Replies: 7
Views: 184
|
Forum: Ask for Help Posted: Tue Jul 07, 2009 5:36 pm Subject: New Clipboard Challenge |
| This is one of the main uses I have for AHK. You can do anything with ahk that a normal user can do. For mangly CMS systems, take a screenshot, cut up some images. and do image search's to find coordi ... |
Topic: New Clipboard Challenge |
DevX
Replies: 7
Views: 184
|
Forum: Ask for Help Posted: Tue Jul 07, 2009 5:35 pm Subject: New Clipboard Challenge |
F1::var := Clipboard
F2::Send, %var%
Not as fast as a paste, but it works |
Topic: RegExMatch - Between http and ' or " |
DevX
Replies: 3
Views: 144
|
Forum: Ask for Help Posted: Tue Jul 07, 2009 4:57 pm Subject: RegExMatch - Between http and ' or " |
I dont even know how thats working... lol
It works in your example, but blows up in mine...
;Test := "<a href=""http://www.hsn.com/moonlight-festival-blogs_g-125_xg.asp ... |
| |