| Author |
Message |
Topic: Tidying up the menu |
Serenity
Replies: 2
Views: 183
|
Forum: Ask for Help Posted: Sat Oct 06, 2007 12:50 am Subject: Tidying up the menu |
Use %A_Tab%, eg:
menu, tray, add, test1%a_tab%Ctrl+O, test
menu, tray, add, test2%a_tab%Ctrl+W, test |
Topic: Sorting |
Serenity
Replies: 6
Views: 228
|
Forum: Ask for Help Posted: Sat Oct 06, 2007 12:10 am Subject: Sorting |
Use the R option for Sort.
R: Sorts in reverse order (alphabetically or numerically depending on the other options).
Also, the you need to use a delimiter, eg:
line = %num_1%`n%num_2%`n%num_3 ... |
Topic: Tray menu item for opening script directory |
Serenity
Replies: 2
Views: 334
|
Forum: Wish List Posted: Sat Oct 06, 2007 12:07 am Subject: Tray menu item for opening script directory |
I'm not sure how others work but with long scripts I prefer to seperate them into different ahk files and use #include.
I add the following to all of my long scripts:
menu, tray, add, Open scri ... |
Topic: Animated signature - Do's & don'ts |
Serenity
Replies: 20
Views: 866
|
Forum: General Chat Posted: Sat Oct 06, 2007 12:00 am Subject: Animated signature - Do's & don'ts |
| Hi Daonlyfreez! :) |
Topic: Getting the path of a file opened in a program |
Serenity
Replies: 7
Views: 468
|
Forum: Ask for Help Posted: Fri Oct 05, 2007 6:48 am Subject: Getting the path of a file opened in a program |
| This would be great, although I wouldn't know where to start. :( When I press Ctrl+F9 all I get is the process name, "gbcamdump". |
Topic: Getting the path of a file opened in a program |
Serenity
Replies: 7
Views: 468
|
Forum: Ask for Help Posted: Fri Oct 05, 2007 12:34 am Subject: Getting the path of a file opened in a program |
| Thanks, although I'm not sure how I would use shimanov's script in this case - it seems to list processes like the task manager. |
Topic: Animated signature - Do's & don'ts |
Serenity
Replies: 20
Views: 866
|
Forum: General Chat Posted: Thu Oct 04, 2007 9:30 pm Subject: Animated signature - Do's & don'ts |
This used to be my signature when I started posting here:
http://serenity.pixelarmy.org/ava/amyhammerhit.gif |
Topic: Comprehensive list of Windows hotkeys. |
Serenity
Replies: 95
Views: 121602
|
Forum: Utilities & Resources Posted: Thu Oct 04, 2007 7:48 pm Subject: Comprehensive list of Windows hotkeys. |
| Hi Skan! It's nice to be back. :) |
Topic: Getting the path of a file opened in a program |
Serenity
Replies: 7
Views: 468
|
Forum: Ask for Help Posted: Thu Oct 04, 2007 7:14 pm Subject: Getting the path of a file opened in a program |
| I have a program which I'd like the title to show the file name of the open file. The program is a simple viewer for small images, so maybe it just reads the file into memory and closes it rather than ... |
Topic: Comprehensive list of Windows hotkeys. |
Serenity
Replies: 95
Views: 121602
|
Forum: Utilities & Resources Posted: Wed Oct 03, 2007 7:22 pm Subject: Comprehensive list of Windows hotkeys. |
Hotkeys for Windows help files (.chm):
http://support.microsoft.com/kb/255090/ |
Topic: Problem trying to create SciTE .ses files with AHk |
Serenity
Replies: 4
Views: 660
|
Forum: Ask for Help Posted: Sat Apr 15, 2006 4:38 pm Subject: Re: Problem trying to create SciTE .ses files with AHk |
To append in binary mode rather than text mode, prepend an asterisk to the filename.
Thanks Philippe, that fixed it. :) |
Topic: Problem trying to create SciTE .ses files with AHk |
Serenity
Replies: 4
Views: 660
|
Forum: Ask for Help Posted: Fri Apr 14, 2006 3:35 pm Subject: Problem trying to create SciTE .ses files with AHk |
I'm trying to write a script that creates SciTE session files (.ses). These files appear to be simple text files, that look like this in a text editor:
<pos=1> x:\hotkeys\main.ahk
<pos=1& ... |
Topic: Alternative way to load small icon from exe into listview? |
Serenity
Replies: 12
Views: 1250
|
Forum: Ask for Help Posted: Fri Apr 14, 2006 3:02 pm Subject: Alternative way to load small icon from exe into listview? |
Thanks Chris, the following works for me, but if I change the third parameter to IconIndex, the wrong icons are loaded for some programs. In either case, the icons are still appear degraded.
hIcon ... |
Topic: Need to kill a process by acting as SYSTEM |
Serenity
Replies: 1
Views: 744
|
Forum: Ask for Help Posted: Fri Apr 14, 2006 1:21 am Subject: Need to kill a process by acting as SYSTEM |
| Try [url=http://www.sysinternals.com/Utilities/PsKill.html]PSKill. |
Topic: Alternative way to load small icon from exe into listview? |
Serenity
Replies: 12
Views: 1250
|
Forum: Ask for Help Posted: Thu Apr 13, 2006 3:45 pm Subject: Alternative way to load small icon from exe into listview? |
I tried this instead and it returns 0xc0000005, so the function was called, but something is wrong:
VarSetCapacity(this, 260)
this := array4
hIcon := DllCall("Shell32\Ext ... |
| |