| Author |
Message |
Topic: Limit to number of command line parameters? |
instantrunoff
Replies: 9
Views: 468
|
Forum: Ask for Help Posted: Mon Jun 16, 2008 7:28 pm Subject: Limit to number of command line parameters? |
| Is there a workaround for this that allows for many files (with long paths) to be dragged and dropped onto a compiled script? |
Topic: Simulate Run from Shell? |
instantrunoff
Replies: 2
Views: 92
|
Forum: Ask for Help Posted: Thu Jun 05, 2008 5:47 pm Subject: Simulate Run from Shell? |
the closest to what explorer does would be (I think)
>^]::Run %PDFprogram% D:\Desktop\IP Division Calendar.pdf, D:\Desktop\
Wow. That worked. Thanks! |
Topic: Simulate Run from Shell? |
instantrunoff
Replies: 2
Views: 92
|
Forum: Ask for Help Posted: Thu Jun 05, 2008 5:23 pm Subject: Simulate Run from Shell? |
I have a simple command
>^]::Run D:\Desktop\IP Division Calendar.pdf
That always messes up my PDF program, using quotes around the path(s)specifying the exe and then the pdfspecif ... |
Topic: the data area passed to a system call is too small |
instantrunoff
Replies: 4
Views: 779
|
Forum: Ask for Help Posted: Tue Jun 03, 2008 4:03 pm Subject: the data area passed to a system call is too small |
I'm having this issue using a compiled AHK script within the SendTo menu: too many files send to it gives this error. Any suggestions?
#NoEnv
#SingleInstance Off
#Persistent
TrayTip, MultiRun, O ... |
Topic: Alt key sticking |
instantrunoff
Replies: 11
Views: 596
|
Forum: Ask for Help Posted: Sun May 18, 2008 4:07 am Subject: Alt key sticking |
| What I got from it was that with Alt-triggered hotkeys, AHK tries to suppress Alt by sending a bunch of Control and Alt sequences among other stuff. For other hotkey modifiers, this kind of suppressi ... |
Topic: What's Up with Vista and SendInput, SendPlay, & Hooks? |
instantrunoff
Replies: 3
Views: 479
|
Forum: Bug Reports Posted: Sun May 18, 2008 12:39 am Subject: What's Up with Vista and SendInput, SendPlay, & Hooks? |
| Since I'm constantly editing my scripts, I don't have handy examples for you. However, using the right alt key to trigger a SendInput resulted in a stuck Alt key: >!v::SendInput %longvaria ... |
Topic: Alt key sticking |
instantrunoff
Replies: 11
Views: 596
|
Forum: Ask for Help Posted: Sat May 17, 2008 10:33 pm Subject: Alt key sticking |
| A possible explanation: http://www.autohotkey.com/forum/viewtopic.php?p=87771#87771 |
Topic: BufferInput On|Off |
instantrunoff
Replies: 5
Views: 188
|
Forum: Wish List Posted: Sat May 17, 2008 10:11 pm Subject: BufferInput On|Off |
When the script sends a variable, the special chars (!, +, ^, etc..) are replaced with their literal counterparts. In other words, when you send a variable, it sends only alpha numerical characters.
... |
Topic: Hotstrings |
instantrunoff
Replies: 1
Views: 318
|
Forum: Bug Reports Posted: Sat May 17, 2008 10:06 pm Subject: Hotstrings |
This is an interesting question. One solution may be to use Suspend, which affects hotstrings but not the current thread. For example, Capslock & t::
Suspend On
Send text
Suspend Off
r ... |
Topic: BufferInput On|Off |
instantrunoff
Replies: 5
Views: 188
|
Forum: Wish List Posted: Sat May 17, 2008 9:11 pm Subject: BufferInput On|Off |
F1::
Send. ^{F9}INCLUDEPICTURE "%imagew%{F9}{End}{Space}<br><br><img src="%image%">
Did you try that?
I'm includ ... |
Topic: What's Up with Vista and SendInput, SendPlay, & Hooks? |
instantrunoff
Replies: 3
Views: 479
|
Forum: Bug Reports Posted: Sat May 17, 2008 9:10 pm Subject: What's Up with Vista and SendInput, SendPlay, & Hooks? |
| There have been scattered reports on the forums here about issues with SendInput and SendPlay using Vista. I've had difficulties also. Some suggestions involve using compatibility mode or running as ... |
Topic: BufferInput On|Off |
instantrunoff
Replies: 5
Views: 188
|
Forum: Wish List Posted: Sat May 17, 2008 8:58 pm Subject: BufferInput On|Off |
| Send {Raw} is in effect for the remainder of the string, but if you want to send a long string and have only some parts be raw you need to have multiple commands: Send ^{f9}INCLUDEPICTURE &q ... |
Topic: Alt key sticking |
instantrunoff
Replies: 11
Views: 596
|
Forum: Ask for Help Posted: Fri May 16, 2008 7:03 pm Subject: Alt key sticking |
| I've had better luck with SendPlay than with SendInput, but I have UAC off so that might make a difference (global keyboard hook). I also wasn't being careful enough to use {Raw} when necessary. |
Topic: Paste plain text (and copy/cut) |
instantrunoff
Replies: 14
Views: 2320
|
Forum: Scripts & Functions Posted: Fri May 16, 2008 6:22 pm Subject: Paste plain text (and copy/cut) |
| PS I updated the script to prevent issues sending text with characters that get escaped. |
Topic: Paste plain text (and copy/cut) |
instantrunoff
Replies: 14
Views: 2320
|
Forum: Scripts & Functions Posted: Fri May 16, 2008 2:33 pm Subject: Paste plain text (and copy/cut) |
I have a modified version to remove white space and new line marks and that avoids "pasting" because that can trigger unnecessary paste options in Microsoft Office:
>!v:: ; pa ... |
| |