| Author |
Message |
Topic: Something to annoy people |
TylerK
Replies: 140
Views: 37148
|
Forum: Scripts & Functions Posted: Wed Feb 13, 2008 5:25 am Subject: Re: No Subject only content |
| I did a similar thing to my roommate. He started spending way too much time playing Internet Spades on my computer. So I wrote a script that messes with him in various ways. Any time he left clicks wi ... |
Topic: How to step through a script |
TylerK
Replies: 4
Views: 502
|
Forum: Ask for Help Posted: Sat Jan 05, 2008 7:55 pm Subject: How to step through a script |
You could always split up the Send commands with brief pauses. Like this:
Send, {Down}
Sleep 1000
Send, {Left}
Sleep 1000
Send, ^c
Sleep 1000
Send, !{Tab}
Sleep ... |
Topic: Generate GUIs easily! |
TylerK
Replies: 18
Views: 6095
|
Forum: Scripts & Functions Posted: Sat Dec 29, 2007 2:54 am Subject: Generate GUIs easily! |
| If I'm understanding you correctly, you want to have the video displayed in an AHK GUI? If so you'd have to embed an IE control first. Then, using the script above, you could easily have it output to ... |
Topic: Generate GUIs easily! |
TylerK
Replies: 18
Views: 6095
|
Forum: Scripts & Functions Posted: Thu Dec 27, 2007 1:37 am Subject: Generate GUIs easily! |
is it possible to give x,y coordinate width and height and only see video ?
example , start youtube, select movie, then start a new small xy.hta see only videoA better way to do it would be to use t ... |
Topic: Generate GUIs easily! |
TylerK
Replies: 18
Views: 6095
|
Forum: Scripts & Functions Posted: Wed Dec 26, 2007 6:23 pm Subject: Generate GUIs easily! |
| Ohhhhh, this is awesome! Lately I've been setting up custom scripts for various buttons on my PC's remote control and I must say that this method is a heck of a lot easier for certain things than a no ... |
Topic: Eh..Can someone help? |
TylerK
Replies: 4
Views: 445
|
Forum: Ask for Help Posted: Mon Oct 08, 2007 2:03 am Subject: Eh..Can someone help? |
| Sleep means "wait." And it's milliseconds, not seconds. |
Topic: hotstrings as hotkeys -- easier for me (examples) |
TylerK
Replies: 1
Views: 1042
|
Forum: Scripts & Functions Posted: Tue Aug 21, 2007 9:30 pm Subject: hotstrings as hotkeys -- easier for me (examples) |
I like to do the same, only I choose the strings based on where the keys are physically located on the keyboard. For example:
; toggle mute
:*:qwer::
SoundSet, +1, , mute
return
... |
| |