AutoHotkey Community

It is currently May 24th, 2012, 7:52 am

All times are UTC [ DST ]


Search found 22 matches
Search these results:

Author Message

 Forum: Custom   Topic: [Class] WinClip - direct clipboard manipulations

Posted: May 21st, 2012, 10:59 am 

Replies: 65
Views: 5012


The Save/iSave functions is made to keep binary content of clipboard in the file with possibility to restore it, so you did right in your second example. However, there is no need to use "i" prefixed function as they intended for multi-clipboard purposes, here is how you could do the thin...

 Forum: Custom   Topic: [Class] WinClip - direct clipboard manipulations

Posted: May 21st, 2012, 6:52 am 

Replies: 65
Views: 5012


Hi All, I am building the following shortcut whose intention is to take the currently selected text, put it into a temp file and edit it. +^#t:: ;; Copy selected text into timestamped temp text document and open it in UltraEdit. wc := new WinClip wc.iCopy() FormatTime, xx,, yyyy.MM.dd-HH.mm.ss filen...

 Forum: Support   Topic: Invoke other Autohotkey functions

Posted: March 5th, 2012, 1:01 am 

Replies: 9
Views: 231


If you're using AutoHotkey_L, see SendLevel . This is strange.. I *am* using AutoHotkey_L (when I open Help I see "AutoHotkey_L Help", but with the following script: ^#!t:: SendLevel 1 ; line 197 SendInput {F1}+v return I get "this line does not contain a recognized action&...

 Forum: Support   Topic: Invoke other Autohotkey functions

Posted: March 1st, 2012, 2:43 am 

Replies: 9
Views: 231


I've tried to replicate a similar behaviour but everything seems ok for me.I create two scripts, Master.ahk and Slave.ahk. .... Thanks Odlanir - your example works, and I found that with my timestamp script, I had actually defined it as ^$F11::. When I removed $ and left it as ^F11::, I could invok...

 Forum: Support   Topic: Invoke other Autohotkey functions

Posted: February 29th, 2012, 8:03 am 

Replies: 9
Views: 231


You can use #Include http://www.autohotkey.com/docs/commands/_Include.htm Example: #Include C:\My Documents\Scripts\Utility Subroutines.ahk Although that would work, it's not practical in the long term.. I can see myself building a monster script that has to include every other separately developed...

 Forum: Support   Topic: Invoke other Autohotkey functions

Posted: February 29th, 2012, 2:41 am 

Replies: 9
Views: 231


Can you copy both scripts into one superscript? I can copy the date-stamp script ok, because that is a very short piece of code. But 12 clip is more complicated and I do not want to modify it. Plus, I really want to know in general why I can't call AHK functionality here - is it related to the F ke...

 Forum: Support   Topic: Invoke other Autohotkey functions

Posted: February 29th, 2012, 12:32 am 

Replies: 9
Views: 231


Hi All, I am using the magnificent 12Clip by Florian Winkelbauer which essentially gives me 12 clipboard spaces mapped to the F1-F12 keys (F1+c to copy, F1+v to paste etc). I also have a timestamp function mapped to control+F11. My problem is that I am trying to evoke these Autohotkey scripts from a...

 Forum: Support   Topic: Best way to select a word

Posted: September 20th, 2011, 2:13 am 

Replies: 4
Views: 281


I think it must be: {CTRLDOWN}{LEFT}{SHIFTDOWN}{RIGHT}{CTRLUP}{SHIFTUP} or ^{LEFT}^+{RIGHT} Thanks for the comment - but that won't work if the cursor is at the left of the word. E.g. if you have "one |two" (| is the cursor) you will select "one" instead of "two". Agai...

 Forum: Support   Topic: Best way to select a word

 Post subject: Best way to select a word
Posted: September 18th, 2011, 12:32 pm 

Replies: 4
Views: 281


Hi All, I wrote a script for creating arbitrary HTML/XML tags very quickly. I posted it to the Autohotkey script forum and wrote it up on my blog too . In general I am very happy with it except for one aspect: selecting a word. As I wrote in my blog post, UltraEdit has a great macro command SelectWo...

 Forum: Scripts   Topic: Script for HTML/XML - create closing tags

Posted: September 18th, 2011, 12:19 pm 

Replies: 0
Views: 707


Hi All, Here is my script for creating arbitrary HTML/XML tags very quickly. ; Make XML tag out of current token, leaving cursor in the middle. ; Usage GOOD (selects token with a control+shift LEFT): ; token| ; >token< entire "token" selected ; >token-token< entire "token-toke...

 Forum: Support   Topic: Show keyboard bindings for script in system tray

Posted: September 8th, 2011, 12:35 am 

Replies: 2
Views: 122


That's the one - thank you. :)

 Forum: Scripts   Topic: Favorite Folders popup menu that you can change on the fly.

Posted: August 19th, 2011, 6:23 am 

Replies: 166
Views: 45846


On Windows 7, when I use this, I always get the following error after adding a folder: Error: The following variable name contains an illegal character: "f_MenuName[X]" http://img856.imageshack.us/img856/9854/ahkerrorfavefolders.jpg Anyone know how to fix this? Thanks for any advice! Rob

 Forum: Support   Topic: Show keyboard bindings for script in system tray

Posted: August 17th, 2011, 2:16 pm 

Replies: 2
Views: 122


Hi All, Last year some time I came across an AHK script that would display all the keyboard bindings (and a comment label) for a given script in the system tray when you shift+clicked on it or something like that. I lost the script and now I am having trouble remembering what keywords to find it aga...

 Forum: Support   Topic: time delays after a copy

Posted: March 23rd, 2011, 12:49 am 

Replies: 2
Views: 123


Hi Leef,

That is a good tool: wait until something is in the clipboard. But I think it fails in one important aspect: if the copy action legitimately copies *nothing*, the tool will register an error.

Rob
:)

 Forum: Support   Topic: time delays after a copy

 Post subject: time delays after a copy
Posted: March 22nd, 2011, 3:01 am 

Replies: 2
Views: 123


Hi All, On this StackOverflow post: http://stackoverflow.com/questions/3381451/catch-copy-paste-of-empty-text-on-windows-from-autohotkey-script/5267436#5267436 , there is a question about the best way to handle the time delay between a copy command and the rest of the script. So, after doing a copy,...
Sort by:  
Page 1 of 2 [ Search found 22 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group