AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Use shortkey to change text size in internet explorer...

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Ray
Guest





PostPosted: Sun Aug 01, 2004 2:57 pm    Post subject: Use shortkey to change text size in internet explorer... Reply with quote

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

PostPosted: Sun Aug 01, 2004 4:14 pm    Post subject: Reply with quote

ctrl + mouse scroll
_________________
Back to top
View user's profile Send private message
Ray
Guest





PostPosted: Mon Aug 02, 2004 2:15 am    Post subject: Reply with quote

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

PostPosted: Mon Aug 02, 2004 3:23 am    Post subject: Reply with quote

'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
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10467

PostPosted: Mon Aug 02, 2004 3:32 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
Rajat



Joined: 28 Mar 2004
Posts: 1717

PostPosted: Mon Aug 02, 2004 6:16 pm    Post subject: Reply with quote

Rolling Eyes why didn't THAT occur to me!
_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group