| Author |
Message |
Topic: Tricky behavior of alt key under Internet Explorer |
dvda2k
Replies: 11
Views: 189
|
Forum: Ask for Help Posted: Thu Oct 27, 2011 6:27 am Subject: Tricky behavior of alt key under Internet Explorer |
tried Lexikos's suggestion. but the behaviors is still very strange.
LAlt::Return
RAlt::Return
works. but if only one alt is remaped, strange things happen:
LAlt::Return
press left alt, n ... |
Topic: Tricky behavior of alt key under Internet Explorer |
dvda2k
Replies: 11
Views: 189
|
Forum: Ask for Help Posted: Tue Oct 25, 2011 5:02 pm Subject: Tricky behavior of alt key under Internet Explorer |
Still need help.
Did some further test:
~Alt::Tooltip, Test Text
Under IE, the menu bar appears again! |
Topic: Tricky behavior of alt key under Internet Explorer |
dvda2k
Replies: 11
Views: 189
|
Forum: Ask for Help Posted: Tue Oct 25, 2011 9:25 am Subject: Tricky behavior of alt key under Internet Explorer |
Try -
~Alt::Msgbox
Works when I tested it.
Thanks, works like a charm!
(Edit: seems it doesn't solve the problem, see below) |
Topic: Tricky behavior of alt key under Internet Explorer |
dvda2k
Replies: 11
Views: 189
|
Forum: Ask for Help Posted: Tue Oct 25, 2011 3:51 am Subject: Tricky behavior of alt key under Internet Explorer |
The alt key is a very tricky one under IE. It was designed to show the IE menu bar when when pressed.
I tried to remap it to:
Alt::MsgBox
The message box did show up but you can see that ... |
Topic: can't open shared folder by "run explorer \\computer\fo |
dvda2k
Replies: 2
Views: 154
|
Forum: Ask for Help Posted: Wed Dec 22, 2010 5:55 pm Subject: can't open shared folder by "run explorer \\computer\fo |
Just do...
\\-IP ADDRESS or NAME-\Folder
Run, \\255.255.255.255\This folder
Run, \\My_Computer\This folder
I can't believe how stupid I am.
But I'm quite curious about why "expore ... |
Topic: can't open shared folder by "run explorer \\computer\fo |
dvda2k
Replies: 2
Views: 154
|
Forum: Ask for Help Posted: Wed Dec 22, 2010 4:52 pm Subject: can't open shared folder by "run explorer \\computer\fo |
I'm on Windows 7.
"explorer \\computer\folder" works fine in the command line console.
But with Autohotkey, I had tried the following methods:
Run explorer \\computer\folder
Run e ... |
Topic: Windows 7 Task Scheduler does not start my scripts |
dvda2k
Replies: 10
Views: 1642
|
Forum: Ask for Help Posted: Tue Dec 14, 2010 6:52 am Subject: Re: Windows 7 Task Scheduler does not start my scripts |
Hi, been using AutoHotkey and love it. I created a task to execute my script at bootup when user logs on.
When I reboot, the script does not show in system tray as usual. it also does not work whe ... |
Topic: Mouse Wheel button issue. |
dvda2k
Replies: 5
Views: 202
|
Forum: Ask for Help Posted: Wed Dec 01, 2010 1:07 pm Subject: Mouse Wheel button issue. |
I haven't test the code posted there. but
WheelLeft::msgbox
works for me. |
Topic: Mouse Wheel button issue. |
dvda2k
Replies: 5
Views: 202
|
Forum: Ask for Help Posted: Tue Nov 30, 2010 1:09 pm Subject: Mouse Wheel button issue. |
| WheelLeft and WheelRight works on my Vista and Windows 7 system |
Topic: How to change text caret? (not mouse cursor) |
dvda2k
Replies: 3
Views: 147
|
Forum: Ask for Help Posted: Tue Nov 30, 2010 1:03 pm Subject: How to change text caret? (not mouse cursor) |
Tried with the same code with a window created by the script. It works.
So it's safe to say now that you don't have access to the caret of an external window doesn't belong to you.
Gui, Add, Edit ... |
Topic: How to change text caret? (not mouse cursor) |
dvda2k
Replies: 3
Views: 147
|
Forum: Ask for Help Posted: Tue Nov 30, 2010 12:49 pm Subject: How to change text caret? (not mouse cursor) |
I tried CreateCaret and ShowCaret API with the following code, but with no luck. Both API returns 0 which means unsuccessful.
F9::
hwnd := WinExist("A")
ret1 := ... |
Topic: How to change text caret? (not mouse cursor) |
dvda2k
Replies: 3
Views: 147
|
Forum: Ask for Help Posted: Tue Nov 30, 2010 10:32 am Subject: How to change text caret? (not mouse cursor) |
Is there anyway to change the style of text caret?
I know there are couple of posts about changing mouse cursor but nothing on changing text caret. I doubt if it is possible. |
Topic: how to run a prog. WITHOUT admin right from elevated script? |
dvda2k
Replies: 0
Views: 182
|
Forum: Ask for Help Posted: Wed Nov 24, 2010 5:16 am Subject: how to run a prog. WITHOUT admin right from elevated script? |
I have a script for unattended application setup. It needs admin right to install applications so I put the following codes at the begining.
If Not A_IsAdmin
{
DllCall("shell32\She ... |
Topic: How to determine whether a TEXT STRING is in a dictionary |
dvda2k
Replies: 6
Views: 266
|
Forum: Ask for Help Posted: Fri May 21, 2010 2:53 pm Subject: How to determine whether a TEXT STRING is in a dictionary |
thanks, i'll try this.
one more question, how do i get lines of a text file quickly? it took ReadFileLines a couple of minutes to read a 50k-line file. |
Topic: How to determine whether a TEXT STRING is in a dictionary |
dvda2k
Replies: 6
Views: 266
|
Forum: Ask for Help Posted: Fri May 21, 2010 1:21 pm Subject: How to determine whether a TEXT STRING is in a dictionary |
unfortunately this function looks like exactly the opposite of what I'm trying to do.
hugov, can you make a TF_Preserve(File1, File2, PartialMatch = 0) which keeps all lines matched in File ... |
| |