Viewport navigability suggestion

 From:  Michael Gibson
6145.4 In reply to 6145.3 
Hi Max,

> I would like the Down and Up arrow keys to move forward and backwards,
> and the Left and Right arrow keys to strafe left and right.

Try these:

KeyCommand
LeftArrowscript: moi.ui.mainWindow.viewpanel.getViewport('3D').pan( -0.2, 0.0, 0.0 );
RightArrowscript: moi.ui.mainWindow.viewpanel.getViewport('3D').pan( 0.2, 0.0, 0.0 );
UpArrowscript: moi.ui.mainWindow.viewpanel.getViewport('3D').pan( 0.0, 0.0, -0.5 );
DownArrow    script: moi.ui.mainWindow.viewpanel.getViewport('3D').pan( 0.0, 0.0, 0.5 );


- Michael