• 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.

MSFS20 Making a touchable tablet with MSFS Avionics Framework

Messages
1
Country
brazil
Hi,

I'm new to the MSFS SDK and I'm trying to build a tablet prototype using the MSFS Avionics Framework.

I was able to make it work and place it in the GdiPlusAircraft sample cockpit, but I couldn't figure out how to make the button work.

I tried to assign the onClick event of the button but it does nothing, it doesn't even call the console.log() method.

In the EJetEFB.tsx I've done a test by calling the addEventListener of the button element and it worked, but only when calling the click() method directly through the CoherentGT console. It's still not working when clicking on the button on the display.

My code is here https://github.com/nilsojr/e-jet-efb/tree/main and this is the configuration on panel.cfg of the GdiPlusAircraft:
Code:
// Panel Configuration file
// MyCompany Gdiplus Aircraft

[VCockpit01]
size_mm=1024,768
pixel_size=1024,768
texture=$SCREEN_1
background_color=0,0,255
htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=GdiPlusWasmModule.wasm&wasm_gauge=Compass, 0,0,1024,768

[VCockpit02]
size_mm=1024,768
pixel_size=1024,768
texture=$SCREEN_2
background_color=0,255,0
htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=GdiPlusWasmModule.wasm&wasm_gauge=Attitude, 0,0,1024,768

[Vcockpit03]
size_mm=1024,768
pixel_size=1024,768
texture=$SCREEN_3
background_color=0,255,0
htmlgauge00=MyInstrument/EJetEFB.html, 0,0,1024,768


I appreciate any hints or tips, thanks!
 
Back
Top