| Author |
Message |
Topic: The future of AutoHotkey.com |
ribbet.1
Replies: 26
Views: 3673
|
Forum: Announcements Posted: Sun Feb 05, 2012 11:16 pm Subject: The future of AutoHotkey.com |
| Chris, your work has made my work easier and my life more pleasant. The scripts I've written with the help of this community have augmented my work like nothing else I know of. I am eternally gratef ... |
Topic: Notepad++ syntax highlighting and autocompletion: v0.5, v0.1 |
ribbet.1
Replies: 27
Views: 11181
|
Forum: Scripts & Functions Posted: Thu Oct 13, 2011 3:39 am Subject: Notepad++ syntax highlighting and autocompletion: v0.5, v0.1 |
| Not working with ver. 5.9.4 unicode. I've spent an hour trying everything in this and other threads to make it recognize autohotkey. Maybe there is something I've missed. Any suggestions are welcom ... |
Topic: General Question Re: Multiple Desktops |
ribbet.1
Replies: 6
Views: 111
|
Forum: Ask for Help Posted: Tue Aug 09, 2011 11:12 pm Subject: General Question Re: Multiple Desktops |
Can AHK send keystrokes and text strings to a running program in a second desktop is my big question?
A "yes" might have been a little more responsive. But thanks. |
Topic: General Question Re: Multiple Desktops |
ribbet.1
Replies: 6
Views: 111
|
Forum: Ask for Help Posted: Tue Aug 09, 2011 10:14 pm Subject: General Question Re: Multiple Desktops |
| That doesn't resemble an answer. Do you actually have any experience using ahk with two virtual desktops? Did you read my post before writing that? Maybe you're just being cryptic? |
Topic: General Question Re: Multiple Desktops |
ribbet.1
Replies: 6
Views: 111
|
Forum: Ask for Help Posted: Tue Aug 09, 2011 7:34 pm Subject: General Question Re: Multiple Desktops |
| Hi, simple question hopefully: Can AHK send keystrokes and text strings to a running program in a second desktop is my big question? I was considering the Desktop Manager from MS Powertoys collectio ... |
Topic: What command would i use to delete the Recent Documents?? |
ribbet.1
Replies: 3
Views: 377
|
Forum: Ask for Help Posted: Sun Oct 10, 2010 7:43 am Subject: What command would i use to delete the Recent Documents?? |
Thanks guys! Just added this to autohotkey.ahk a very simple solution indeed!
^+#!d:: ;;delete all recent documents
FileDelete, C:\Documents and Settings\Username\Recent\*.*
Return ... |
Topic: An age-old clipboard question I'm sure |
ribbet.1
Replies: 8
Views: 418
|
Forum: Ask for Help Posted: Fri Mar 26, 2010 8:53 pm Subject: An age-old clipboard question I'm sure |
| I'm sure some wizards like sean or tic will be able to do it all in ahk (perhaps you will find some info in their screenshot (sean) and or gdi+ (tic) scripts and libraries) but it if works it works :- ... |
Topic: An age-old clipboard question I'm sure |
ribbet.1
Replies: 8
Views: 418
|
Forum: Ask for Help Posted: Fri Mar 26, 2010 7:09 pm Subject: An age-old clipboard question I'm sure |
If you have irfanview you can do so via the commandline if I'm not mistaken, replace your fileread with pathtoirfanview.exe %clipboard% /clipcopy
-> copy image to the clipboard
This is a nice w ... |
Topic: An age-old clipboard question I'm sure |
ribbet.1
Replies: 8
Views: 418
|
Forum: Ask for Help Posted: Fri Mar 26, 2010 6:37 pm Subject: Re: An age-old clipboard question I'm sure |
^!4::
Send, ^c
Clipwait
IfExist, %ClipBoard%
FileRead, Clipboard, *c %Clipboard%
Return
Thanks but I don't think that works. Any other ideas? |
Topic: An age-old clipboard question I'm sure |
ribbet.1
Replies: 8
Views: 418
|
Forum: Ask for Help Posted: Fri Mar 26, 2010 6:24 pm Subject: An age-old clipboard question I'm sure |
Hi, is there any simple method for reading the content of a file (non-text, binary such as graphics or audio data) from Windows Explorer?
^!4::
Send, ^c
Clipwait
IfExist, %ClipBoard%
... |
Topic: How to determine cursor position |
ribbet.1
Replies: 7
Views: 715
|
Forum: Ask for Help Posted: Thu Mar 11, 2010 1:53 am Subject: How to determine cursor position |
| OK, little workaround, should work in my case, maybe not for others. In this instance, I search for a certain bit of text. When the text is found, it's highlighted. I can then use PixelSearch to fi ... |
Topic: How to determine cursor position |
ribbet.1
Replies: 7
Views: 715
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 9:46 pm Subject: How to determine cursor position |
Any suggestions for applications that don't work with A_CaretX and Y, such as Adobe Acrobat? Reports the same position no matter what. Many have tried, all have failed So for now the answer seems ... |
Topic: How to determine cursor position |
ribbet.1
Replies: 7
Views: 715
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 9:30 pm Subject: How to determine cursor position |
| A_CaretX and A_CaretY: The current X and Y coordinates of the caret (text insertion point). The coordinates are relative to the active window unless CoordMode is used to make them relative to the enti ... |
Topic: Wishing for a new page to the documentation |
ribbet.1
Replies: 4
Views: 621
|
Forum: Wish List Posted: Sat Mar 06, 2010 6:17 pm Subject: Wishing for a new page to the documentation |
| The documentation of Ahk is not aimed to learn programming and the language itself. Its more like dictionary. Thats why beginners have problems to learn, but pros know where they can find specific inf ... |
Topic: Wishing for a new page to the documentation |
ribbet.1
Replies: 4
Views: 621
|
Forum: Wish List Posted: Sat Mar 06, 2010 12:22 am Subject: Wishing for a new page to the documentation |
| Well I appreciate that HugoV. I'm still thinking of the many occasions I've found something that I've had to search a long time to learn about, but I can't remember any specific examples right now. ... |
| |