| Author |
Message |
Forum: Support Topic: one shortcut |
| Jaytech |
|
Posted: December 24th, 2008, 10:06 pm
|
|
Replies: 2 Views: 384
|
You need to tell AHK to send the keystrokes:
Code: ^!x :: Send ^s Send {Enter} Send ^w return
|
|
 |
Forum: Support Topic: shortcut key replacement |
| Jaytech |
|
Posted: July 10th, 2008, 3:30 pm
|
|
Replies: 1 Views: 340
|
Something like this should work...
Code: Lwin::send ^+l ;pressing the left windows key will type control shift L |
|
 |
Forum: Scripts Topic: UNCLE DAVID'S SNIPPETS #1 Graphics - Demo Analog Clock |
| Jaytech |
|
Posted: July 9th, 2008, 11:35 pm
|
|
Replies: 11 Views: 4273
|
| Ok, this string has ben dead for quite some time, but I was in need of an analog clock. Finding this was a good send considering that I know almost nothing about how it works. That being said, I did make a couple small changes. I increased the size and added numbers . Woot! So for anyone who wants i... |
|
 |
Forum: Support Topic: Need help on scancode |
| Jaytech |
|
Posted: April 23rd, 2008, 10:49 pm
|
|
Replies: 1 Views: 489
|
|
 |
Forum: Support Topic: Update GUI? |
| Jaytech |
|
Posted: April 23rd, 2008, 10:40 pm
|
|
Replies: 1 Views: 554
|
| Some slight changes: GoSub,ResetCounters GoSub,UpdateTrayTip GoSub,ShowWindow GoSub,UpdateWindow Menu,Tray,NoStandard Menu,Tray,Add,Reset,ResetCounters Menu,Tray,Add,Exit,Exit OnExit,LogAndExit Exit ~LButton::L++ ~MButton::M++ ~RButton::R++ ResetCounters: L=0 M=0 R=0 Return UpdateTrayTip: Menu,Tray,... |
|
 |
Forum: Support Topic: simple remapping with a twist. |
| Jaytech |
|
Posted: April 23rd, 2008, 10:24 pm
|
|
Replies: 2 Views: 458
|
This works for me:
Code: LWIN & L::Send {Right} LWIN & K::Send {Down} LWIN & J::Send {Left} LWIN & I::Send {Up} |
|
 |
Forum: Support Topic: Try to make a quiz , ask for little help |
| Jaytech |
|
Posted: April 23rd, 2008, 10:16 pm
|
|
Replies: 10 Views: 1243
|
| What you are asking for is a script that will log the keys that are pressed on a keboard. That is dangerously close to a keylogger, and I'd be surprised if anyone on this forum would help you build this. Tis the way of the coder my friend; "To do know harm". Or at least "To Not Teach ... |
|
 |
Forum: Support Topic: Keeping the Fox quiet... |
| Jaytech |
|
Posted: April 23rd, 2008, 9:59 pm
|
|
Replies: 9 Views: 1078
|
| Because I slighty crazy, I'm gonna answer your second question first. Instead of using the "Run" command, try this: WinWait, Firefox WinActivate, Firefox SLEEP 300 SEND, ^o Clipboard = "Your next website here" WinWait, Open SLEEP 100 SEND, ^v{ENTER} Secondly (or firstly... |
|
 |
Forum: Support Topic: recognizing keystrokes automatically and writing |
| Jaytech |
|
Posted: April 23rd, 2008, 9:50 pm
|
|
Replies: 1 Views: 378
|
|
 |
Forum: Support Topic: Auto-Connect to Internet |
| Jaytech |
|
Posted: April 23rd, 2008, 9:47 pm
|
|
Replies: 10 Views: 1736
|
Hmm, if you are using a broadband connection, you should always be connected to the internet...
if that's the case you can use this:
Code: Run http://www.google.com |
|
 |
Forum: Support Topic: Gosub problems |
| Jaytech |
|
Posted: March 12th, 2007, 5:05 pm
|
|
Replies: 3 Views: 553
|
| Replace "GoSub" with "GoTo" and it should work fine. Also, since it's in a loop already, a better way to write this would be to use Continues. Like so: sleep, 6000 mousegetpos, cx, cy pixelgetcolor, badcolor, cx, cy Mining: { Loop { random, x1, lrx, lrx2 random, y1, lry... |
|
 |
Forum: Support Topic: buffering user input while executing commands |
| Jaytech |
|
Posted: March 11th, 2007, 11:08 pm
|
|
Replies: 7 Views: 591
|
Code: BlockInput On ... BlockInput Off
It won't buffer the input, but it will block it. |
|
 |
Forum: Support Topic: What is #NoEnv |
| Jaytech |
|
Posted: February 28th, 2007, 10:50 pm
|
|
Replies: 3 Views: 913
|
I did a search for it in the help file and found it right away
Quote: #NoEnv [v1.0.43.08+]
--------------------------------------------------------------------------------
Avoids checking empty variables to see if they are environment variables (recommended for all new scripts).
|
|
 |
Forum: Support Topic: How do I use controlsend properly? |
| Jaytech |
|
Posted: February 28th, 2007, 10:20 pm
|
|
Replies: 3 Views: 619
|
| Why ask us when you can ask the help file... ControlSend [, Control, Keys, WinTitle, WinText, ExcludeTitle, ExcludeText] ControlSendRaw: Same parameters as above. Parameters Control Can be either ClassNN (the classname and instance number of the control) or the name/text of the control, both of whic... |
|
 |
Forum: Support Topic: Need help using hotkeys to launch programs, |
| Jaytech |
|
Posted: February 28th, 2007, 9:02 pm
|
|
Replies: 3 Views: 673
|
| Yes. You are telling the script you want to activate the window which name is contained in the variable x. If you code it like this: Winactivate, x you're saying you want to activate the window named "x", not the window named "the contents of x". I don't know how much you've read... |
|
 |
| Sort by: |