• There seems to be an uptick in Political comments in recent months. Those of us who are long time members of the site know that Political and Religious content has been banned for years. Nothing has changed. Please leave all political and religious comments out of the forums.

    If you recently joined the forums you were not presented with this restriction in the terms of service. This was due to a conversion error when we went from vBulletin to Xenforo. We have updated our terms of service to reflect these corrections.

    Please note any post refering to a politician will be considered political even if it is intended to be humor. Our experience is these topics have a way of dividing the forums and causing deep resentment among members. It is a poison to the community. We appreciate compliance with the rules.

    The Staff of SOH

  • Server side Maintenance is done. We still have an update to the forum software to run but that one will have to wait for a better time.

Kodiak 2.6 question

bpieke

Members +
Hi, I searched for this in the forum, but could not find it...

I love/hate my new Kodiak :mixedsmi:

The plane is great and I'm sure that I'll be flying it often, but my mouse wheel is not (well) supported in the G1000, so I'm having lots of trouble adjusting frequencies, altitude etc. The stuff I do all the time when flying.

I'm about ready to take the XML code apart and change every mouse click spot so that the mouse wheel will turn each knob forward and backward, but before I do that - has anybody got a simpler solution for me?

Not sure if this has been covered many times over.... but I just got the plane and am trying to get comfortable with it... is there possibly an update I need to apply?

Bert
 
Hello Bert,

My apologies in that we cannot do small updates so easily and for each person. We have quite a few planes and coming up with an update must encompass a large amount of fixes and updates as it goes out world wide and can involve hundreds of people redownloading the package or various updates for it.

My second apology also that it doesnt have mouse wheel adjustments for you to more easily use.

I hate it when that happens..

Well, in the future I'll try to use mouse tuning with buttons more often. I am a clicker myself. I also like to simplify code and am notorius for having single directional tuning so you cannot go backwards but must go all the way through the numbers to get back to where you were.


Bill
LHC
 
OK Bill,

Thanks for the reply, and apologies accepted!

If the plane were not that great, I would just park it in the hangar, but I really like this plane, so I'll change the clickspots...
Give me something to do during the rainy season in the Pacific NW.

Thanks for a great plane!!

Bert
 
Here is an example of how it can be done.. in case anyone else wants to duplicate this..

HTML:
  <!-- XXX ============== AUTOPILOT ALTITUDE SETTING KNOB ====================== -->


     <Area Left="4" Top="612" Width="80" Height="63">
         <Area Right="30">
         <Tooltip>Decr AP Altitude</Tooltip>
         <Cursor Type="DownArrow"/>
         <Click Repeat="Yes"> 100 (>K:AP_ALT_VAR_DEC) </Click>         
         </Area>     

         <Area Left="30">
         <Tooltip>Incr AP Altitude</Tooltip>
         <Cursor Type="UpArrow"/>
         <Click Repeat="Yes"> 100 (>K:AP_ALT_VAR_INC) </Click>
         </Area>
     </Area>

     <Area Left="34" Top="612" Width="20" Height="63">
         <Help ID="HELPID_AUTOPILOT_ALTITUDE_HOLD"/>
         <Tooltip ID="TOOLTIPTEXT_AUTOPILOT_ALTITUDE_HOLD"/>
         <Cursor Type="Hand"/>
         <Click Event="AP_ALT_HOLD"/>
      </Area>
 
Back
Top