• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Difference between Lock and Hold?

Messages
10,158
Country
us-arizona
Hey guys,

I know.. Sounds goofy, but I would like to varify something.

Lock and hold.. Lock I am guessing means to 'lock emmediately, that particular feature, where as 'Hold' means to turn on a setting that is a variable 'measure' setting.

Thus to 'lock' your attitude in a climb, you would have a command that involves 'lock' not 'hold'.

Is that a correct guess?


Here is an example of the FS9 747 Heading Hold switch. Note that the top of the gauge states its 'lock' and below in the Click zone, its a 'hold'.



Code:
<Gauge Name="Autopilot Hdg Switch" Version="1.0">
   <Element>
      <Select>
         <Value>(A:Autopilot heading lock, bool)</Value>
         <Failures>
            <SYSTEM_ELECTRICAL_PANELS Action="0"/>
         </Failures>
         <Case Value="0">
            <Image Name="AP_Hdg_Off.bmp" ImageSizes="22,25,35,40"/>
         </Case>
         <Case Value="1">
            <Image Name="AP_Hdg_On.bmp" Bright="Yes" ImageSizes="22,25,35,40"/>
         </Case>
      </Select>
   </Element>
   <Mouse>
      <Help ID="HELPID_AUTOPILOT_HEADING_HOLD"/>
      <Tooltip ID="TOOLTIPTEXT_AUTOPILOT_HEADING_HOLD"/>
      <Area>
         <Cursor Type="Hand"/>
         <Click Event="AP_PANEL_HEADING_HOLD"/>
      </Area>
   </Mouse>
</Gauge>


I have some buttons on this AP that require 'instant hold' of a climb or alt or heading, as well as 'turning on the...' setting of that field of control. Thus I need to know here if LOCK and HOLD are both and the same, or totally different, and if different, which 'locks' and which turns on the preset 'setting' of that feature, such as heading/turn to set 056 degrees.


Bill
LHC

Kindergarten...
 
Last edited:
Bill, they mean the same thing... I know, it's confusing, but then remember...

...this is FS! :eek:
 
Back
Top