Gentlemen,
    During the configuration of my G&L I found the keyboard would not
select the 'W' axis.
    I changed this -

from

root_window.bind("x", lambda event: activate_axis(0))
root_window.bind("y", lambda event: activate_axis(1))
root_window.bind("z", lambda event: activate_axis(2))
root_window.bind("a", lambda event: activate_axis(3))


to

root_window.bind("x", lambda event: activate_axis(0))
root_window.bind("y", lambda event: activate_axis(1))
root_window.bind("z", lambda event: activate_axis(2))
root_window.bind("a", lambda event: activate_axis(3))
root_window.bind("b", lambda event: activate_axis(4))
root_window.bind("c", lambda event: activate_axis(5))
root_window.bind("u", lambda event: activate_axis(6))
root_window.bind("v", lambda event: activate_axis(7))
root_window.bind("w", lambda event: activate_axis(8)).

    This is working on the screen. Would this be all the changes
necessary. I could see no other things to change regarding this. If
there are other things to change please let me know.

thanks
Stuart

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to