November 3, 201312 yr Hi. Just wondering. I have EZDOK and find it hard to remember the keystrokes to move around the virtual cockpit. Is it possible to add clickspot areas to the panels, to move around the virtual cockpit?
November 4, 201312 yr Easy? Maybe ????? Possible ? Yes It would require a registered FSUIPC to begin with ( no other option) then.... Xml gauges with simple L:Vars to send a value to be trapped and read by a .LUA script incorporated by FSUIPC then sending the keyboard command as setup by EZDOK. For instance - The EZDOK FMC view = CRTL - SHFT - X Then you would need a gauge that triggered by your click would set the L:Var... 1 (>L:EZD_FMC, bool) <Gauge Name="EZDOK FMC VIEW A-THOR-A-TAY" Version="1.0"> <Image Name="Blank.bmp"/> <Mouse> <Cursor Type="Hand"/> <Click Repeat="No">1 (>L:EZD_FMC, bool)</Click> </Mouse> </Gauge> Then, once this gauge is installed in the panel where you want it FSUIPC will have to read it via a LUA program being run either - always or just on this aircraft, or, just when you want. ( FSUIPC4 for Advanced Users.pdf) The Lua file itself - not tested whatsoever but, basic in its logic. ( Not in a code block for coloring ) __________________________________________________________ function Show_Me_Da_FMC("LVar", value) -- The function called every time (L:EZD_FMC, bool) changes state. if value == 1 then -- If 1 show me the FMC ipc.keypress(88, 11) -- Perform a CRTL - SHFT - X, and change the view thru EZDOK again see --->FSUIPC4 for Advanced Users.pdf ipc.writeLvar("EZD_FMC", 0) -- Set the (L:EZD_FMC, bool) back to zero " 0 " end -- end if end -- end function event.Lvar("EZD_FMC", 200, "Show_Me_Da_FMC") -- This checks the (L:EZD_FMC, bool) state every 200 milliseconds, if the state changes, call the function above. __________________________________________________________ It is really not that hard perse', a little planning, quite a bit of reading of the FSUIPC documents if not familiar, patience, and a bit of testing and you could be all set up. FS RTWR SHRS F-111 JoinFS Little Navmap
November 21, 201312 yr Author Thankyou so much for your reply. Just need to get my head around all the info you have supplied me. Cheers mate
Create an account or sign in to comment