Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Thanks a LOT to DocMoebiuz of MobiFlight! He developed an awesome Wasm Module that makes a lot of things accessible to us that we've waited for months for.
- // To use it:
- // 1. Download MobiFlight
- // 2. Go to Settings and enable the beta
- // 3. Go to Help, check for updataes
- // 4. After the update, go to the MobiFlight folder (where MFConnector.exe is located)
- // 5. Go inside the MSFS2020-module folder and copy the mobiflight-event-module folder to your community packages.
- // 6. (Re)start MSFS. Now you can input the SimConnect events below to control your systems!
- // For example, you can use this with X-Touch-Mini-FS2020 ( https://github.com/maartentamboer/X-Touch-Mini-FS2020 ) to control MFD Map Zoom on the Longitude:
- // {
- // "index": 6,
- // "event_up": { "event": "MobiFlight.AS3000_TSC_Vertical_BottomKnob_Small_INC", "type": "manual", "value": 1 },
- // "event_down": { "event": "MobiFlight.AS3000_TSC_Vertical_BottomKnob_Small_DEC", "type": "manual", "value": 1 },
- // "event_press": { "event": "MobiFlight.AS3000_TSC_Vertical_BottomKnob_Push", "type": "manual", "value": 1 }
- // },
- // Last Updated on 2020-12-13
- // For mobiflight-event-module 0.1.0 (From MobiFlight Beta 7.10.0.13)
- // with StandaloneModule.wasm MD5: e9346e2ea86ecc7030cbd41faadef2e3
- // This is a list of all SimConnect Event IDs supported by this version of the mobiflight-event-module
- // G1000 PFD
- MobiFlight.AS1000_PFD_VOL_1_INC
- MobiFlight.AS1000_PFD_VOL_1_DEC
- MobiFlight.AS1000_PFD_VOL_2_INC
- MobiFlight.AS1000_PFD_VOL_2_DEC
- MobiFlight.AS1000_PFD_NAV_Switch
- MobiFlight.AS1000_PFD_NAV_Large_INC
- MobiFlight.AS1000_PFD_NAV_Large_DEC
- MobiFlight.AS1000_PFD_NAV_Small_INC
- MobiFlight.AS1000_PFD_NAV_Small_DEC
- MobiFlight.AS1000_PFD_NAV_Push
- MobiFlight.AS1000_PFD_COM_Switch_Long
- MobiFlight.AS1000_PFD_COM_Switch
- MobiFlight.AS1000_PFD_COM_Large_INC
- MobiFlight.AS1000_PFD_COM_Large_DEC
- MobiFlight.AS1000_PFD_COM_Small_INC
- MobiFlight.AS1000_PFD_COM_Small_DEC
- MobiFlight.AS1000_PFD_COM_Push
- MobiFlight.AS1000_PFD_BARO_INC
- MobiFlight.AS1000_PFD_BARO_DEC
- MobiFlight.AS1000_PFD_CRS_INC
- MobiFlight.AS1000_PFD_CRS_DEC
- MobiFlight.AS1000_PFD_CRS_PUSH
- MobiFlight.AS1000_PFD_SOFTKEYS_1
- MobiFlight.AS1000_PFD_SOFTKEYS_2
- MobiFlight.AS1000_PFD_SOFTKEYS_3
- MobiFlight.AS1000_PFD_SOFTKEYS_4
- MobiFlight.AS1000_PFD_SOFTKEYS_5
- MobiFlight.AS1000_PFD_SOFTKEYS_6
- MobiFlight.AS1000_PFD_SOFTKEYS_7
- MobiFlight.AS1000_PFD_SOFTKEYS_8
- MobiFlight.AS1000_PFD_SOFTKEYS_9
- MobiFlight.AS1000_PFD_SOFTKEYS_10
- MobiFlight.AS1000_PFD_SOFTKEYS_11
- MobiFlight.AS1000_PFD_SOFTKEYS_12
- MobiFlight.AS1000_PFD_DIRECTTO
- MobiFlight.AS1000_PFD_ENT_Push
- MobiFlight.AS1000_PFD_CLR_Long
- MobiFlight.AS1000_PFD_CLR
- MobiFlight.AS1000_PFD_MENU_Push
- MobiFlight.AS1000_PFD_FPL_Push
- MobiFlight.AS1000_PFD_PROC_Push
- MobiFlight.AS1000_PFD_FMS_Upper_INC
- MobiFlight.AS1000_PFD_FMS_Upper_DEC
- MobiFlight.AS1000_PFD_FMS_Upper_PUSH
- MobiFlight.AS1000_PFD_FMS_Lower_INC
- MobiFlight.AS1000_PFD_FMS_Lower_DEC
- MobiFlight.AS1000_PFD_RANGE_INC
- MobiFlight.AS1000_PFD_RANGE_DEC
- MobiFlight.AS1000_PFD_JOYSTICK_PUSH
- MobiFlight.AS1000_PFD_ActivateMapCursor
- MobiFlight.AS1000_PFD_DeactivateMapCursor
- MobiFlight.AS1000_PFD_JOYSTICK_RIGHT
- MobiFlight.AS1000_PFD_JOYSTICK_LEFT
- MobiFlight.AS1000_PFD_JOYSTICK_UP
- MobiFlight.AS1000_PFD_JOYSTICK_DOWN
- // G1000 MFD
- MobiFlight.AS1000_MFD_VOL_1_INC
- MobiFlight.AS1000_MFD_VOL_1_DEC
- MobiFlight.AS1000_MFD_VOL_2_INC
- MobiFlight.AS1000_MFD_VOL_2_DEC
- MobiFlight.AS1000_MFD_NAV_Switch
- MobiFlight.AS1000_MFD_NAV_Large_INC
- MobiFlight.AS1000_MFD_NAV_Large_DEC
- MobiFlight.AS1000_MFD_NAV_Small_INC
- MobiFlight.AS1000_MFD_NAV_Small_DEC
- MobiFlight.AS1000_MFD_NAV_Push
- MobiFlight.AS1000_MFD_COM_Switch_Long
- MobiFlight.AS1000_MFD_COM_Switch
- MobiFlight.AS1000_MFD_COM_Large_INC
- MobiFlight.AS1000_MFD_COM_Large_DEC
- MobiFlight.AS1000_MFD_COM_Small_INC
- MobiFlight.AS1000_MFD_COM_Small_DEC
- MobiFlight.AS1000_MFD_COM_Push
- MobiFlight.AS1000_MFD_BARO_INC
- MobiFlight.AS1000_MFD_BARO_DEC
- MobiFlight.AS1000_MFD_CRS_INC
- MobiFlight.AS1000_MFD_CRS_DEC
- MobiFlight.AS1000_MFD_CRS_PUSH
- MobiFlight.AS1000_MFD_SOFTKEYS_1
- MobiFlight.AS1000_MFD_SOFTKEYS_2
- MobiFlight.AS1000_MFD_SOFTKEYS_3
- MobiFlight.AS1000_MFD_SOFTKEYS_4
- MobiFlight.AS1000_MFD_SOFTKEYS_5
- MobiFlight.AS1000_MFD_SOFTKEYS_6
- MobiFlight.AS1000_MFD_SOFTKEYS_7
- MobiFlight.AS1000_MFD_SOFTKEYS_8
- MobiFlight.AS1000_MFD_SOFTKEYS_9
- MobiFlight.AS1000_MFD_SOFTKEYS_10
- MobiFlight.AS1000_MFD_SOFTKEYS_11
- MobiFlight.AS1000_MFD_SOFTKEYS_12
- MobiFlight.AS1000_MFD_DIRECTTO
- MobiFlight.AS1000_MFD_ENT_Push
- MobiFlight.AS1000_MFD_CLR_Long
- MobiFlight.AS1000_MFD_CLR
- MobiFlight.AS1000_MFD_MENU_Push
- MobiFlight.AS1000_MFD_FPL_Push
- MobiFlight.AS1000_MFD_PROC_Push
- MobiFlight.AS1000_MFD_FMS_Upper_INC
- MobiFlight.AS1000_MFD_FMS_Upper_DEC
- MobiFlight.AS1000_MFD_FMS_Upper_PUSH
- MobiFlight.AS1000_MFD_FMS_Lower_INC
- MobiFlight.AS1000_MFD_FMS_Lower_DEC
- MobiFlight.AS1000_MFD_RANGE_INC
- MobiFlight.AS1000_MFD_RANGE_DEC
- MobiFlight.AS1000_MFD_JOYSTICK_PUSH
- MobiFlight.AS1000_MFD_ActivateMapCursor
- MobiFlight.AS1000_MFD_DeactivateMapCursor
- MobiFlight.AS1000_MFD_JOYSTICK_RIGHT
- MobiFlight.AS1000_MFD_JOYSTICK_LEFT
- MobiFlight.AS1000_MFD_JOYSTICK_UP
- MobiFlight.AS1000_MFD_JOYSTICK_DOWN
- // G1000 MID
- MobiFlight.AS1000_MID_COM_1_Push
- MobiFlight.AS1000_MID_COM_2_Push
- MobiFlight.AS1000_MID_COM_3_Push
- MobiFlight.AS1000_MID_COM_Mic_1_Push
- MobiFlight.AS1000_MID_COM_Mic_2_Push
- MobiFlight.AS1000_MID_COM_Mic_3_Push
- MobiFlight.AS1000_MID_COM_Swap_1_2_Push
- MobiFlight.AS1000_MID_TEL_Push
- MobiFlight.AS1000_MID_PA_Push
- MobiFlight.AS1000_MID_SPKR_Push
- MobiFlight.AS1000_MID_MKR_Mute_Push
- MobiFlight.AS1000_MID_HI_SENS_Push
- MobiFlight.AS1000_MID_DME_Push
- MobiFlight.AS1000_MID_NAV_1_Push
- MobiFlight.AS1000_MID_NAV_2_Push
- MobiFlight.AS1000_MID_ADF_Push
- MobiFlight.AS1000_MID_AUX_Push
- MobiFlight.AS1000_MID_MAN_SQ_Push
- MobiFlight.AS1000_MID_Play_Push
- MobiFlight.AS1000_MID_Isolate_Pilot_Push
- MobiFlight.AS1000_MID_Isolate_Copilot_Push
- MobiFlight.AS1000_MID_Pass_Copilot_INC
- MobiFlight.AS1000_MID_Pass_Copilot_DEC
- MobiFlight.AS1000_MID_Display_Backup_Push
- // G3000 PFD
- MobiFlight.AS3000_PFD_SOFTKEYS_1
- MobiFlight.AS3000_PFD_SOFTKEYS_2
- MobiFlight.AS3000_PFD_SOFTKEYS_3
- MobiFlight.AS3000_PFD_SOFTKEYS_4
- MobiFlight.AS3000_PFD_SOFTKEYS_5
- MobiFlight.AS3000_PFD_SOFTKEYS_6
- MobiFlight.AS3000_PFD_SOFTKEYS_7
- MobiFlight.AS3000_PFD_SOFTKEYS_8
- MobiFlight.AS3000_PFD_SOFTKEYS_9
- MobiFlight.AS3000_PFD_SOFTKEYS_10
- MobiFlight.AS3000_PFD_SOFTKEYS_11
- MobiFlight.AS3000_PFD_SOFTKEYS_12
- // G3000 PFD Top Panel
- MobiFlight.AS3000_PFD_BottomKnob_Small_INC
- MobiFlight.AS3000_PFD_BottomKnob_Small_DEC
- MobiFlight.AS3000_PFD_BottomKnob_Push_Long
- MobiFlight.AS3000_PFD_BottomKnob_Push
- MobiFlight.AS3000_PFD_BottomKnob_Large_INC
- MobiFlight.AS3000_PFD_BottomKnob_Large_DEC
- MobiFlight.AS3000_PFD_TopKnob_Large_INC
- MobiFlight.AS3000_PFD_TopKnob_Large_DEC
- MobiFlight.AS3000_PFD_TopKnob_Small_INC
- MobiFlight.AS3000_PFD_TopKnob_Small_DEC
- // G3000 MFD
- MobiFlight.AS3000_MFD_SOFTKEYS_1
- MobiFlight.AS3000_MFD_SOFTKEYS_2
- MobiFlight.AS3000_MFD_SOFTKEYS_3
- MobiFlight.AS3000_MFD_SOFTKEYS_4
- MobiFlight.AS3000_MFD_SOFTKEYS_5
- MobiFlight.AS3000_MFD_SOFTKEYS_6
- MobiFlight.AS3000_MFD_SOFTKEYS_7
- MobiFlight.AS3000_MFD_SOFTKEYS_8
- MobiFlight.AS3000_MFD_SOFTKEYS_9
- MobiFlight.AS3000_MFD_SOFTKEYS_10
- MobiFlight.AS3000_MFD_SOFTKEYS_11
- MobiFlight.AS3000_MFD_SOFTKEYS_12
- // GTX 580 TBM
- MobiFlight.AS3000_TSC_Horizontal_SoftKey_1
- MobiFlight.AS3000_TSC_Horizontal_SoftKey_2
- MobiFlight.AS3000_TSC_Horizontal_SoftKey_3
- MobiFlight.AS3000_TSC_Horizontal_TopKnob_Large_INC
- MobiFlight.AS3000_TSC_Horizontal_TopKnob_Large_DEC
- MobiFlight.AS3000_TSC_Horizontal_TopKnob_Small_INC
- MobiFlight.AS3000_TSC_Horizontal_TopKnob_Small_DEC
- MobiFlight.AS3000_TSC_Horizontal_TopKnob_Push_Long
- MobiFlight.AS3000_TSC_Horizontal_TopKnob_Push
- MobiFlight.AS3000_TSC_Horizontal_BottomKnob_Small_INC
- MobiFlight.AS3000_TSC_Horizontal_BottomKnob_Small_DEC
- MobiFlight.AS3000_TSC_Horizontal_BottomKnob_Push
- // GTX 580 Longitude
- MobiFlight.AS3000_TSC_Vertical_BottomKnob_Small_INC
- MobiFlight.AS3000_TSC_Vertical_BottomKnob_Small_DEC
- MobiFlight.AS3000_TSC_Vertical_BottomKnob_Push_Long
- MobiFlight.AS3000_TSC_Vertical_BottomKnob_Push
- MobiFlight.AS3000_TSC_Vertical_BottomKnob_Large_INC
- MobiFlight.AS3000_TSC_Vertical_BottomKnob_Large_DEC
- MobiFlight.AS3000_TSC_Vertical_TopKnob_Large_INC
- MobiFlight.AS3000_TSC_Vertical_TopKnob_Large_DEC
- MobiFlight.AS3000_TSC_Vertical_TopKnob_Small_INC
- MobiFlight.AS3000_TSC_Vertical_TopKnob_Small_DEC
- // KAP140
- MobiFlight.KAP140_Push_AP
- MobiFlight.KAP140_Push_HDG
- MobiFlight.KAP140_Push_NAV
- MobiFlight.KAP140_Push_APR
- MobiFlight.KAP140_Push_REV
- MobiFlight.KAP140_Push_ALT
- MobiFlight.KAP140_Push_UP
- MobiFlight.KAP140_Push_DN
- MobiFlight.KAP140_Long_Push_BARO
- MobiFlight.KAP140_Push_BARO
- MobiFlight.KAP140_Push_ARM
- MobiFlight.KAP140_Knob_Inner_INC
- MobiFlight.KAP140_Knob_Inner_DEC
- MobiFlight.KAP140_Knob_Outer_INC
- MobiFlight.KAP140_Knob_Outer_DEC
- // M803
- MobiFlight.oclock_select
- MobiFlight.oclock_oat
- MobiFlight.oclock_control_long
- MobiFlight.oclock_control
- // GNS 530
- MobiFlight.AS530_ENT_Push
- MobiFlight.AS530_MENU_Push
- MobiFlight.AS530_FPL_Push
- MobiFlight.AS530_DirectTo_Push
- MobiFlight.AS530_CLR_Push_Long
- MobiFlight.AS530_CLR_Push
- MobiFlight.AS530_MSG_Push
- MobiFlight.AS530_OBS_Push
- MobiFlight.AS530_VNAV_Push
- MobiFlight.AS530_PROC_Push
- MobiFlight.AS530_COMSWAP_Push
- MobiFlight.AS530_NAVSWAP_Push
- MobiFlight.AS530_RNG_Dezoom
- MobiFlight.AS530_RNG_Zoom
- MobiFlight.AS530_RightLargeKnob_Right
- MobiFlight.AS530_RightLargeKnob_Left
- MobiFlight.AS530_LeftLargeKnob_Right
- MobiFlight.AS530_LeftLargeKnob_Left
- MobiFlight.AS530_RightSmallKnob_Right
- MobiFlight.AS530_RightSmallKnob_Left
- MobiFlight.AS530_RightSmallKnob_Push
- MobiFlight.AS530_LeftSmallKnob_Right
- MobiFlight.AS530_LeftSmallKnob_Left
- MobiFlight.AS530_LeftSmallKnob_Push
- // GNS 430
- MobiFlight.AS430_ENT_Push
- MobiFlight.AS430_MENU_Push
- MobiFlight.AS430_FPL_Push
- MobiFlight.AS430_DirectTo_Push
- MobiFlight.AS430_CLR_Push_Long
- MobiFlight.AS430_CLR_Push
- MobiFlight.AS430_MSG_Push
- MobiFlight.AS430_OBS_Push
- MobiFlight.AS430_PROC_Push
- MobiFlight.AS430_COMSWAP_Push
- MobiFlight.AS430_NAVSWAP_Push
- MobiFlight.AS430_RNG_Dezoom
- MobiFlight.AS430_RNG_Zoom
- MobiFlight.AS430_RightLargeKnob_Right
- MobiFlight.AS430_RightLargeKnob_Left
- MobiFlight.AS430_LeftLargeKnob_Right
- MobiFlight.AS430_LeftLargeKnob_Left
- MobiFlight.AS430_RightSmallKnob_Right
- MobiFlight.AS430_RightSmallKnob_Left
- MobiFlight.AS430_RightSmallKnob_Push
- MobiFlight.AS430_LeftSmallKnob_Right
- MobiFlight.AS430_LeftSmallKnob_Left
- MobiFlight.AS430_LeftSmallKnob_Push
- // KR 87
- MobiFlight.adf_AntAdf
- MobiFlight.adf_bfo
- MobiFlight.adf_frqTransfert
- MobiFlight.adf_FltEt
- MobiFlight.adf_SetRst
- // KT76C
- MobiFlight.TransponderIDT
- MobiFlight.TransponderVFR
- MobiFlight.TransponderCLR
- MobiFlight.Transponder0
- MobiFlight.Transponder1
- MobiFlight.Transponder2
- MobiFlight.Transponder3
- MobiFlight.Transponder4
- MobiFlight.Transponder5
- MobiFlight.Transponder6
- MobiFlight.Transponder7
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement