| Author |
Message |
Topic: LCD Screen Sync |
Freighter
Replies: 0
Views: 689
|
Forum: Scripts & Functions Posted: Thu Jan 01, 2009 12:44 am Subject: LCD Screen Sync |
Original idea was from the Screen Check program
since I don't have nor care to download it again I made this quick script which does the same thing
; Author: Freighter
#NoEnv ; Recom ... |
Topic: Keywait problems |
Freighter
Replies: 2
Views: 486
|
Forum: Ask for Help Posted: Tue Apr 08, 2008 8:06 pm Subject: Keywait problems |
end::
click 947,352
KeyWait, enter, D
click 356,532
KeyWait, enter
KeyWait, enter, D
click 947,352
return
KeyWait, enter, D <- waits for it to be pressed
KeyWait, enter <- w ... |
Topic: feature or bug |
Freighter
Replies: 2
Views: 528
|
Forum: Ask for Help Posted: Fri Feb 29, 2008 4:22 am Subject: feature or bug |
| thanks for the info |
Topic: feature or bug |
Freighter
Replies: 2
Views: 528
|
Forum: Ask for Help Posted: Sun Feb 24, 2008 5:32 am Subject: feature or bug |
| this script works fine but it seems like it wouldn't considering the function POVChange doesn't have a global keyword saying anything about KeyToHoldDown1 or 2, is the function supposed to have access ... |
Topic: PSPad def file "fix" |
Freighter
Replies: 1
Views: 530
|
Forum: Ask for Help Posted: Sun Dec 02, 2007 1:21 am Subject: PSPad def file "fix" |
I was looking threw autohotkeys def file for PSPad to see why there was weird blanks where there should have been variables when you auto complete (ctrl-space)
Example:
Type in loop (then ctrl-spa ... |
Topic: Treeview retrieval crashing script |
Freighter
Replies: 3
Views: 735
|
Forum: Ask for Help Posted: Fri Nov 23, 2007 10:05 am Subject: Treeview retrieval crashing script |
Yeah I didnt get any message at all, it was just dropping back to the folder
Wow i totally missed the TID thing
Thank you Chris and lexikos
getPath(ItemID){
TV_GetText(ItemTex ... |
Topic: Treeview retrieval crashing script |
Freighter
Replies: 3
Views: 735
|
Forum: Ask for Help Posted: Thu Nov 22, 2007 6:29 am Subject: Treeview retrieval crashing script |
Simply put this script loops directories and adds them to a treeview.
The purpose (when finished) will calculate the size of all the folders that are checked and save the checked list for later use ... |
Topic: insible background text question |
Freighter
Replies: 1
Views: 475
|
Forum: Ask for Help Posted: Sat Sep 08, 2007 9:06 am Subject: insible background text question |
http://www.autohotkey.com/docs/commands/WinSet.htm
look for
WinSet, TransColor, Color
in bold more then 1/2 way down |
Topic: Send command for the "Context" key? |
Freighter
Replies: 2
Views: 507
|
Forum: Ask for Help Posted: Sat Sep 08, 2007 8:58 am Subject: Send command for the "Context" key? |
| Send, {AppsKey} |
Topic: +AlwaysOnTop doesnt work :( |
Freighter
Replies: 11
Views: 1036
|
Forum: Ask for Help Posted: Sat Sep 08, 2007 8:52 am Subject: +AlwaysOnTop doesnt work :( |
WinGet, ExStyle, ExStyle, Window Title or ahk_id %winhwnd%
if !(ExStyle & 0x8) ; 0x8 is WS_EX_TOPMOST. "&" is bitwise comparision
gui, 1:+AlwaysOnTop
return |
Topic: +AlwaysOnTop doesnt work :( |
Freighter
Replies: 11
Views: 1036
|
Forum: Ask for Help Posted: Sat Sep 08, 2007 8:32 am Subject: +AlwaysOnTop doesnt work :( |
you could also make it reAlwaysOnTop it each time (before) you show the gui
Note:
you dont have to -Caption +ToolWindow again since they seem to be working fine
ps
if i missed the point sorry |
Topic: logical problem with a menu |
Freighter
Replies: 5
Views: 626
|
Forum: Ask for Help Posted: Sat Sep 08, 2007 7:17 am Subject: logical problem with a menu |
lets see
you need AltSubmit in the listbox options so the variable will be the row # instead of the textGui, add, listbox, vChoice AltSubmit, 1. first choice|2. second choice|3. third choice
the if ... |
Topic: Comprehensive list of Windows hotkeys. |
Freighter
Replies: 139
Views: 445784
|
Forum: Utilities & Resources Posted: Thu Jun 14, 2007 2:46 am Subject: Comprehensive list of Windows hotkeys. |
Not sure if it was mentioned.
Not really a shortcut but useful when you just need your computer to startup with less running.
After logging in and it says "Loading your personal Settings" ... |
Topic: ControlGet fails to work with ahk_id %control_ID% |
Freighter
Replies: 6
Views: 2863
|
Forum: Bug Reports Posted: Sun Apr 08, 2007 9:46 am Subject: ControlGet fails to work with ahk_id %control_ID% |
thats a first
A similar problem was fixed in the post http://www.autohotkey.com/forum/viewtopic.php?t=12619
thats why I tried the ControlGetPos to see if it wasnt fixed yet, but it worked f ... |
Topic: ControlGet fails to work with ahk_id %control_ID% |
Freighter
Replies: 6
Views: 2863
|
Forum: Bug Reports Posted: Sat Apr 07, 2007 1:00 am Subject: ControlGet fails to work with ahk_id %control_ID% |
Process, Exist, WolfRat.exe
if !errorlevel
exitapp
else
{
WRPID := errorlevel
errorlevel = 0
}
ControlGet, ChatBox, Hwnd,,SysListView321, ahk_pid%WRPID%, ahk_pid%WRPID% ... |
| |