| Author |
Message |
Topic: Trying to Create Shift-F3 Case Changer Like Word |
Leef_me
Replies: 1
Views: 27
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 1:49 am Subject: Trying to Create Shift-F3 Case Changer Like Word |
try this code,
sorry it moves the mouse but doesn't put it back where it was
#Persistent
return
f12::reload
f1::
SetTimer, WatchCaret, 100
return
WatchCaret:
... |
Topic: Custom Modifier keys on Joystick? |
Leef_me
Replies: 1
Views: 46
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 8:43 pm Subject: Custom Modifier keys on Joystick? |
http://www.autohotkey.com/docs/Hotkeys.htm
http://www.autohotkey.com/docs/KeyList.htm
http://www.autohotkey.com/docs/scripts/JoystickTest.htm
http://www.autohotkey.com/docs/misc/RemapJoystick ... |
Topic: How do I trigger apps/hotkeys w/ mousepad multitouch swipes? |
Leef_me
Replies: 1
Views: 34
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 8:18 pm Subject: How do I trigger apps/hotkeys w/ mousepad multitouch swipes? |
search the forum for the keywords lex mouse gestures |
Topic: Script for muting line-in |
Leef_me
Replies: 7
Views: 99
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 8:08 pm Subject: Script for muting line-in |
http://www.autohotkey.com/docs/Hotkeys.htm
http://www.autohotkey.com/docs/KeyList.htm
search for mute here
http://www.autohotkey.com/docs/commands/Send.htm
The above contain the links to the n ... |
Topic: ImageSearch Failure on Repeat |
Leef_me
Replies: 6
Views: 90
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:46 pm Subject: ImageSearch Failure on Repeat |
Beats the heck out of me.
BTW, that was figuarative language, don't hit me.
I'm glad for your success. |
Topic: Flipping text string like Edxor |
Leef_me
Replies: 8
Views: 113
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:42 pm Subject: Flipping text string like Edxor |
@Leef_me:
Wow, my friend. Thanks.
So the code has been reduced to:
; Flip string like Edxor
string = NBC ; Start with NBC to get ±½¼ AND VICE-VERSA
flippedString =
Loop, parse, string
... |
Topic: Difference between #ifWinActive and ifWinActive? |
Leef_me
Replies: 2
Views: 61
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:29 pm Subject: Difference between #ifWinActive and ifWinActive? |
| http://www.autohotkey.com/docs/Hotkeys.htm#Context |
Topic: Program knows if a real key is pressed |
Leef_me
Replies: 3
Views: 57
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:28 pm Subject: Program knows if a real key is pressed |
| What is the program ? |
Topic: default save-open folder,modify save as, open dialogue box ? |
Leef_me
Replies: 9
Views: 92
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:15 pm Subject: default save-open folder,modify save as, open dialogue box ? |
do i need to write a list of various programs, so if notepad combobox = 2, or if vidredo combobox = 3 e.t.c. AFAIK, Yes.
or i could use a simpler method using ctrl+o or ctrl+ssccriptwriter's choic ... |
Topic: Flipping text string like Edxor |
Leef_me
Replies: 8
Views: 113
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 3:13 pm Subject: Flipping text string like Edxor |
replace this
curCharAscii := Asc(A_LoopField) ; get the ascii value of current character
; and everything in between
invertedAscii := Chr(invertedDecimal)
wit ... |
Topic: wait for window to be active to execute script? |
Leef_me
Replies: 4
Views: 77
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 2:18 pm Subject: wait for window to be active to execute script? |
It works! just as you wrote it.
What are the symptoms of it not working? If that makes any sense.
#Persistent
SetTimer, test, 250
return
test:
ifwinactive AutoHotkey Help
msgbox ... |
Topic: A really simple problem im sure |
Leef_me
Replies: 3
Views: 64
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 2:02 pm Subject: A really simple problem im sure |
I can see two problems,
1) you didn't post the script, you posted a "torn-off piece" of it.
A runnable script does not start with "else if ..."
2) #Ifwinactive ...
... |
Topic: .exe strange error for imagesearch |
Leef_me
Replies: 3
Views: 42
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 1:54 pm Subject: Re: .exe strange error for imagesearch |
.....i am confused with this dnt know what to do and how to do....any ideas would be greatly appreciated
Hey Jasdeep buddy - You think you are confused
How about the other 17,000 registe ... |
Topic: Paste, To Do Box to paste my ideas and things to some pad |
Leef_me
Replies: 3
Views: 65
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 11:42 am Subject: Paste, To Do Box to paste my ideas and things to some pad |
http://www.autohotkey.com/docs/commands.htm |
Topic: default save-open folder,modify save as, open dialogue box ? |
Leef_me
Replies: 9
Views: 92
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 11:37 am Subject: default save-open folder,modify save as, open dialogue box ? |
you are talking about programs external to Ahk, right?
Doesn't the program in question 'learn' where you want the files stored or opened from?
Some programs have a configuration setting for thes ... |
| |