| Author |
Message |
Topic: Scan Picture and draw in Game |
Scape
Replies: 8
Views: 673
|
Forum: Ask for Help Posted: Tue Mar 10, 2009 5:23 pm Subject: Scan Picture and draw in Game |
| what you have will work, if the part of the screen is stationary then you don't have to worry about the time (we're still talking in the order of <1sec; but when your monitor refreshes @60Hz 1 seco ... |
Topic: Newbie Help Request: Action Based on Cursor Position |
Scape
Replies: 6
Views: 449
|
Forum: Ask for Help Posted: Tue Mar 10, 2009 5:09 pm Subject: Newbie Help Request: Action Based on Cursor Position |
Seems to me your original code could have worked if you'd just entered some conditioning:
IfWinActive, NoteTab Light
If Tabs = TDocTabControl1
{
WheelUp::
{
M ... |
Topic: Scan Picture and draw in Game |
Scape
Replies: 8
Views: 673
|
Forum: Ask for Help Posted: Tue Mar 10, 2009 4:43 pm Subject: Scan Picture and draw in Game |
| getpixelcolor will work; but will be horribly slow. If it's a moving image I'd be doubtful such a loop would be able to capture the image you want since the screen would update before you caputre all ... |
Topic: Sending commands to DARKFALL when window isnt active |
Scape
Replies: 20
Views: 6635
|
Forum: Ask for Help Posted: Tue Mar 10, 2009 4:17 pm Subject: Sending commands to DARKFALL when window isnt active |
Have you tried sendplay?
http://www.autohotkey.com/docs/commands/Send.htm#SendPlayDetail
I've had issues before with sending commands to minimized windows b/c they weren't recognized as active if ... |
Topic: Pixel Matrix Search |
Scape
Replies: 29
Views: 10842
|
Forum: Scripts & Functions Posted: Wed Mar 04, 2009 9:03 pm Subject: Pixel Matrix Search |
| The way the example is written, yes you put the mouse at the upper left corner of the 3x3 pixel matrix you want to "grab" (this can be modified of course; only a simple example is provided b ... |
Topic: Color Zoomer/Picker & Screen Magnifier |
Scape
Replies: 72
Views: 28948
|
Forum: Scripts & Functions Posted: Wed Mar 04, 2009 7:37 pm Subject: Color Zoomer/Picker & Screen Magnifier |
| Useful script. One issue I found is that grey colors created a balloon window that was grey on grey. While in theory making the baloon the selected color & the inverse seems good there are cases ... |
Topic: Pixel Matrix Search |
Scape
Replies: 29
Views: 10842
|
Forum: Scripts & Functions Posted: Wed Mar 04, 2009 3:29 pm Subject: Optimization |
Great function, thanks for posting.
I'd identified an error (optimization really) that was causing some issues when the first pixel was not unique on the screen. After the 2 for loops that check t ... |
| |