How can I assign mouse scroll to move windows up and down?

R

Reotaro Hashemoto

Guest
Hi,
Is there a method or SKILL code to assign the middle mouse scroll to
be used to scroll forms, schematic and layout windows up and down as
in case of scrolling in windows and Linux applications?
Thanks in advance,
Reotaro,
 
Hi,
Is there a method or SKILL code to assign the middle mouse scroll to
be used to scroll forms, schematic and layout windows up and down as
in case of scrolling in windows and Linux applications?
Thanks in advance,
Reotaro,
The mouse wheel is mapped to mouse buttons 4 and 5 :

foreach( Application '("Schematics" "Symbol" "Layout")
hiSetBindKey(Application "<Btn4Down>" "geScroll(nil \"n\" nil)")
hiSetBindKey(Application "<Btn5Down>" "geScroll(nil \"s\" nil)")
) ; foreach


Stéphane
 
On May 14, 1:17 pm, "S. Badel" <stephane.ba...@REMOVETHISepfl.ch>
wrote:
Hi,
Is there a method or SKILL code to assign the middle mouse scroll to
be used to scroll forms, schematic and layout windows up and down as
in case of scrolling in windows and Linux applications?
Thanks in advance,
Reotaro,

The mouse wheel is mapped to mouse buttons 4 and 5 :

foreach( Application '("Schematics" "Symbol" "Layout")
hiSetBindKey(Application "<Btn4Down>" "geScroll(nil \"n\" nil)")
hiSetBindKey(Application "<Btn5Down>" "geScroll(nil \"s\" nil)")
) ; foreach

Stéphane
Thank you Stéphane for prompt reply,
Do you know how can i make it also for forms (e.g. Components query
forms)?
Thanks alot,
Reotaro,
 

Welcome to EDABoard.com

Sponsor

Back
Top