| Author |
Message |
Topic: How to Automatic Suspend the HotKey while I'm on the Firefox |
hugov
Replies: 8
Views: 83
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 5:20 pm Subject: How to Automatic Suspend the HotKey while I'm on the Firefox |
| Dude, 5 days and you haven't tried anything? Hotkeyit already posted the correct code, read the documentation with the examples, what more do you need? |
Topic: How to seperate script points |
hugov
Replies: 1
Views: 27
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 3:23 pm Subject: How to seperate script points |
N::
Click 920,375
Return ; add return here
A::
Send ^v
count = 1
Return ; add return here etc for ech hotkey
|
Topic: What is the "command" to sendinput arrow down/up/r |
hugov
Replies: 1
Views: 23
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 12:52 pm Subject: What is the "command" to sendinput arrow down/up/r |
| http://www.autohotkey.com/docs/commands/Send.htm |
Topic: A Complete AutoHotkey CSV Function--almost... |
hugov
Replies: 2
Views: 136
|
Forum: Scripts & Functions Posted: Sat Mar 20, 2010 10:55 am Subject: A Complete AutoHotkey CSV Function--almost... |
Here is ModifyColumn needs to be tested but at first glance seems to work CSV_ModifyColumn(CSV_Identifier, Coldata, ColNumber)
{
;Loop, Parse, Value, `,
global
_tmpColItems: ... |
Topic: Help in "Sleep" |
hugov
Replies: 2
Views: 40
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 10:48 am Subject: Help in "Sleep" |
!d:: ; add newline here
SendInput t/find 0{enter}
Sleep 120000
SendInput t/find 0{enter}
Sleep 120000
SendInput t/find 0{enter}
return
Edit: use [c ... |
Topic: Launching a browser by clicking on a url on my email. |
hugov
Replies: 5
Views: 53
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 10:19 am Subject: Launching a browser by clicking on a url on my email. |
My suggestion:
- setup a hotkey that selects a line of text and copy to clipboard either via send {home}{shift down}{end}{shift up}^c or perhaps mouse double/tripple click
- extract the URL from th ... |
Topic: A Complete AutoHotkey CSV Function--almost... |
hugov
Replies: 2
Views: 136
|
Forum: Scripts & Functions Posted: Sat Mar 20, 2010 9:15 am Subject: A Complete AutoHotkey CSV Function--almost... |
| Here is CSV_AddColumn, needs serious testing but at first glance DOES seem to work. BUT as you may notice the endresult is missing the last col item in the last row, this is due to the StringTrimRight ... |
Topic: Read the characters after the cursor and move it |
hugov
Replies: 4
Views: 68
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 8:47 am Subject: Read the characters after the cursor and move it |
Doesn't pressing ctrl-shift-left work in the program, it does in "regular" editors to select a word. Does a mouse double or tripple click select a word?
If not all I can think of is start ... |
Topic: FileRead Project |
hugov
Replies: 11
Views: 101
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 12:08 am Subject: FileRead Project |
Just tick the boxes of the lines you want to delete, hit submit ...
; www.autohotkey.com/forum/viewtopic.php?p=340861#340861
; #include tf.ahk ; only once
ToRead=2,4,8,9 ; comma separated list of ... |
Topic: FileRead Project |
hugov
Replies: 11
Views: 101
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 6:39 pm Subject: FileRead Project |
| So if I understand you correctly you want to view every sixth line of a file and decide to keep/delete correct? in that case a listview gui with checkboxes might be more convenient. That way you have ... |
Topic: FileRead Project |
hugov
Replies: 11
Views: 101
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 6:35 pm Subject: FileRead Project |
1 How can we get the Next and Back buttons to carry onto the next or previous 6th lines?
Something like this ?
; http://www.autohotkey.com/forum/viewtopic.php?p=340861#340861
; #include tf.a ... |
Topic: FileRead Project |
hugov
Replies: 11
Views: 101
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 5:28 pm Subject: FileRead Project |
; http://www.autohotkey.com/forum/viewtopic.php?p=340861#340861
; #include tf.ahk ; only once no need to do it for each button
Gui, Add, Text, x12 y10 w330 h30 , Locate the text you wish to de ... |
Topic: FileRead Project |
hugov
Replies: 11
Views: 101
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 5:10 pm Subject: FileRead Project |
Just remove the 150 e.g. don't pass on an endline value as parameter and it should go on to the end of the file no matter how long so like this:
Lines:=TF_Readlines("text.txt", &q ... |
Topic: FileRead Project |
hugov
Replies: 11
Views: 101
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 4:48 pm Subject: FileRead Project |
| Look at the TF lib: TF_Readlines to read 6th 12th Xth line, TF_RemoveLines to remove etc http://www.autohotkey.net/~hugov/tf-lib.htm |
Topic: Can't get AHK to work in Windows 7 |
hugov
Replies: 3
Views: 46
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 4:25 pm Subject: Can't get AHK to work in Windows 7 |
| Go to your my documents folder or to your autohotkey folder and look for autohotkey.ahk or autohotkey.ini file. Perhaps the script file is "empty" e.g. no script is running try adding a simp ... |
| |