| Author |
Message |
Topic: TCP/IP evolved |
tinku99
Replies: 7
Views: 699
|
Forum: Ask for Help Posted: Mon Aug 04, 2008 11:59 pm Subject: closing sockets |
try this:
if DllCall("Ws2_32\WSAAsyncSelect", "UInt", socket, "UInt", ScriptMainWindowId, "UInt", NotificationMsg, "Int", FD_READ|FD_CONNECT)
{
... |
Topic: Compiling with GCC |
tinku99
Replies: 13
Views: 1096
|
Forum: Scripts & Functions Posted: Thu Jul 10, 2008 4:51 pm Subject: code coverage |
it would be nice to use code coverage with gcc.
there is no free msvc code coverage. |
Topic: How powerful is Autohotkey ? |
tinku99
Replies: 9
Views: 707
|
Forum: Ask for Help Posted: Mon Jul 07, 2008 6:16 pm Subject: large scripts |
My working script is over 4000 lines, using lots of #includes...
its no problem.
variables intended to be local becoming global is not an issue... you can just set them to null before using short ... |
Topic: automating cygwin |
tinku99
Replies: 0
Views: 118
|
Forum: General Chat Posted: Tue May 13, 2008 4:40 am Subject: automating cygwin |
| it would be nice to have the equivalent of the commands: run, runwait for cygwin. |
Topic: is it possible to add a menu item to a non ahk gui? |
tinku99
Replies: 4
Views: 203
|
Forum: Ask for Help Posted: Tue May 06, 2008 9:29 pm Subject: dock a hotkey window to another window |
i guess a way to do it is to create an ahk gui with a menu, and then dock it to firefox or whatever window...
using http://www.autohotkey.com/forum/viewtopic.php?t=19400dock
anoth ... |
Topic: is it possible to add a menu item to a non ahk gui? |
tinku99
Replies: 4
Views: 203
|
Forum: Ask for Help Posted: Tue May 06, 2008 9:22 pm Subject: is it possible to add a menu item to a non ahk gui? |
I want to add menu items to existing windows.
For example, add a ahk menu to firefox right after the tools menu and help menu...
Essentially, i want window specific gui buttons / other items.
I ... |
Topic: Screen Capture with Transparent Windows and Mouse Cursor |
tinku99
Replies: 58
Views: 13283
|
Forum: Scripts & Functions Posted: Mon Apr 07, 2008 3:50 pm Subject: multiple monitors |
I am trying to screen capture from a second monitor, but I am having problems. It works fine on the first monitor:
aTest := scan_x_start . ", " . scan_x_start . ", " . scan_ ... |
Topic: Catalogue of Scripts |
tinku99
Replies: 58
Views: 104583
|
Forum: Scripts & Functions Posted: Mon Mar 03, 2008 8:18 am Subject: sortable forum |
| If the forum search results were sortable by number of replies, that would also help people find the more useful scripts. |
Topic: make forum topics sortable by number of replies |
tinku99
Replies: 0
Views: 144
|
Forum: Wish List Posted: Sat Mar 01, 2008 1:03 pm Subject: make forum topics sortable by number of replies |
This would make it easier for newbiews and everyone to mine the forums for useful ideas and scripts...
is there a free forum software alternative to the one autoit forums use ? |
Topic: How to: Run Dynamic Script... Through a Pipe! |
tinku99
Replies: 32
Views: 4205
|
Forum: Scripts & Functions Posted: Sat Feb 09, 2008 6:06 am Subject: question |
1. lexiKos, which ram disk do you use?
2. i want to use named pipes to communicated between java and tesseract to speed up an ocr script i wrote...
i want to use java.awt.robot to capture an ... |
Topic: pixelsearch not this color |
tinku99
Replies: 3
Views: 463
|
Forum: Wish List Posted: Mon Dec 31, 2007 3:50 am Subject: solved |
I figured out a better way using the current function
this will first search for a darker color than then a brighter color around the current mouse position and then move to both one by one.
F6 ... |
Topic: pixelsearch not this color |
tinku99
Replies: 3
Views: 463
|
Forum: Wish List Posted: Mon Dec 31, 2007 3:26 am Subject: pixelsearch not this color |
I was trying to make an edge detection program which i did as below.
But I wonder if there is a more efficient way to search until you get to a different color then you are on, perhaps to detect chan ... |
Topic: repl read eval print loop |
tinku99
Replies: 2
Views: 390
|
Forum: Wish List Posted: Mon Dec 31, 2007 2:55 am Subject: read eval print loop |
http://en.wikipedia.org/wiki/REPL
its basically an interactive shell like what i found on the forums recently:
http://www.autohotkey.com/forum/viewtopic.php?t=3332
It would be nic ... |
Topic: Execute AHK code dynamically! |
tinku99
Replies: 40
Views: 12516
|
Forum: Scripts & Functions Posted: Sun Dec 30, 2007 11:05 pm Subject: dynamic variable names |
Actually what i was trying to do was easy, sorry.
inputbox, x
%x% = 5
execute("MsgBox," x "=" %x%)
How can I get the gui-wrapper equivalient of
execute("Ms ... |
Topic: repl read eval print loop |
tinku99
Replies: 2
Views: 390
|
Forum: Wish List Posted: Thu Oct 25, 2007 3:47 am Subject: repl read eval print loop |
| should autohotkey have one? |
| |