Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Multiple Keys -how to?

Featured Replies

I got my panel installed and it's up and running minus two switches which require multiple keypresses. This is very exciting to say the least. I'm actually on my way. Sort of. :-)This is what I have for the one switch:void Land_Gear.Landing_Lights.On(void){keypress(CTRL); althit(L); keyrelease(CTRL);}void Land_Gear.Landing_Lights.Off(void){keypress(CTRL); althit(L); keyrelease(CTRL);}It doesn't do anything in Falcon SP3 whatsoever. If I press "Control+Alt+l (little L non shifted)" in the sim the switch activates. Also my code for my parking brakes is as follows:void Land_Gear.Park_Brake_On.On(void){althit(P);}void Land_Gear.Park_Brake_On.Off(void){althit(P);}void Land_Gear.Park_Brake_Off.On(void){althit(P);}void Land_Gear.Park_Brake_Off.Off(void){althit(P);}I have it connected to an on/off/on switch. It just activates "Freeze" in the sim, not parking brakes, but once again I push "Alt+p" and the parking brakes set in game.It seems to me like my epic is using shift instead of alt. Here's the result of the parking brake switch pressed...........pressing in now........P See what I mean. It gives a capital P instead of Alt+p which would give me an error sound while typing this.Any ideas would be greatly appreciated.EricP.S. thanks Jam for showing me the way to get started.

On the parking break code, that is the same as mine so it should work. I would look for a stuck shift key, caused by either your EPIC code, your Falcon4 setup (I had stuck shift keys with Saitek X-35 HOTAS all the time), or your actual keyboard.Here's my code for the landing gear lights. You may want to try it my long way, but I think your real problem is a stuck shift key:void Land_Gear.Landing_Lights.On(void){keypress(CTRL); keypress(ALT); shifthit(L);keyrelease(ALT);keyrelease(CTRL);}void Land_Gear.Landing_Lights.Off(void){keypress(CTRL); keypress(ALT); shifthit(L);keyrelease(ALT);keyrelease(CTRL);}

As I checked your code against Falcon4SP3, your landing gear lights code is correct.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.