* Melchior FRANZ -- Saturday 26 August 2006 07:42:
> * Josh Babcock -- Saturday 26 August 2006 04:06:
> > I'm looking around in the UFO files, and I can't find where the modifier
> > keys for the up/down/left/right keys are defined.
> 
>   $ vi $FG_ROOT/Aircraft/ufo/ufo.nas +875

Or rather +715:

  incElevator = controls.incElevator;
  controls.incElevator = func(step, apstep) {
          if (KbdCtrl.getBoolValue()) {                  # <====
                  modelmgr.cycle(step > 0 ? 1 : -1);
          } else {
                  incElevator(step, apstep);
          }
  }

That's only for cursor up/down, though. There's nothing that
considers left/right. Other cases of modifier use are together
with mouse clicks. The problematic Alt key isn't used at all
(at the moment :-).

m.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Flightgear-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to