| View previous topic :: View next topic |
| Author |
Message |
Ray Guest
|
Posted: Sun Aug 01, 2004 2:57 pm Post subject: Use shortkey to change text size in internet explorer... |
|
|
Hi all,
I'm wondering how to implement shortkey to change text size in IE, just like one can use "Ctrl ++" to increase font size in modzilla firefox?
Thanks in advance for your ideas.
Best regards. |
|
| Back to top |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1717
|
Posted: Sun Aug 01, 2004 4:14 pm Post subject: |
|
|
ctrl + mouse scroll _________________
 |
|
| Back to top |
|
 |
Ray Guest
|
Posted: Mon Aug 02, 2004 2:15 am Post subject: |
|
|
Thanks for your answer.
However, I want to use shortkey on keyboard without a mouse. Is it possible? |
|
| Back to top |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1717
|
Posted: Mon Aug 02, 2004 3:23 am Post subject: |
|
|
'send' command sends keystrokes... but i couldn't make it send mouse actions and here we need ctrldown wheelup/down ctrlup.
Chris might suggest something... _________________
 |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Mon Aug 02, 2004 3:32 am Post subject: |
|
|
The Send command doesn't support mouse clicks. Instead, the MouseClick command is used for clicks and turning the wheel. This example changes the font size in MSIE:
| Code: | #z:: ; Win+z
Send, {CtrlDown}
MouseClick, WheelDown
Send, {CtrlUp}
return |
|
|
| Back to top |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1717
|
Posted: Mon Aug 02, 2004 6:16 pm Post subject: |
|
|
why didn't THAT occur to me! _________________
 |
|
| Back to top |
|
 |
|