Originally posted by HomeBoy
Gunner,
Can you show me how you programmed the film recorder to stop when you exit flight? I don't see any such command. All I can find is a "Film Recorder toggle" (ALT-R). That obviously is not how you're doing it. I found a "Film Stop" command (s) but that apparently only applies to the Film Viewer as "s" is "Rudder Center" in the game.
Thanks
I don't know anything about the CH programing, but I can tell you how I did it on the Cougar.
The Cougar has 32 physical buttons, and 48 vurtual buttons (logical flags).
I use the button for start/stop of the engine as a test to check if the film is on. If it's on, It gives me a visual indication by changing the text window size up and down, then shuts off the film.
-To do this I set a flag when I press the button that starts the recorder.
-When the engine start/stop is pressed, it checks to see if the recorder flag is on.
-If it off, it does nothing.
-If it is on, it sends the visual indication, then shuts the film off.
The actual code is here (X is a flag, S is a physical switch):
Rem Film Recorder Controler
DEF X3 S2 AND S3 Rem S2 /I (Film on/off) Flag
DEF X4 X3* Rem Film ON Toggle Flag
DEF X5 S2 NOT S3 Rem S2 /O (Engine on/off) Flag
DEF X6 X5 AND X4 Rem Film ON Engine ON Flag
BTN X3 Film_Rec Rem Film on/off
BTN X6 Msg_Win_Size DLY(1000) Msg_Win_Size KD(X3) KU(X3) Rem Turn Film Off
The only quirk, is if it gets out of sync, the film will not shut off. I fix it by starting the engine once with the keyboard. I film everything, and it works well.
Gunner