| Author |
Message |
Topic: List Box Word Wrap |
aaron
Replies: 1
Views: 558
|
Forum: Ask for Help Posted: Thu Aug 16, 2007 2:21 pm Subject: List Box Word Wrap |
| Well, from my research, it appears that a solution for word wrapping in a ListBox item is quite difficult at best. I think I will try using a separate edit/text control to show the full text of the L ... |
Topic: List Box Word Wrap |
aaron
Replies: 1
Views: 558
|
Forum: Ask for Help Posted: Wed Aug 15, 2007 6:18 pm Subject: List Box Word Wrap |
| I need to populate a List Box with strings that may not fit the visible width of the List Box. Is there a way to use word wrap on individual List Box items? If so, please let me know how this can be ... |
Topic: Compile AutoHotkey using Visual C++ 2005 Express Edition |
aaron
Replies: 90
Views: 36185
|
Forum: Scripts & Functions Posted: Thu Jul 12, 2007 7:29 pm Subject: Compile AutoHotkey using Visual C++ 2005 Express Edition |
corrupt-
Thank you for this information and providing the updated files. I successfully compiled version 1.047. I had one error, presumably because I had other older/beta versions of Visual C++ o ... |
Topic: [module] Dock 1.0 (testing 2.0 b3) |
aaron
Replies: 350
Views: 48911
|
Forum: Scripts & Functions Posted: Fri Jun 01, 2007 5:31 pm Subject: [module] Dock 1.0 (testing 2.0 b3) |
| When the Dock host was minimized and the Docked window did not move, hX, hY, hW, and hH were always empty. On other occasions, however, there is a value in those variables when the window is minimiz ... |
Topic: [module] Dock 1.0 (testing 2.0 b3) |
aaron
Replies: 350
Views: 48911
|
Forum: Scripts & Functions Posted: Fri Jun 01, 2007 4:20 pm Subject: [module] Dock 1.0 (testing 2.0 b3) |
Great script everyone- I have been using it often.
There is an inconsistancy that occurs with the docked window when the dock host is minimized. Sometimes the window will go to the bottom left of th ... |
Topic: Get a Control Name by coordinates |
aaron
Replies: 2
Views: 1047
|
Forum: Ask for Help Posted: Wed Dec 13, 2006 5:30 pm Subject: Get a Control Name by coordinates |
| Thank you for the help! |
Topic: Get a Control Name by coordinates |
aaron
Replies: 2
Views: 1047
|
Forum: Ask for Help Posted: Tue Dec 12, 2006 8:30 pm Subject: Get a Control Name by coordinates |
| I need to pull information frequently from a window's edit controls, but the control names are not consistent with each instance of the window. However, the location of the control is constant. I wa ... |
Topic: Executing .MSI packages with RunAS & RunWait |
aaron
Replies: 11
Views: 5085
|
Forum: Ask for Help Posted: Sat Nov 12, 2005 3:08 am Subject: Executing .MSI packages with RunAS & RunWait |
| Try using the /env switch on the windows RunAs command. That has worked for me in the past. |
Topic: Toogle script? |
aaron
Replies: 8
Views: 742
|
Forum: Ask for Help Posted: Mon Oct 31, 2005 3:03 am Subject: Toogle script? |
| I don't think there is an explicit toggle function. Making a button do 2 different actions is relatively simple. Here is an example of what I think you're looking for. You can change the if statemen ... |
Topic: Need new IE window from run command |
aaron
Replies: 4
Views: 859
|
Forum: Ask for Help Posted: Sun Oct 30, 2005 8:20 pm Subject: Need new IE window from run command |
To open a new Internet Explorer thread, use iexplore.exe before the URL.
Run, iexplore.exe http://www.google.com
Run, iexplore.exe http://www.yahoo.com |
Topic: bind 1 key to 2 actions |
aaron
Replies: 29
Views: 2072
|
Forum: Ask for Help Posted: Thu Oct 27, 2005 9:37 pm Subject: bind 1 key to 2 actions |
Try this in combination w/ the above suggestions.
To hold a key, you can use {(key) down} and {(key) up}
Send, {w}
Sleep, 500
Send, {w down}
Send, {r down}
Sleep, ... |
Topic: CLOSING AHK SCRIPTS |
aaron
Replies: 6
Views: 609
|
Forum: Ask for Help Posted: Tue Oct 25, 2005 11:18 pm Subject: CLOSING AHK SCRIPTS |
On the above script..
It won't close compiled scripts.
It will close itself, unless you use Process, Exist to find the current PID, then check for that in the read loop.
If anyone sees a prob ... |
Topic: CLOSING AHK SCRIPTS |
aaron
Replies: 6
Views: 609
|
Forum: Ask for Help Posted: Tue Oct 25, 2005 10:24 pm Subject: CLOSING AHK SCRIPTS |
Here is a script that will close all running AutoHotkey scripts in XP.
IfExist, c:\existing.txt
FileDelete, c:\existing.txt
RunWait, %comspec% /c tasklist /fo csv /fi "imagename eq A ... |
| |