| Author |
Message |
Topic: Context sensitive hotkey only if ClassNN is not detected |
HugoV
Replies: 5
Views: 58
|
Forum: Ask for Help Posted: Tue Aug 19, 2008 4:56 pm Subject: Context sensitive hotkey only if ClassNN is not detected |
If you had a look at the commands list http://www.autohotkey.com/docs/commands.htm (obiviously Mouse related) you would have seen:
MouseGetPos: Retrieves the current position of the mouse cursor, and ... |
Topic: Context sensitive hotkey only if ClassNN is not detected |
HugoV
Replies: 5
Views: 58
|
Forum: Ask for Help Posted: Tue Aug 19, 2008 4:36 pm Subject: Context sensitive hotkey only if ClassNN is not detected |
| Bobo beat me to it, but if you had done a simple search you would have found it yourself. RTFM & Search! |
Topic: Open two (or more) websites with a hotkey |
HugoV
Replies: 6
Views: 118
|
Forum: Ask for Help Posted: Tue Aug 19, 2008 11:39 am Subject: Open two (or more) websites with a hotkey |
From here:
Incorrect url, should be http://www.autohotkey.com/forum/viewtopic.php?t=8803 |
Topic: retrieve selected file / launch code when file is selected |
HugoV
Replies: 2
Views: 37
|
Forum: Ask for Help Posted: Tue Aug 19, 2008 11:38 am Subject: retrieve selected file / launch code when file is selected |
| RTFM http://www.autohotkey.com/docs/misc/Clipboard.htm#CopiedFiles and search the forum, asked a few times already. |
Topic: Search As You Type |
HugoV
Replies: 2
Views: 52
|
Forum: Ask for Help Posted: Fri Aug 15, 2008 9:54 pm Subject: Search As You Type |
| Search for Isense, incremental search and a few other on the forum (ndroid searches in a listview) |
Topic: Display Msgbox at certain position? |
HugoV
Replies: 3
Views: 70
|
Forum: Ask for Help Posted: Fri Aug 15, 2008 6:03 pm Subject: Display Msgbox at certain position? |
Also search the forum before asking questions in case it has been asked before:
http://www.autohotkey.com/forum/topic33901.htmlmsgbox+position
http://www.autohotkey.com/forum/topic290 ... |
Topic: key count and different function for one key |
HugoV
Replies: 4
Views: 71
|
Forum: Ask for Help Posted: Fri Aug 15, 2008 5:09 pm Subject: key count and different function for one key |
For inspiration have a look here:
http://www.autohotkey.com/forum/topic32443.html |
Topic: how to make "AutoScriptWriter" record my buttons r |
HugoV
Replies: 5
Views: 142
|
Forum: Ask for Help Posted: Fri Aug 15, 2008 5:02 pm Subject: how to make "AutoScriptWriter" record my buttons r |
a) write your own script (easy) or
b) edit the recorded the script to do what you want (difficult) |
Topic: Global string deletion |
HugoV
Replies: 15
Views: 213
|
Forum: Ask for Help Posted: Fri Aug 15, 2008 5:00 pm Subject: Re: Global string deletion |
| Perhaps a Function (or Gosub?) could be set, to reduce again the syntax that I am using to just a single word and line, with no need of a return then. That works for hotkeys not for abbreviations, add ... |
Topic: Embedded Windows Scripting (VBScript & JScript) and COM |
HugoV
Replies: 105
Views: 13951
|
Forum: Scripts & Functions Posted: Fri Aug 15, 2008 4:25 pm Subject: Re: run ahk from Javascript |
3. AHK exe from webpage
I can run direct the AHK exe from webpage?
fyi:
AutoHotkey as CGI handler for LightTPD web server on Windows:
http://www.autohotkey.com/forum/topic27607.html |
Topic: Global string deletion |
HugoV
Replies: 15
Views: 213
|
Forum: Ask for Help Posted: Fri Aug 15, 2008 4:16 pm Subject: Global string deletion |
mmm I haven't read the posts to closely but::btw::
SendPaste("By the way") ; call function with text to paste in qoutes
Return
SendPaste(Text)
{
C ... |
Topic: Library for Text file manipulation |
HugoV
Replies: 20
Views: 1541
|
Forum: Scripts & Functions Posted: Wed Aug 13, 2008 8:27 am Subject: Library for Text file manipulation |
| The TXT library works with files that already exist, you can not use it to create new files from scratch. So it should work if you start with a big empty file, but like I said in response to your othe ... |
Topic: Easy CSV to Flat File conversion question...for geniuses. |
HugoV
Replies: 9
Views: 171
|
Forum: Ask for Help Posted: Wed Aug 13, 2008 8:24 am Subject: Easy CSV to Flat File conversion question...for geniuses. |
Just use stringlength and add any missing spaces before adding it to outputvar, really you don't need colput, it is not meant for this purpose.
And if if you used it would be so much slower then any ... |
Topic: Easy CSV to Flat File conversion question...for geniuses. |
HugoV
Replies: 9
Views: 171
|
Forum: Ask for Help Posted: Tue Aug 12, 2008 9:18 pm Subject: Easy CSV to Flat File conversion question...for geniuses. |
This will read your file into an array:FileRead, Str, pathtofile
Loop, Parse, Str, `n, `r
{
Row:=A_Index
Loop, parse, A_LoopField, CSV
{
CSV_%Row%_%A_Index%:=A_LoopField
... |
Topic: Library for Text file manipulation |
HugoV
Replies: 20
Views: 1541
|
Forum: Scripts & Functions Posted: Tue Aug 12, 2008 8:32 pm Subject: Library for Text file manipulation |
Hi, give this a few test whirls to see if suits your needs.
If you need just one line use the same startline and endline value, if the endline value is omitted it processes the rest of the file from ... |
| |