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:
I appreciate any hints or tips, thanks!
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!