| Author |
Message |
Topic: shortcut key replacement |
Jaytech
Replies: 1
Views: 67
|
Forum: Ask for Help Posted: Thu Jul 10, 2008 2:30 pm Subject: shortcut key replacement |
Something like this should work...
Lwin::send ^+l ;pressing the left windows key will type control shift L |
Topic: UNCLE DAVID'S SNIPPETS #1 Graphics - Demo Analog Clock |
Jaytech
Replies: 11
Views: 2951
|
Forum: Scripts & Functions Posted: Wed Jul 09, 2008 10:35 pm Subject: UNCLE DAVID'S SNIPPETS #1 Graphics - Demo Analog Clock |
| 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 m ... |
Topic: Need help on scancode |
Jaytech
Replies: 1
Views: 180
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 9:49 pm Subject: Need help on scancode |
Google for the win!
http://www.win.tue.nl/~aeb/linux/kbd/scancodes-1.html#ss1.2 |
Topic: Update GUI? |
Jaytech
Replies: 1
Views: 239
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 9:40 pm Subject: Update GUI? |
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, ... |
Topic: simple remapping with a twist. |
Jaytech
Replies: 2
Views: 172
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 9:24 pm Subject: simple remapping with a twist. |
This works for me:
LWIN & L::Send {Right}
LWIN & K::Send {Down}
LWIN & J::Send {Left}
LWIN & I::Send {Up} |
Topic: Try to make a quiz , ask for little help |
Jaytech
Replies: 10
Views: 433
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 9:16 pm Subject: Try to make a quiz , ask for little help |
| 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 th ... |
Topic: Keeping the Fox quiet... |
Jaytech
Replies: 9
Views: 520
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 8:59 pm Subject: Keeping the Fox quiet... |
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
Clipbo ... |
Topic: recognizing keystrokes automatically and writing |
Jaytech
Replies: 1
Views: 102
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 8:50 pm Subject: recognizing keystrokes automatically and writing |
| Umm... Copy/Paste? |
Topic: Auto-Connect to Internet |
Jaytech
Replies: 2
Views: 157
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 8:47 pm Subject: Auto-Connect to Internet |
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:
Run http://www.google.com |
Topic: Gosub problems |
Jaytech
Replies: 3
Views: 263
|
Forum: Ask for Help Posted: Mon Mar 12, 2007 4:05 pm Subject: Gosub problems |
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
mouseg ... |
Topic: buffering user input while executing commands |
Jaytech
Replies: 7
Views: 292
|
Forum: Ask for Help Posted: Sun Mar 11, 2007 10:08 pm Subject: buffering user input while executing commands |
BlockInput On
...
BlockInput Off
It won't buffer the input, but it will block it. |
Topic: What is #NoEnv |
Jaytech
Replies: 3
Views: 446
|
Forum: Ask for Help Posted: Wed Feb 28, 2007 9:50 pm Subject: What is #NoEnv |
I did a search for it in the help file and found it right away
#NoEnv |
Topic: How do I use controlsend properly? |
Jaytech
Replies: 3
Views: 347
|
Forum: Ask for Help Posted: Wed Feb 28, 2007 9:20 pm Subject: How do I use controlsend properly? |
Why ask us when you can ask the help file...
ControlSend If this parameter is blank or omitted, the target window's topmost control will be used
You need to find out which control you want to send ... |
Topic: Need help using hotkeys to launch programs, |
Jaytech
Replies: 3
Views: 351
|
Forum: Ask for Help Posted: Wed Feb 28, 2007 8:02 pm Subject: Need help using hotkeys to launch programs, |
| 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 & ... |
Topic: Need help using hotkeys to launch programs, |
Jaytech
Replies: 3
Views: 351
|
Forum: Ask for Help Posted: Wed Feb 28, 2007 7:38 pm Subject: Need help using hotkeys to launch programs, |
Here's the same code with a couple minor changes:SetTitleMatchMode 2
^+n::SwitchTo("Notepad","Notepad")
^+f::SwitchTo("Mozilla","Fire ... |
| |