| Author |
Message |
Topic: solved: mouse gestures | solved: unwanted right click |
YMP
Replies: 6
Views: 170
|
Forum: Ask for Help Posted: Sat Jun 14, 2008 3:48 pm Subject: solved: mouse gestures | solved: unwanted right click |
What about this?
RButton & LButton:: send {Browser_Back}
RButton Up:: Click Right
|
Topic: speak problem. |
YMP
Replies: 2
Views: 105
|
Forum: Ask for Help Posted: Thu May 29, 2008 2:50 pm Subject: speak problem. |
You must escape the comma.
TEMPFILE = %TEMP%\TALK.vbs
IfExist, %TEMPFILE%
FileDelete, %TEMPFILE%
FileAppend, Dim Talk`nSet Talk = WScript.CreateObject("SAPI.SpVoice")`nTa ... |
Topic: "Transform Unicode" fails with MS Word |
YMP
Replies: 4
Views: 535
|
Forum: Bug Reports Posted: Thu Jan 24, 2008 6:43 pm Subject: "Transform Unicode" fails with MS Word |
I could not reproduce question marks in the message box, however results were really different before and after #z. I tested it on XP, copying Russian text from Avant Browser (I don't have Word).
P ... |
Topic: Output Character cut |
YMP
Replies: 3
Views: 224
|
Forum: Ask for Help Posted: Thu Nov 01, 2007 11:32 am Subject: Output Character cut |
I can confirm that the top-left corner of the third W looks cut off.
Instead of this:
\ /\ /
\ / \ /
\/ \/
I see this:
/\ /
\ / \ /
\/ \/
And indeed, c ... |
Topic: How to find out what is the current keyboard layout? |
YMP
Replies: 6
Views: 448
|
Forum: Ask for Help Posted: Thu Nov 01, 2007 6:22 am Subject: How to find out what is the current keyboard layout? |
| I think Edit1 is not needed in the SendMessage commands above. Input locale is a thread characteristic, as you can see from my example, so sending it to the parent window would work as well. Also, usi ... |
Topic: How to find out what is the current keyboard layout? |
YMP
Replies: 6
Views: 448
|
Forum: Ask for Help Posted: Wed Oct 31, 2007 12:26 pm Subject: How to find out what is the current keyboard layout? |
F11::
SetFormat, Integer, H
WinGet, WinID,, A
ThreadID:=DllCall("GetWindowThreadProcessId", "Int", WinID, "Int", 0)
InputLocaleID ... |
Topic: Building Folders From File Names |
YMP
Replies: 3
Views: 288
|
Forum: Ask for Help Posted: Wed Oct 31, 2007 7:58 am Subject: Building Folders From File Names |
Thank you for your kind words. If it was not so hard, that's because AutoHotkey is so powerful. We can now save a lot of our time because Chris spent a lot of his while developing it. After a few m ... |
Topic: Filecopy Help! |
YMP
Replies: 7
Views: 388
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 5:50 am Subject: Filecopy Help! |
Things are not always what they look like. Explorer's menu bar is actually a toolbar.
This command will not work with applications that use non-standard menu bars. Examples include Microsoft Outloo ... |
Topic: how to make case sensitive replacement? |
YMP
Replies: 2
Views: 165
|
Forum: Ask for Help Posted: Sun Oct 28, 2007 9:33 am Subject: how to make case sensitive replacement? |
Or use RegExReplace, which is case sensitive by default. It can also prevent replacing 'green' if it is part of some other word.
textone = Green houses and green yards
texttwo:=RegExReplace ... |
Topic: Building Folders From File Names |
YMP
Replies: 3
Views: 288
|
Forum: Ask for Help Posted: Sun Oct 28, 2007 9:28 am Subject: Building Folders From File Names |
| Am I getting you right that you want to run this script when you are in an Explorer window? And you want to create new folders in the same directory where the files lie? If so, try the following code. ... |
Topic: Convert a string to an integer |
YMP
Replies: 3
Views: 193
|
Forum: Ask for Help Posted: Mon Oct 22, 2007 9:57 am Subject: Convert a string to an integer |
| There's usually no need for any conversion. AutoHotkey will convert it for you automatically. |
Topic: Help a newbie |
YMP
Replies: 1
Views: 116
|
Forum: Ask for Help Posted: Sun Oct 21, 2007 6:29 pm Subject: Help a newbie |
Click's arguments can't be expressions. Put them in percent signs:
Click %x%, %y%
|
Topic: problem to build a function to display a text to the screen |
YMP
Replies: 16
Views: 477
|
Forum: Ask for Help Posted: Sun Oct 21, 2007 6:02 pm Subject: problem to build a function to display a text to the screen |
Yes.
It can make scripts easier to create and maintain since the WinTitle and WinText of the target window do not need to be repeated for every windowing command.
Sounds like good advice to b ... |
Topic: The programms close right after starting them. |
YMP
Replies: 20
Views: 1095
|
Forum: Ask for Help Posted: Sun Oct 21, 2007 5:55 pm Subject: The programms close right after starting them. |
Im guessing you may just have to set the working directory of each one.
Very likely. At least, that was the cause of similar problems I had when launching some games via AutoHotkey.
As for spa ... |
Topic: problem to build a function to display a text to the screen |
YMP
Replies: 16
Views: 477
|
Forum: Ask for Help Posted: Sun Oct 21, 2007 2:38 pm Subject: problem to build a function to display a text to the screen |
But is that LastFound trick so reliable as to advise it to beginners? I'd rather say, let them see what each command operates on. Less efficient code maybe, but more clear.
I still very rarely use La ... |
| |