| Author |
Message |
Topic: replace symbol in text with <li> in front and </li& |
deleyd
Replies: 8
Views: 283
|
Forum: Ask for Help Posted: Thu Apr 28, 2011 4:51 pm Subject: replace symbol in text with <li> in front and </li& |
There's a free program (written in AutoHotkey)
Record and playback keyboard and mouse actions.
http://www.donationcoder.com/Software/Skrommel/index.html#DoOver |
Topic: Return Text to a program without emulating keypresses? |
deleyd
Replies: 2
Views: 95
|
Forum: Ask for Help Posted: Thu Apr 28, 2011 4:18 pm Subject: Return Text to a program without emulating keypresses? |
| Would a CTRL-V for paste work? |
Topic: Tutorial: How to compile .AHK files include your own icons |
deleyd
Replies: 1
Views: 950
|
Forum: Scripts & Functions Posted: Wed Mar 30, 2011 6:11 pm Subject: Tutorial: How to compile .AHK files include your own icons |
I recently released my Update (March 2011): The new AutoHotkey requires an addition to the code to set the tray icon:;set tray icon
if A_IsCompiled
Menu, Tray, Icon, %A_ScriptFullPath%, -159
... |
Topic: BatteryDeley: Low laptop battery alert |
deleyd
Replies: 13
Views: 8600
|
Forum: Scripts & Functions Posted: Wed Mar 30, 2011 4:50 pm Subject: BatteryDeley: Low laptop battery alert |
| New to version 1.4:(03/30/2011):Added ability to specify charging notifications at any percent you like instead of just notifying you only when charge reaches 100%. e.g. Now you can set it to notify y ... |
Topic: FileAppend help. Appending strange characters. |
deleyd
Replies: 3
Views: 361
|
Forum: Ask for Help Posted: Sat Mar 05, 2011 5:07 pm Subject: FileAppend help. Appending strange characters. |
| The Unicode version of AutoHotkey will append Unicode text to a Unicode file. (That's the version I have installed and tested on.) Perhaps you could have AutoHotkey create the file first, then let wmi ... |
Topic: FileAppend help. Appending strange characters. |
deleyd
Replies: 3
Views: 361
|
Forum: Ask for Help Posted: Fri Mar 04, 2011 5:51 pm Subject: FileAppend help. Appending strange characters. |
My guess is the file you are appending to is a Unicode (UTF16) file but doesn't contain the Byte Order Mark (FF FE) at the very beginning to identify it as a Unicode (UTF16) file.
So AutoHotkey thi ... |
Topic: How do I release COM object? |
deleyd
Replies: 1
Views: 105
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 6:44 pm Subject: How do I release COM object? |
| I create the iTunes COM object with iTunesApp := ComObjCreate("iTunes.Application")then later I want to release it so I can close iTunes but still have the AutoHotkey GUI window ... |
Topic: Display nth line in a ListView |
deleyd
Replies: 5
Views: 184
|
Forum: Ask for Help Posted: Sun Jan 09, 2011 12:06 am Subject: Display nth line in a ListView |
OK got it. Thanks for getting me close enough we found it.
LV_Modify(7, "Select")
LV_Modify(7, "Vis") |
Topic: Display nth line in a ListView |
deleyd
Replies: 5
Views: 184
|
Forum: Ask for Help Posted: Sun Jan 09, 2011 12:03 am Subject: Display nth line in a ListView |
OK getting closer, put "focus" in quotes. Now row has dotted line around it, but isn't scrolled into view.
LV_Modify(7, "Focus") |
Topic: Display nth line in a ListView |
deleyd
Replies: 5
Views: 184
|
Forum: Ask for Help Posted: Sun Jan 09, 2011 12:01 am Subject: Display nth line in a ListView |
| Hmm, doesn't seem to work. |
Topic: Using MediaInfo.dll to get iTunes info |
deleyd
Replies: 0
Views: 634
|
Forum: Scripts & Functions Posted: Sat Jan 08, 2011 11:35 pm Subject: Using MediaInfo.dll to get iTunes info |
I wanted to get the iTunes info from my iTunes files and found that the free program MediaInfo can do it. I wrote this sample test script.
1. Download and install free MediaInfo program from MediaI ... |
Topic: Display nth line in a ListView |
deleyd
Replies: 5
Views: 184
|
Forum: Ask for Help Posted: Sat Jan 08, 2011 11:07 pm Subject: Display nth line in a ListView |
I have a populated ListView, and I would now like to display, say line 7. That is, scroll so line 7 is in view and highlighted. How would I do that?
Gui, Add, ListView, r5 vMyListView, File
LV_Add ... |
Topic: Resizing GUI controls |
deleyd
Replies: 1
Views: 142
|
Forum: Ask for Help Posted: Sat Jan 08, 2011 2:06 am Subject: Resizing GUI controls |
How can I make these two controls user adjustable up/down?
http://members.cox.net/deleyd2/misc/a3a.jpg
Gui, Add, Edit, w220 r7 ReadOnly hwndhMyEdit vMyEdit border
Gui, Add, ListView, r7 wp vMy ... |
Topic: Search "#" in the text and cilck on the letter # |
deleyd
Replies: 1
Views: 212
|
Forum: Ask for Help Posted: Fri May 28, 2010 9:35 pm Subject: Search "#" in the text and cilck on the letter # |
There's a tutorial showing various methods:
Example of Navigating a Website
http://www.autohotkey.com/forum/topic42488.html
also:
AutoHotkey Expression Examples: "" %% () and all t ... |
Topic: BatteryDeley: Low laptop battery alert |
deleyd
Replies: 13
Views: 8600
|
Forum: Scripts & Functions Posted: Fri Jan 01, 2010 10:26 pm Subject: BatteryDeley: Low laptop battery alert |
| OK got that download problem fixed and released version 1.2 with a minor bugfix. |
| |