Jump to content
The simFlight Network Forums

Billydragon

Members
  • Posts

    24
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Billydragon

  1. After 6 hours fly again test with clean MSFS and FSUIPC7. No more crash. every things working.
  2. thank you Pete Dowson. Crash happened only FSUIPC7 terminated it self and all programs opened by FSUIPC terminated. MSFS it self still running normal. I make clean re install Linda, FTDI driver for Vrinsight, clean install FSUIPC, remove not in used addons then MSFS is running without error now. I think Linda is reason because Linda offten restart when i flying. But no more crash or terminated FSUIPC or Linda. Will try more.
  3. I need help pls. After upgrade to Windows 11, my MSFS 2020 running without error but FSUIPC7 is crash end closed randomly. Here is log file. Thank you. FSUIPC7.log
  4. Thank you for your information. I will try it.
  5. I need to setting Vrinsight MCP Combo II to control MSFS Asobo B787 Map Range and MapMode using rotary encoder but not success to find any Lvar or Control to do it. Any help pls? Thank you.
  6. I try mapping keyboard and vjoy to MSFS via FSUIPC7. MSFS can see vjoy buttons up to 128. But FSUIPC each vJoy device only up to 32 buttons. Ineed to creat many vjoy device to do that. Can you fix this?
  7. i has exactly same problem. Rudder axis not working in virtual cockpit view. if i switch to outside view of aircraft then aircraft moving normal as i control. in VC mode view aircraft only moving straight.
  8. I Has buy new FSUIPC5 and the Registration key is normal work. but it make my WideFS key wrong because User Name: my Order from Simmarket for FSUIPC5 with the Name: NGUYEN DUONG and email: duongnt@xxxx.xxx My FSUIPC4+WIDEFS some years ago is under my full name: Duong Nguyen Thanh and other emai: billydragon@xxx.xxx in FSUIPC5.key file saved only 1 name with both Keys and emails. User] Name=NGUYEN DUONG Address=duongnt@xxx.xxx FSUIPC=xxxxxxxxxxxx WideFSaddress=billydragon@xxx.xxx WideFS=xxxxxxxxxxxx So, if i change name to: NGUYEN DUONG then FSUIPC5 show registered but WideFS not. If I change back name to Duong Nguyen Thanh then WideFS will registered but FSUIPC5 not. Please help me to make both key registered. Thank you.
  9. Thanks to prokopiu for his script using FSUIPC. I success make script to make Vrinsight CDU II work with PMDG 737NGX without original VriSim. Because VriSim allway ask to config Panel FMC, I make change Display size of CDU II in fsx.cfg to 768x1024x32 then can using undock panel in full screen mode, don't start VriSIm. Here is script for it. Vri_CDU2_PMDG737NGX.zip
  10. You must uninstall Saitek drivers. It don't need more when you using SPAD. PMDG can't update MCP infor to SPAD.
  11. my SPAD work fine on PC running FSX or network PC running WideClient. The method is the same. may be you have some thing wrong. I planning make short video howto do when i come back from Biz trips for you
  12. OK. Step by step as follow: 1. Put file *.lua in FSX/Modules/ folder then restart FSX. 2. SPAD setting to send your buttons as virtual FSUIPC joystick 3. Open FSUIPC in button tab and wait SPAD send button (you can try by click to send in SPAD or real button in Saitek panels) 4. Assignment that button to run LUA PMDG737NGX_AP.LUA (for example) and Parameter need to put number equivalent to function in Lua file. Note: Not all function in my script work because i don't need it. Only functions like: --function NGX_LAND_ALL_on () if ipcPARAM == 1 then --DspShow ("LAND", "ON") ipc.writeLvar('ngx_switch_110_a', 100); NGX_LAND_RETR_L_on () NGX_LAND_RETR_R_on () NGX_LAND_FIXED_L_on () NGX_LAND_FIXED_R_on () ipc.sleep(100) ipc.writeLvar('ngx_switch_110_a', 0); end --function NGX_LAND_ALL_off () if ipcPARAM == 2 then NGX_LAND_RETR_L_off () ipc.sleep(100) NGX_LAND_RETR_R_off () ipc.sleep(100) NGX_LAND_FIXED_L_off () ipc.sleep(100) NGX_LAND_FIXED_R_off () end Let see : if ipcPARAM == 1 then meaning if Parameter=1 you send to LUA PMDG737NGX_OVH.LUA then this button will turn on all Landing light, set Parameter =2 in this button when release will turn Off Landing light as --function NGX_LAND_ALL_off () if ipcPARAM == 2 then ... you can get original files action.lua from LINDA aircaft folder change name to as you want (PMDG737.lua or i seperate t to OVH and AP), find function you want then mark function name, replace it by if ipcPARAM = XX, where XX is number you use as parameter FSUIPC will send when assgnment buttons.
  13. you need to make profile like PAYABLE or HEAVY then change all buttons you want to send FSUIPC Virtual button (NOT FSUIPC OFFSET) try click Send Button to FS you can see FSUIPC received as button the assignment it to lua script i post with parameter.
  14. You can use Spad + FSUIPC to control 737NGX. Try my Lua files. PMDG737NGX_AP.LUA -- PMDG NGX737 module v. 1.4 -- -- Jan 2012 -- ## Autopilot switches ############### meters2feet = 100/2.54/12 feet2meters = 12*2.54/100 function NGX_AP_FD1_toggle () ipc.control(70010, 536870912) ipc.control(70010, 131072) end --function NGX_AP_FD1_on () if ipcPARAM == 1 then if ipc.readLvar('ngx_switch_378_a') == 100 then NGX_AP_FD1_toggle () end end --function NGX_AP_FD1_off () if ipcPARAM == 2 then if ipc.readLvar('ngx_switch_378_a') == 0 then NGX_AP_FD1_toggle () end end function NGX_AP_FD2_toggle () ipc.control(70039, 536870912) ipc.control(70039, 131072) end --function NGX_AP_FD2_on () if ipcPARAM == 3 then if ipc.readLvar('ngx_switch_407_a') == 100 then NGX_AP_FD2_toggle () end end --function NGX_AP_FD2_off () if ipcPARAM == 4 then if ipc.readLvar('ngx_switch_407_a') == 0 then NGX_AP_FD2_toggle () end end --function NGX_AP_FD_both_on () if ipcPARAM == 5 then if ipc.readLvar('ngx_switch_378_a') == 100 then NGX_AP_FD1_toggle () end if ipc.readLvar('ngx_switch_407_a') == 100 then NGX_AP_FD2_toggle () end end --function NGX_AP_FD_both_off () if ipcPARAM == 6 then if ipc.readLvar('ngx_switch_378_a') == 0 then NGX_AP_FD1_toggle () end if ipc.readLvar('ngx_switch_407_a') == 0 then NGX_AP_FD2_toggle () end end function NGX_AP_ATHR_toggle () ipc.control(70012, 536870912) ipc.control(70012, 131072) end --function NGX_AP_ATHR_arm () if ipcPARAM == 7 then if ipc.readLvar('ngx_switch_380_a') == 100 then NGX_AP_ATHR_toggle () end end --function NGX_AP_ATHR_off () if ipcPARAM == 8 then if ipc.readLvar('ngx_switch_380_a') == 0 then NGX_AP_ATHR_toggle () end end function NGX_AP_MASTER_toggle () ipc.control(70038, 536870912) ipc.control(70038, 131072) end --function NGX_AP_MASTER_on () if ipcPARAM == 9 then if ipc.readLvar('ngx_switch_406_a') == 100 then NGX_AP_MASTER_toggle () end end --function NGX_AP_MASTER_off () if ipcPARAM == 10 then if ipc.readLvar('ngx_switch_406_a') == 0 then NGX_AP_MASTER_toggle () end end function NGX_ATHR_soft_disconnect () ipc.writeLvar('ngx_switch_682_a', 100); ipc.control(65860, 536870912) ipc.sleep(150); ipc.writeLvar('ngx_switch_682_a', 0); DspShow ("ATHR", "soft") end function NGX_AP_soft_disconnect () ipc.writeLvar('ngx_switch_1004_a', 100); ipc.control(65580, 536870912) ipc.sleep(150); ipc.writeLvar('ngx_switch_1004_a', 0); DspShow (" AP ", "soft") end function NGX_AP_TOGA () ipc.control(65861, 536870912) DspShow (" AP ", "TOGA") end -- ## Autopilot Dials ############### function NGX_AP_CRSL_show () ipc.sleep(50) OBS1 = ipc.readLvar("L:ngx_CRSwindowL") if _MCP1 () then DspShow("CRSL", OBS1) else DspCRS(OBS1) end end function NGX_AP_CRSR_show () ipc.sleep(50) OBS2 = ipc.readLvar("L:ngx_CRSwindowR") if _MCP1 () then DspShow("CRSR", OBS2) else DspCRS(OBS2) end end --function NGX_AP_CRSL_inc () if ipcPARAM == 11 then ipc.control(70008, 16384) --NGX_AP_CRSL_show () end function NGX_AP_CRSL_incfast () local i for i = 1, 4 do ipc.control(70008, 16384) end --NGX_AP_CRSL_show () end --function NGX_AP_CRSL_dec () if ipcPARAM == 12 then ipc.control(70008, 8192) --NGX_AP_CRSL_show () end function NGX_AP_CRSL_decfast () local i for i = 1, 4 do ipc.control(70008, 8192) end NGX_AP_CRSL_show () end function NGX_AP_CRSR_inc () ipc.control(70041, 16384) NGX_AP_CRSR_show () end function NGX_AP_CRSR_incfast () local i for i = 1, 4 do ipc.control(70041, 16384) end NGX_AP_CRSR_show () end function NGX_AP_CRSR_dec () ipc.control(70041, 8192) NGX_AP_CRSR_show () end function NGX_AP_CRSR_decfast () local i for i = 1, 4 do ipc.control(70041, 8192) end NGX_AP_CRSR_show () end function NGX_AP_CRS_LR_sync () -- linking to the current DME selected mcp_crs_mode = RADIOS_SUBMODE end function NGX_AP_CRS_LR_toggle () -- toggling value form 1 to 2 -- 1 - left CRS, 2 - right CRS if _MCP1() then -- manual toggling mcp_crs_mode = 3 - mcp_crs_mode else -- linking to the current DME selected mcp_crs_mode = RADIOS_SUBMODE end if _MCP1 () then if mcp_crs_mode == 1 then DspShow('CRS', 'LEFT') else DspShow('CRS', 'RGHT') end end end function NGX_AP_CRS_LR_inc () if mcp_crs_mode == 1 then NGX_AP_CRSL_inc () else NGX_AP_CRSR_inc () end end function NGX_AP_CRS_LR_incfast () if mcp_crs_mode == 1 then NGX_AP_CRSL_incfast () else NGX_AP_CRSR_incfast () end end function NGX_AP_CRS_LR_dec () if mcp_crs_mode == 1 then NGX_AP_CRSL_dec () else NGX_AP_CRSR_dec () end end function NGX_AP_CRS_LR_decfast () if mcp_crs_mode == 1 then NGX_AP_CRSL_decfast () else NGX_AP_CRSR_decfast () end end function NGX_AP_SPD_show () ipc.sleep(50) ngx_spd = ipc.readLvar("L:ngx_SPDwindow") if ngx_spd < 0 then ngx_spd = 0 end ipc.writeUW(0x07E2,ngx_spd) end --function NGX_AP_SPD_inc () if ipcPARAM == 13 then ipc.control(70016, 16384) NGX_AP_SPD_show () end function NGX_AP_SPD_incfast () local i for i = 1, 4 do ipc.control(70016, 16384) end NGX_AP_SPD_show () end --function NGX_AP_SPD_dec () if ipcPARAM == 14 then ipc.control(70016, 8192) NGX_AP_SPD_show () end function NGX_AP_SPD_decfast () local i for i = 1, 4 do ipc.control(70016, 8192) end NGX_AP_SPD_show () end function NGX_AP_HDG_show () ipc.sleep(50) local ngx_hdg = ipc.readLvar("L:ngx_HDGwindow") ipc.writeUW(0x07CC, ngx_hdg) end function NGX_AP_HDG_BANK_toggle () -- toggling value form 1 to 2 -- 1 - HDG, 2 - BANK mcp_hdg_mode = 3 - mcp_hdg_mode if mcp_hdg_mode == 1 then DspShow('HDG', '--') else NGX_AP_BANK_show () end end --function NGX_AP_HDG_inc () if ipcPARAM == 15 then ipc.control(70022, 16384) --NGX_AP_BANK_inc () --NGX_AP_HDG_show () end function NGX_AP_HDG_incfast () if mcp_hdg_mode == 1 then local i for i = 1, 4 do ipc.control(70022, 16384) end else NGX_AP_BANK_inc () end NGX_AP_HDG_show () end --function NGX_AP_HDG_dec () if ipcPARAM == 16 then ipc.control(70022, 8192) --NGX_AP_BANK_dec () --NGX_AP_HDG_show () end function NGX_AP_HDG_decfast () if mcp_hdg_mode == 1 then local i for i = 1, 4 do ipc.control(70022, 8192) end else NGX_AP_BANK_dec () end NGX_AP_HDG_show () end function NGX_AP_BANK_show () if ipc.readLvar('ngx_switch_389_a') == 0 then DspShow ("BANK", " 10") elseif ipc.readLvar('ngx_switch_389_a') == 10 then DspShow ("BANK", " 15") elseif ipc.readLvar('ngx_switch_389_a') == 20 then DspShow ("BANK", " 20") elseif ipc.readLvar('ngx_switch_389_a') == 30 then DspShow ("BANK", " 25") elseif ipc.readLvar('ngx_switch_389_a') == 40 then DspShow ("BANK", " 30") end end function NGX_AP_BANK_inc () ipc.control(70021, -2147483648) ipc.control(70021, 524288) NGX_AP_BANK_show () end function NGX_AP_BANK_dec () ipc.control(70021, 536870912) ipc.control(70021, 131072) NGX_AP_BANK_show () end function NGX_AP_ALT_show () local meters2feet = 100/2.54/12 local feet2meters = 12*2.54/100 ipc.sleep(50) local ngx_alt = ipc.readLvar("L:ngx_ALTwindow") -- update bug local oalt = math.floor(ipc.readUD(0x07D4)*meters2feet/65536 + 0.5) if (ngx_alt ~= oalt) then ipc.writeUD(0x07D4, math.floor(ngx_alt*feet2meters*65536 + 0.5)) end end --function NGX_AP_ALT_inc () if ipcPARAM == 17 then ipc.control(70032, 16384) --NGX_AP_ALT_show () end function NGX_AP_ALT_incfast () local i for i = 1, 4 do ipc.control(70032, 16384) end NGX_AP_ALT_show () end --function NGX_AP_ALT_dec () if ipcPARAM == 18 then ipc.control(70032, 8192) --NGX_AP_ALT_show () end function NGX_AP_ALT_decfast () local i for i = 1, 4 do ipc.control(70032, 8192) end NGX_AP_ALT_show () end --function NGX_AP_VS_inc () if ipcPARAM == 19 then ipc.control(70033, 8192) --NGX_AP_VS_show () end --function NGX_AP_VS_dec () if ipcPARAM == 20 then ipc.control(70033, 16384) --NGX_AP_VS_show () end function NGX_AP_VS_show () ipc.sleep(50) ngx_vvs = ipc.readLvar("L:ngx_VSwindow") local vvs = ngx_vvs if vvs == -20000 then vvs = 0 end if _MCP1 () then local val = tostring(math.abs(vvs / 10)) while string.len(val) < 3 do val = '0' .. val end if vvs == 0 then val = ' 00 ' elseif vvs > 0 then val = '+' .. val else val = '-' .. val end DspShow (" VS ", val) else DspVVS(vvs/100) end end -- ## Autopilot buttons ############### --function NGX_AP_N1 () if ipcPARAM == 21 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_381_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_381_a", sa) end ipc.control(70013, 536870912) ipc.control(70013, 131072) ipc.sleep(50) end --function NGX_AP_SPEED () if ipcPARAM == 22 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_382_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_382_a", sa) end ipc.control(70014, 536870912) ipc.control(70014, 131072) ipc.sleep(50) end --function NGX_AP_CO () if ipcPARAM == 23 then ipc.control(70015, 536870912) ipc.control(70015, 131072) --DspShow (" SPD", " C/O") end --function NGX_AP_SPD_INTV () if ipcPARAM == 24 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_383_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_383_a", sa) end ipc.control(70019, 536870912) ipc.control(70019, 131072) --DspShow (" SPD", "INTV") end --function NGX_AP_ALT_INTV () if ipcPARAM == 24 then ipc.control(70517, 536870912) ipc.control(70517, 131072) --DspShow (" ALT", "INTV") end --function NGX_AP_VNAV () if ipcPARAM == 25 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_386_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_386_a", sa) end ipc.control(70018, 536870912) ipc.control(70018, 131072) ipc.sleep(50) end --function NGX_AP_LVLCHG () if ipcPARAM == 26 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_391_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_391_a", sa) end ipc.control(70023, 536870912) ipc.control(70023, 131072) ipc.sleep(50) end --function NGX_AP_HDGSEL () if ipcPARAM == 27 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_392_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_392_a", sa) end ipc.control(70024, 536870912) ipc.control(70024, 131072) ipc.sleep(50) end --function NGX_AP_LNAV () if ipcPARAM == 28 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_397_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_397_a", sa) end ipc.control(70029, 536870912) ipc.control(70029, 131072) ipc.sleep(50) end --function NGX_AP_VORLOC () if ipcPARAM == 29 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_396_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_396_a", sa) end ipc.control(70028, 536870912) ipc.control(70028, 131072) -- DspShow (" VOR", " LOC") end --function NGX_AP_APP () if ipcPARAM == 30 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_393_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_393_a", sa) end ipc.control(70025, 536870912) ipc.control(70025, 131072) --DspShow (" AP ", " APP") end --function NGX_AP_ALTHLD () if ipcPARAM == 31 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_394_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_394_a", sa) end ipc.control(70026, 536870912) ipc.control(70026, 131072) ipc.sleep(50) end --function NGX_AP_VS () if ipcPARAM == 32 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_395_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_395_a", sa) end ipc.control(70027, 536870912) ipc.control(70027, 131072) ipc.sleep(50) end --function NGX_AP_CMDA_toggle () if ipcPARAM == 33 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_402_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_402_a", sa) end ipc.control(70034, 536870912) ipc.control(70034, 131072) --DspShow (" AP ", "CMDA") end --function NGX_AP_CMDB_toggle () if ipcPARAM == 34 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_403_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_403_a", sa) end ipc.control(70035, 536870912) ipc.control(70035, 131072) --DspShow (" AP ", "CMDB") end --function NGX_AP_CWSA () if ipcPARAM == 35 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_404_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_404_a", sa) end ipc.control(70036, 536870912) ipc.control(70036, 131072) --DspShow (" AP ", "CWSA") end --function NGX_AP_CWSB () if ipcPARAM == 36 then for sa = 1, 100, 25 do ipc.writeLvar("ngx_switch_405_a", sa) end for sa = 100, 0, -25 do ipc.writeLvar("ngx_switch_405_a", sa) end ipc.control(70029, 536870912) ipc.control(70029, 131072) --DspShow (" AP ", "CWSB") end --function NGX_EFIS_ND_MODE_inc () if ipcPARAM == 37 then ipc.control(69991, 16384) end --function NGX_EFIS_ND_MODE_dec () if ipcPARAM == 38 then ipc.control(69991, 8192) end --function NGX_EFIS_ND_RNG_inc () if ipcPARAM == 39 then ipc.control(69993, 16384) end --function NGX_EFIS_ND_RNG_dec () if ipcPARAM == 40 then ipc.control(69993, 8192) end --function NGX_GEAR_up () if ipcPARAM == 41 then ipc.control(70087, -2147483648) end --function NGX_GEAR_down () if ipcPARAM == 42 then ipc.control(70087, 536870912) end And PMDG737NGX_OVH.LUA -- PMDG NGX737 module v. 1.4 -- -- Jan 2012 -- ## Lights, external ############### function NGX_LAND_FIXED_R_on () if ipc.readLvar('ngx_switch_114_a') == 0 then ipc.control(69746, 536870912) end end function NGX_LAND_FIXED_R_off () if ipc.readLvar('ngx_switch_114_a') == 100 then ipc.control(69746, -2147483648) end end function NGX_LAND_FIXED_L_on () if ipc.readLvar('ngx_switch_113_a') == 0 then ipc.control(69745, 536870912) end end function NGX_LAND_FIXED_L_off () if ipc.readLvar('ngx_switch_113_a') == 100 then ipc.control(69745, -2147483648) end end function NGX_LAND_FIXED_BOTH_on () NGX_LAND_FIXED_L_on () ipc.sleep(100) NGX_LAND_FIXED_R_on () end function NGX_LAND_FIXED_BOTH_off () NGX_LAND_FIXED_L_off () ipc.sleep(100) NGX_LAND_FIXED_R_off () end function NGX_LAND_RETR_R_on () ipc.control(69744, 536870912) ipc.control(69744, 536870912) end function NGX_LAND_RETR_R_extend () ipc.control(69744, -2147483648) ipc.control(69744, -2147483648) ipc.control(69744, 536870912) end function NGX_LAND_RETR_R_off () ipc.control(69744, -2147483648) ipc.control(69744, -2147483648) end function NGX_LAND_RETR_L_on () ipc.control(69743, 536870912) ipc.control(69743, 536870912) end function NGX_LAND_RETR_L_extend () ipc.control(69743, -2147483648) ipc.control(69743, -2147483648) ipc.control(69743, 536870912) end function NGX_LAND_RETR_L_off () ipc.control(69743, -2147483648) ipc.control(69743, -2147483648) end function NGX_LAND_RETR_BOTH_on () NGX_LAND_RETR_L_on () ipc.sleep(100) NGX_LAND_RETR_R_on () end function NGX_LAND_RETR_BOTH_extend () NGX_LAND_RETR_L_extend () ipc.sleep(100) NGX_LAND_RETR_R_extend () end function NGX_LAND_RETR_BOTH_off () NGX_LAND_RETR_L_off () ipc.sleep(100) NGX_LAND_RETR_R_off () end --function NGX_LAND_ALL_on () if ipcPARAM == 1 then --DspShow ("LAND", "ON") ipc.writeLvar('ngx_switch_110_a', 100); NGX_LAND_RETR_L_on () NGX_LAND_RETR_R_on () NGX_LAND_FIXED_L_on () NGX_LAND_FIXED_R_on () ipc.sleep(100) ipc.writeLvar('ngx_switch_110_a', 0); end --function NGX_LAND_ALL_off () if ipcPARAM == 2 then NGX_LAND_RETR_L_off () ipc.sleep(100) NGX_LAND_RETR_R_off () ipc.sleep(100) NGX_LAND_FIXED_L_off () ipc.sleep(100) NGX_LAND_FIXED_R_off () end function NGX_TURNOFF_LEFT_on () if ipc.readLvar('ngx_switch_115_a') == 0 then ipc.control(69747, 536870912) end end function NGX_TURNOFF_LEFT_off () if ipc.readLvar('ngx_switch_115_a') == 100 then ipc.control(69747, 536870912) end end function NGX_TURNOFF_LEFT_toggle () ipc.control(69747, 536870912) end function NGX_TURNOFF_RIGHT_on () if ipc.readLvar('ngx_switch_116_a') == 0 then ipc.control(69748, 536870912) end end function NGX_TURNOFF_RIGHT_off () if ipc.readLvar('ngx_switch_116_a') == 100 then ipc.control(69748, 536870912) end end function NGX_TURNOFF_RIGHT_toggle () ipc.control(69748, 536870912) end function NGX_TURNOFF_BOTH_on () --if ipcPARAM == 3 then NGX_TURNOFF_LEFT_on () ipc.sleep(100) NGX_TURNOFF_RIGHT_on () end function NGX_TURNOFF_BOTH_off () --if ipcPARAM == 4 then NGX_TURNOFF_LEFT_off () ipc.sleep(100) NGX_TURNOFF_RIGHT_off () end function NGX_TAXI_on () --if ipcPARAM == 5 then if ipc.readLvar('ngx_switch_117_a') == 0 then ipc.control(69749, 536870912) end end function NGX_TAXI_off () --if ipcPARAM == 6 then if ipc.readLvar('ngx_switch_117_a') == 100 then ipc.control(69749, 536870912) end end function NGX_TAXI_toggle () ipc.control(69749, 536870912) end --function NGX_TAXI_ALL_on () if ipcPARAM == 7 then NGX_TURNOFF_LEFT_on () ipc.sleep(100) NGX_TURNOFF_RIGHT_on () ipc.sleep(100) NGX_TAXI_on () end --function NGX_TAXI_ALL_off () if ipcPARAM == 8 then NGX_TURNOFF_LEFT_off () ipc.sleep(100) NGX_TURNOFF_RIGHT_off () ipc.sleep(100) NGX_TAXI_off () end function NGX_TAXI_ALL_toggle () if ipc.readLvar('ngx_switch_117_a') == 0 then NGX_TAXI_ALL_on () else NGX_TAXI_ALL_off () end end function NGX_TURNOFF_BOTH_toggle () NGX_TURNOFF_LEFT_toggle () ipc.sleep(100) NGX_TURNOFF_RIGHT_toggle () end function NGX_LOGO_on () if ipc.readLvar('ngx_switch_122_a') == 0 then ipc.control(69754, 536870912) end end function NGX_LOGO_off () if ipc.readLvar('ngx_switch_122_a') == 100 then ipc.control(69754, 536870912) end end function NGX_LOGO_toggle () if ipc.readLvar('ngx_switch_122_a') == 0 then NGX_LOGO_on () else NGX_LOGO_off () end end --function NGX_NAV_strobe () if ipcPARAM == 9 then ipc.control(69755, -2147483648) ipc.control(69755, -2147483648) end --function NGX_NAV_off () if ipcPARAM == 10 then ipc.control(69755, 536870912) ipc.control(69755, 536870912) ipc.control(69755, -2147483648) end --function NGX_NAV_steady () if ipcPARAM == 11 then ipc.control(69755, 536870912) ipc.control(69755, 536870912) end --function NGX_BEACON_on () if ipcPARAM == 14 then if ipc.readLvar('ngx_switch_124_a') == 0 then ipc.control(69756, 536870912) end end --function NGX_BEACON_off () if ipcPARAM == 15 then if ipc.readLvar('ngx_switch_124_a') == 100 then ipc.control(69756, 536870912) end end function NGX_BEACON_toggle () if ipc.readLvar('ngx_switch_124_a') == 0 then NGX_BEACON_on () else NGX_BEACON_off () end end function NGX_WING_on () if ipc.readLvar('ngx_switch_125_a') == 0 then ipc.control(69757, 536870912) DspShow ("WING", "ON") end end function NGX_WING_off () if ipc.readLvar('ngx_switch_125_a') == 100 then ipc.control(69757, 536870912) DspShow ("WING", "OFF") end end function NGX_WING_toggle () if ipc.readLvar('ngx_switch_125_a') == 0 then NGX_WING_on () else NGX_WING_off () end end function NGX_WHEEL_WELL_on () if ipc.readLvar('ngx_switch_126_a') == 0 then ipc.control(69758, 536870912) DspShow ("WELL", "ON") end end function NGX_WHEEL_WELL_off () if ipc.readLvar('ngx_switch_126_a') == 100 then ipc.control(69758, 536870912) DspShow ("WELL", "OFF") end end function NGX_WHEEL_WELL_toggle () if ipc.readLvar('ngx_switch_126_a') == 0 then NGX_WHEEL_WELL_on () else NGX_WHEEL_WELL_off () end end function NGX_LOGO_and_NAV_steady () NGX_LOGO_on () NGX_NAV_steady () end function NGX_LOGO_and_NAV_off () NGX_LOGO_off () NGX_NAV_off () end -- ## Lights, cockpit ############### function NGX_EMER_lights_armed () ELvar = ipc.readLvar("ngx_switch_100_a") ELcap = ipc.readLvar("ngx_switch_101_a") if ELcap == 100 then ipc.control(69733, 536870912) -- cap end DspShow ("ELgt", "armd") end function NGX_EMER_lights_on () ELvar = ipc.readLvar("ngx_switch_100_a") ELcap = ipc.readLvar("ngx_switch_101_a") if ELcap == 0 then ipc.control(69733, 536870912) -- cap end _sleep(150, 250) ipc.control(69732, 536870912) -- inc ipc.control(69732, 536870912) -- inc DspShow ("ELgt", "on") end function NGX_EMER_lights_off () ELvar = ipc.readLvar("ngx_switch_100_a") ELcap = ipc.readLvar("ngx_switch_101_a") if ELcap == 0 then ipc.control(69733, 536870912) -- cap end _sleep(150, 250) ipc.control(69732, -2147483648) -- dec ipc.control(69732, -2147483648) -- dec DspShow ("ELgt", "off") end function NGX_DOME_dim () ipc.control(69890, -2147483648) ipc.control(69890, 524288) ipc.sleep(100) ipc.control(69890, -2147483648) ipc.control(69890, 524288) end function NGX_DOME_bright () ipc.control(69890, 536870912) ipc.control(69890, 131072) ipc.sleep(100) ipc.control(69890, 536870912) ipc.control(69890, 131072) end function NGX_DOME_off () if ipc.readLvar('ngx_switch_258_a') == 100 then ipc.control(69890, -2147483648) ipc.control(69890, 524288) elseif ipc.readLvar('ngx_switch_258_a') == 0 then ipc.control(69890, 536870912) ipc.control(69890, 131072) end end --function NGX_DOME_cycle () if ipcPARAM == 16 then if ipc.readLvar('ngx_switch_258_a') == 100 then NGX_DOME_off () elseif ipc.readLvar('ngx_switch_258_a') == 50 then NGX_DOME_dim () elseif ipc.readLvar('ngx_switch_258_a') == 0 then NGX_DOME_bright () end end function NGX_FLOOD_PDST_inc () ipc.control(70388, 16384) end function NGX_FLOOD_PDST_dec () ipc.control(70388, 8192) end function NGX_FLOOD_PANEL_inc () ipc.control(69969, 16384) end function NGX_FLOOD_PANEL_dec () ipc.control(69969, 8192) end function NGX_FLOOD_MCP_inc () ipc.control(69970, 16384) end function NGX_FLOOD_MCP_dec () ipc.control(69970, 8192) end function NGX_LIGHT_OVH_inc () ipc.control(69727, 16384) end function NGX_LIGHT_OVH_dec () ipc.control(69727, 8192) end function NGX_LIGHT_CB_inc () ipc.control(69726, 16384) end function NGX_LIGHT_CB_dec () ipc.control(69726, 8192) end function NGX_LIGHT_PDST_inc () ipc.control(70389, 16384) end function NGX_LIGHT_PDST_dec () ipc.control(70389, 8192) end function NGX_LIGHT_PANEL_L_inc () ipc.control(69960, 16384) end function NGX_LIGHT_PANEL_L_dec () ipc.control(69960, 8192) end function NGX_LIGHT_PANEL_R_inc () ipc.control(70142, 16384) end function NGX_LIGHT_PANEL_R_dec () ipc.control(70142, 8192) end function NGX_LIGHT_ALL_show () local brt = ipc.readLvar('ngx_switch_328_a') brt = round(brt / 3) --DspShow ("PANL", tostring(brt) .. '%') end function NGX_LIGHT_ALL_inc () local i for i = 1, 5 do NGX_LIGHT_PANEL_R_inc () NGX_LIGHT_PANEL_L_inc () NGX_LIGHT_PDST_inc () NGX_LIGHT_OVH_inc () NGX_LIGHT_CB_inc () end --NGX_LIGHT_ALL_show () end function NGX_LIGHT_ALL_incfast () local i for i = 1, 20 do NGX_LIGHT_PANEL_R_inc () NGX_LIGHT_PANEL_L_inc () NGX_LIGHT_PDST_inc () NGX_LIGHT_OVH_inc () NGX_LIGHT_CB_inc () end NGX_LIGHT_ALL_show () end function NGX_LIGHT_ALL_dec () local i for i = 1, 5 do NGX_LIGHT_PANEL_R_dec () NGX_LIGHT_PANEL_L_dec () NGX_LIGHT_PDST_dec () NGX_LIGHT_OVH_dec () NGX_LIGHT_CB_dec () end NGX_LIGHT_ALL_show () end function NGX_LIGHT_ALL_decfast () local i for i = 1, 20 do NGX_LIGHT_PANEL_R_dec () NGX_LIGHT_PANEL_L_dec () NGX_LIGHT_PDST_dec () NGX_LIGHT_OVH_dec () NGX_LIGHT_CB_dec () end NGX_LIGHT_ALL_show () end function NGX_FLOOD_ALL_show () local brt = ipc.readLvar('ngx_switch_337_a') brt = round(brt / 3) DspShow ("FLOD", tostring(brt) .. '%') end function NGX_FLOOD_ALL_inc () local i for i = 1, 5 do NGX_FLOOD_MCP_inc () NGX_FLOOD_PDST_inc () NGX_FLOOD_PANEL_inc () end NGX_FLOOD_ALL_show () end function NGX_FLOOD_ALL_incfast () local i for i = 1, 20 do NGX_FLOOD_MCP_inc () NGX_FLOOD_PDST_inc () NGX_FLOOD_PANEL_inc () end NGX_FLOOD_ALL_show () end function NGX_FLOOD_ALL_dec () local i for i = 1, 5 do NGX_FLOOD_MCP_dec () NGX_FLOOD_PDST_dec () NGX_FLOOD_PANEL_dec () end NGX_FLOOD_ALL_show () end function NGX_FLOOD_ALL_decfast () local i for i = 1, 20 do NGX_FLOOD_MCP_dec () NGX_FLOOD_PDST_dec () NGX_FLOOD_PANEL_dec () end NGX_FLOOD_ALL_show () end -- ## Disp. brightness ############### function NGX_DU1_INBD_BRT_inc () ipc.control(69962, 16384) end function NGX_DU1_INBD_BRT_dec () ipc.control(69962, 8192) end function NGX_DU1_OUTBD_BRT_inc () ipc.control(69961, 16384) end function NGX_DU1_OUTBD_BRT_dec () ipc.control(69961, 8192) end function NGX_DU_UPPER_BRT_inc () ipc.control(69966, 16384) end function NGX_DU_UPPER_BRT_dec () ipc.control(69966, 8192) end function NGX_DU_LOWER_BRT_inc () ipc.control(69964, 16384) end function NGX_DU_LOWER_BRT_dec () ipc.control(69964, 8192) end function NGX_DU2_INBD_BRT_inc () ipc.control(70141, 16384) end function NGX_DU2_INBD_BRT_dec () ipc.control(70141, 8192) end function NGX_DU2_OUTBD_BRT_inc () ipc.control(70139, 16384) end function NGX_DU2_OUTBD_BRT_dec () ipc.control(70139, 8192) end function NGX_DU_LEFT_BRT_inc () NGX_DU1_INBD_BRT_inc () NGX_DU1_OUTBD_BRT_inc () DspShow ("DU-L", "BRT+") end function NGX_DU_LEFT_BRT_incfast () local i for i = 1, 5 do NGX_DU1_INBD_BRT_inc () NGX_DU1_OUTBD_BRT_inc () end DspShow ("DU-L", "BRT+") end function NGX_DU_LEFT_BRT_dec () NGX_DU1_INBD_BRT_dec () NGX_DU1_OUTBD_BRT_dec () DspShow ("DU-L", "BRT-") end function NGX_DU_LEFT_BRT_decfast () local i for i = 1, 5 do NGX_DU1_INBD_BRT_dec () NGX_DU1_OUTBD_BRT_dec () end DspShow ("DU-L", "BRT-") end function NGX_DU_CENTER_inc () NGX_DU_UPPER_BRT_inc () NGX_DU_LOWER_BRT_inc () DspShow ("DU-C", "BRT+") end function NGX_DU_CENTER_incfast () local i for i = 1, 5 do NGX_DU_UPPER_BRT_inc () NGX_DU_LOWER_BRT_inc () end DspShow ("DU-C", "BRT+") end function NGX_DU_CENTER_dec () NGX_DU_UPPER_BRT_dec () NGX_DU_LOWER_BRT_dec () DspShow ("DU-C", "BRT-") end function NGX_DU_CENTER_decfast () local i for i = 1, 5 do NGX_DU_UPPER_BRT_dec () NGX_DU_LOWER_BRT_dec () end DspShow ("DU-C", "BRT-") end function NGX_DU_RIGHT_BRT_inc () NGX_DU2_INBD_BRT_inc () NGX_DU2_OUTBD_BRT_inc () DspShow ("DU-R", "BRT+") end function NGX_DU_RIGHT_BRT_incfast () local i for i = 1, 5 do NGX_DU2_INBD_BRT_inc () NGX_DU2_OUTBD_BRT_inc () end DspShow ("DU-R", "BRT+") end function NGX_DU_RIGHT_BRT_dec () NGX_DU2_INBD_BRT_dec () NGX_DU2_OUTBD_BRT_dec () DspShow ("DU-R", "BRT-") end function NGX_DU_RIGHT_BRT_decfast () local i for i = 1, 5 do NGX_DU2_INBD_BRT_dec () NGX_DU2_OUTBD_BRT_dec () end DspShow ("DU-R", "BRT-") end function NGX_DU_LR_BRT_inc () NGX_DU1_INBD_BRT_inc () NGX_DU1_OUTBD_BRT_inc () NGX_DU2_INBD_BRT_inc () NGX_DU2_OUTBD_BRT_inc () DspShow ("DU", "BRT+") end function NGX_DU_LR_BRT_incfast () local i for i = 1, 5 do NGX_DU1_INBD_BRT_inc () NGX_DU1_OUTBD_BRT_inc () NGX_DU2_INBD_BRT_inc () NGX_DU2_OUTBD_BRT_inc () end DspShow ("DU", "BRT+") end function NGX_DU_LR_BRT_dec () NGX_DU1_INBD_BRT_dec () NGX_DU1_OUTBD_BRT_dec () NGX_DU2_INBD_BRT_dec () NGX_DU2_OUTBD_BRT_dec () DspShow ("DU", "BRT-") end function NGX_DU_LR_BRT_decfast () local i for i = 1, 5 do NGX_DU1_INBD_BRT_dec () NGX_DU1_OUTBD_BRT_dec () NGX_DU2_INBD_BRT_dec () NGX_DU2_OUTBD_BRT_dec () end DspShow ("DU", "BRT-") end function NGX_DU_ALL_BRT_show () local brt = ipc.readLvar('ngx_switch_329_a') brt = round(brt / 3) DspShow ("DU", tostring(brt) .. '%') end function NGX_DU_ALL_BRT_inc () NGX_DU1_INBD_BRT_inc () NGX_DU1_OUTBD_BRT_inc () NGX_DU_UPPER_BRT_inc () NGX_DU_LOWER_BRT_inc () NGX_DU2_INBD_BRT_inc () NGX_DU2_OUTBD_BRT_inc () -- DspShow ("DU", "BRT+") NGX_DU_ALL_BRT_show () end function NGX_DU_ALL_BRT_incfast () local i for i = 1, 5 do NGX_DU1_INBD_BRT_inc () NGX_DU1_OUTBD_BRT_inc () NGX_DU_UPPER_BRT_inc () NGX_DU_LOWER_BRT_inc () NGX_DU2_INBD_BRT_inc () NGX_DU2_OUTBD_BRT_inc () end -- DspShow ("DU", "BRT+") NGX_DU_ALL_BRT_show () end function NGX_DU_ALL_BRT_dec () NGX_DU1_INBD_BRT_dec () NGX_DU1_OUTBD_BRT_dec () NGX_DU_UPPER_BRT_dec () NGX_DU_LOWER_BRT_dec () NGX_DU2_INBD_BRT_dec () NGX_DU2_OUTBD_BRT_dec () -- DspShow ("DU", "BRT-") NGX_DU_ALL_BRT_show () end function NGX_DU_ALL_BRT_decfast () local i for i = 1, 5 do NGX_DU1_INBD_BRT_dec () NGX_DU1_OUTBD_BRT_dec () NGX_DU_UPPER_BRT_dec () NGX_DU_LOWER_BRT_dec () NGX_DU2_INBD_BRT_dec () NGX_DU2_OUTBD_BRT_dec () end -- DspShow ("DU", "BRT-") NGX_DU_ALL_BRT_show () end -- ## Disp. modes ############### function NGX_DU1_MAIN_show () if ipc.readLvar('ngx_switch_335_a') == 0 then DspShow ("DUmn", "oPFD") elseif ipc.readLvar('ngx_switch_335_a') == 10 then DspShow ("DUmn", "NORM") elseif ipc.readLvar('ngx_switch_335_a') == 20 then DspShow ("DUmn", "iENG") elseif ipc.readLvar('ngx_switch_335_a') == 30 then DspShow ("DUmn", "iPFD") elseif ipc.readLvar('ngx_switch_335_a') == 40 then DspShow ("DUmn", "iMFD") end end function NGX_DU1_MAIN_inc () ipc.control(69967, -2147483648) ipc.control(69967, 524288) NGX_DU1_MAIN_show () end function NGX_DU1_MAIN_dec () ipc.control(69967, 536870912) ipc.control(69967, 131072) NGX_DU1_MAIN_show () end function NGX_DU2_MAIN_show () if ipc.readLvar('ngx_switch_440_a') == 0 then DspShow ("DUmn", "oPFD") elseif ipc.readLvar('ngx_switch_440_a') == 10 then DspShow ("DUmn", "NORM") elseif ipc.readLvar('ngx_switch_440_a') == 20 then DspShow ("DUmn", "iENG") elseif ipc.readLvar('ngx_switch_440_a') == 30 then DspShow ("DUmn", "iPFD") elseif ipc.readLvar('ngx_switch_440_a') == 40 then DspShow ("DUmn", "iMFD") end end function NGX_DU2_MAIN_inc () ipc.control(70072, -2147483648) ipc.control(70072, 524288) NGX_DU2_MAIN_show () end function NGX_DU2_MAIN_dec () ipc.control(70072, 536870912) ipc.control(70072, 131072) NGX_DU2_MAIN_show () end function NGX_DU1_LOWER_show () if ipc.readLvar('ngx_switch_336_a') == 0 then DspShow ("DUlw", "ENG") elseif ipc.readLvar('ngx_switch_336_a') == 50 then DspShow ("DUlw", "NORM") elseif ipc.readLvar('ngx_switch_336_a') == 100 then DspShow ("DUlw", "ND") end end function NGX_DU1_LOWER_inc () ipc.control(69968, -2147483648) ipc.control(69968, 524288) NGX_DU1_LOWER_show () end function NGX_DU1_LOWER_dec () ipc.control(69968, 536870912) ipc.control(69968, 131072) NGX_DU1_LOWER_show () end function NGX_DU2_LOWER_show () if ipc.readLvar('ngx_switch_441_a') == 0 then DspShow ("DUlw", "ENG") elseif ipc.readLvar('ngx_switch_441_a') == 50 then DspShow ("DUlw", "NORM") elseif ipc.readLvar('ngx_switch_441_a') == 100 then DspShow ("DUlw", "ND") end end function NGX_DU2_LOWER_inc () ipc.control(70073, -2147483648) ipc.control(70073, 524288) NGX_DU2_LOWER_show () end function NGX_DU2_LOWER_dec () ipc.control(70073, 536870912) ipc.control(70073, 131072) NGX_DU2_LOWER_show () end function NGX_DU_LOWER_sys () ipc.control(70094, 536870912) DspShow ("DUlw", "SYS") end function NGX_DU_LOWER_eng () ipc.control(70095, 536870912) DspShow ("DUlw", "ENG") end -- ## Trimmings ############### --function NGX_ELEV_TRIM_up () if ipcPARAM == 18 then ipc.control(65615) --ipc.sleep(150) end --function NGX_ELEV_TRIM_down () if ipcPARAM == 19 then ipc.control(65607) --ipc.sleep(150) end function NGX_ELEV_TRIM_upfast () ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) ipc.control(65615) ipc.sleep(50) end function NGX_ELEV_TRIM_downfast () ipc.control(65607) ipc.sleep(50) ipc.control(65607) ipc.sleep(50) ipc.control(65607) ipc.sleep(50) ipc.control(65607) ipc.sleep(50) ipc.control(65607) ipc.sleep(50) ipc.control(65607) ipc.sleep(50) ipc.control(65607) ipc.sleep(50) ipc.control(65607) --ipc.sleep(150) end This original from Linda files for PMDG_737NGX i just modify to support Spad with FSUIPC. Just make Spad send every things as Virtual Joystick then Assign buttons to run Lua Script with parameter equivalent to function listed .
  15. After fresh Windows 7 x64 ultimate reinstall, fresh FSX with FS Global 2010, and i move SPAD to other Network PC running Wideclient lates version, this PC also running REX via Simconnect. On Master FSX PC only FSX running. Problem is gone. no more freeze. Try 4 time flyng KLAX-KSFO with PMDG 737NGX.
  16. Yes, Saitek don't make any Assignments needed. I think it using Simconnect and directly sent Buttons status to FSX via Simconnect. Yes. I say that. if i run SPAD, it make FSX freeze event i never using any buttons Assignment by SPAD. When i remove it. smouth work. FSUIPC stop log imediatly when freeze. Many unknow EVENT show here. I using Linda for MCP Combo II Vrinsight. I will try SPAD without linda then let you know.
  17. Saitek panels only support Default FSX aircrafts. I need SPAD to make virtual Buttons, sent to FSUIPC then using mouse macro or lua script make saitek panels. buttons work with payable aircraft like iFly, PMDG 737NGX etc... It make me using gear Up/down, lights turn on?off, trim. Here is may FSUIPC.ini: [Programs] RunIf1=CLOSE,D:\Microsoft Games\Microsoft Flight Simulator X\Modules\linda.exe [General] UpdatedByVersion=4811 History=WLB9MBEHXMC7XV1PG5YJP MouseWheelMove=Yes MouseWheelTrim=No MouseWheelTrimSpeed=1 JoystickTimeout=20 PollGFTQ6=Yes BlankDisplays=No FixControlAccel=Yes FixMachSpeedBug=Yes DeleteVehiclesForAES=Yes AutoScanDevices=Yes VisibilityOptions=No OneCloudLayer=No CloudTurbulence=No CloudIcing=No GenerateCirrus=No SuppressCloudTurbulence=No MaxIce=-4 MinIce=-4 UpperWindGusts=No SuppressWindTurbulence=Yes SuppressWindVariance=Yes WindTurbulence=No TurbulenceRate=1.0,5.0 TurbulenceDivisor=20,20,40,40 SuppressAllGusts=Yes MaxSurfaceWind=0 WindLimitLevel=200 WindDiscardLevel=400 WindAjustAltitude=No WindAjustAltitudeBy=2000 SmoothBySimTime=No WindSmoothing=Yes WindSmoothness=2 WindSmoothAirborneOnly=No PressureSmoothness=0 TemperatureSmoothness=0 DisconnTrimForAP=Yes ZeroElevForAPAlt=Yes ThrottleSyncAll=No WhiteMessages=No ShowPMcontrols=No SpoilerIncrement=512 MagicBattery=Yes RudderSpikeRemoval=Yes ElevatorSpikeRemoval=Yes AileronSpikeRemoval=Yes ReversedElevatorTrim=No ClockSync=Yes ClockSyncMins=5 ClearWeatherDynamics=No OwnWeatherChanges=No TimeForSelect=4 LoadFlightMenu=No LoadPlanMenu=No PauseAfterCrash=No BrakeReleaseThreshold=75 SaveDataWithFlights=Auto ZapSound=firework ShortAircraftNameOk=No UseProfiles=Yes EnableMouseLook=Yes AxesWrongRange=No TCASid=Flight TCASrange=40 AxisCalibration=No DirectAxesToCalibs=No ShowMultilineWindow=Yes SuppressSingleline=No SuppressMultilineFS=No AxisIntercepts=No DontResetAxes=No InitDelay=0 GetNearestAirports=Yes WeatherReadFactor=2 WeatherRewriteSeconds=1 CustomWeatherModify=No SimConnectStallTime=1 LuaRerunDelay=66 Console=No LogEvents=Yes LogLua=Yes LogAxes=Yes LogButtonsKeys=Yes FSVersionUsed="Microsoft Flight Simulator X",10.0.61637.0 SimConnectUsed=10.0.61259.0 [JoyNames] AutoAssignLetters=No 0=Saitek Pro Flight Rudder Pedals 0.GUID={B7C3AFA0-7AE5-11E1-8008-444553540000} 1=Saitek X52 Flight Controller 1.GUID={3930C5F0-7AE6-11E1-8001-444553540000} 2=Saitek Pro Flight Yoke 2.GUID={3930ED00-7AE6-11E1-8002-444553540000} [buttons] ButtonRepeat=20,10 1=P66,1,C65758,0 2=P66,0,C65759,0 3=P68,9,C66079,0 4=P68,11,C66080,0 5=R2,20,C65602,0 6=U2,20,C65604,0 [MacroFiles] 1=iFly737 2=leveld767 [LuaFiles] 1=ipcReady 2=LevelD767_autopi 3=LevelD767_lights 4=linda 5=pmdg737_AP 6=pmdg737_OVH 7=PMDGB747_MCP 8=PMDGB747_OVH [AutoSave] Next=1 Interval=60 Files=10 SaveOnGround=No AutoSaveEnabled=No [GPSout] GPSoutEnabled=No [GPSout2] GPSoutEnabled=No [WideServer] WideFSenabled=Yes AdvertiseService=1 Port=8002 Port2=9002 [sounds] Path=D:\Microsoft Games\Microsoft Flight Simulator X\Sound\ Device1=Primary Sound Driver Device2=Speakers (Realtek High Definition Audio) Device3=Digital Output (HTO STRIKER 7.1) Device4=Speakers (HTO STRIKER 7.1) [VRInsight] 1=com3 [Axes] 0=0X,256,D,7,0,0,0 1=0Y,256,D,8,0,0,0 2=0R,256,D,3,0,0,0 3=1X,256,D,1,0,0,0 4=1Y,256,D,2,0,0,0 5=1Z,256,D,9,0,0,0 6=1R,256,D,3,0,0,0 7=1U,256,D,35,0,0,0 8=1V,256,D,33,0,0,0 9=1S,256,D,34,0,0,0 10=2X,256,D,1,0,0,0 11=2Y,256,D,2,0,0,0 12=2Z,256,D,22,0,0,0 13=2U,256,D,17,0,0,0 14=2V,256,D,13,0,0,0 [JoystickCalibration] AllowSuppressForPFCquad=Yes ExcludeThrottleSet=Yes ExcludeMixtureSet=Yes ExcludePropPitchSet=Yes SepRevsJetsOnly=No ApplyHeloTrim=No UseAxisControlsForNRZ=No MapThr1to234=Yes MapMix1to234=Yes FlapsSetControl=0 FlapDetents=No ReverserControl=66292 Reverser1Control=66422 Reverser2Control=66425 Reverser3Control=66428 Reverser4Control=66431 MaxThrottleForReverser=256 AileronTrimControl=66731 RudderTrimControl=66732 CowlFlaps1Control=66162 CowlFlaps2Control=66163 CowlFlaps3Control=66164 CowlFlaps4Control=66165 SteeringTillerControl=0 MaxSteerSpeed=60 Rudder=-16254,-2258,1920,16064 LeftBrake=-16384,16383/16 SlopeLeftBrake=5 RightBrake=-16384,16383/16 SlopeRightBrake=5 Throttle1=-16384,-512,512,16383/32 Mixture1=-16384,-16384,-14173,16383 PropPitch1=-16384,-16384,-13783,16383 PanHeading=-16253,-520,1408,16383 PanPitch=-16384,2816,6784,16383 PanTilt=-16384,-1040,1792,16383 Aileron=-14103,0,6912,16128 Elevator=-15934,-32,3136,16383 MapProp1to234=Yes Spoilers=-16384,-16384,-14173,16383 Flaps=-16384,16383/16 [ClientNames] 1=HP610 [Profile.PMDG737NGX] 1=PMDG 737-800NGX PMDG House Winglets [buttons.PMDG737NGX] 0=P68,9,CL5:R,41 1=P2,38,CL5:R,42 2=P68,6,CL6:R,1 3=U68,6,CL6:R,2 4=P68,4,CL6:R,7 5=U68,4,CL6:R,8 6=P68,2,CL6:R,9 7=U68,2,CL6:R,10 8=P68,0,CL6:R,11 9=U68,0,CL6:R,10 10=P67,27,CL6:R,14 11=U67,27,CL6:R,15 12=P67,26,CL8:C,16 13=U67,26,CL6:R,16 14=R66,2,CL8:R,19 15=R66,3,CL8:R,18 16=P67,0,CL6:R,20 17=P67,2,CL6:R,21 18=P67,4,CL6:R,22 19=P67,6,CL6:R,24 20=P67,9,CL6:R,25 [Axes.PMDG737NGX] 0=0X,256,D,7,0,0,0 1=0Y,256,D,8,0,0,0 2=0R,256,D,3,0,0,0 3=1X,256,D,1,0,0,0 4=1Y,256,D,2,0,0,0 5=1Z,256,D,9,0,0,0 6=1R,256,D,3,0,0,0 7=1U,256,D,35,0,0,0 8=1V,256,D,33,0,0,0 9=1S,256,D,34,0,0,0 10=2X,256,D,1,0,0,0 11=2Y,256,D,2,0,0,0 12=2Z,256,D,22,0,0,0 13=2U,256,D,23,0,0,0 And here some FSUIPC log: ********* FSUIPC4, Version 4.811 by Pete Dowson ********* User Name="Duong Nguyen Thanh" User Addr="billydragon@mediamart-online.biz" FSUIPC4 Key is provided WideFS7 Key is provided Running inside FSX on Windows 7 Module base=61000000 2730 System time = 07/04/2012 20:51:09 2745 FLT UNC path = "\\HP-Z400\Users\billydragon\Documents\Flight Simulator X Files\" 2777 Trying to connect to SimConnect Acc/SP2 Oct07 ... 2777 FS UNC path = "\\HP-Z400\HPZ400_FSX\Microsoft Games\Microsoft Flight Simulator X\" 3744 Run: "D:\Microsoft Games\Microsoft Flight Simulator X\Modules\linda.exe" 5195 LogOptions=00000000 00000001 5195 Wind smoothing fix is fully installed 5195 G3D.DLL fix attempt installed ok 5195 SimConnect_Open succeeded: waiting to check version okay 5195 Trying to use SimConnect Acc/SP2 Oct07 5210 VRI port 1 "com3" opened 10140 Running in "Microsoft Flight Simulator X", Version: 10.0.61637.0 (SimConnect: 10.0.61259.0) 10140 Initialising SimConnect data requests now 10155 FSUIPC Menu entry added 10202 \\HP-Z400\Users\billydragon\Documents\Flight Simulator X Files\PMDG 737NGX VVNB.FLT 10202 \\HP-Z400\HPZ400_FSX\Microsoft Games\Microsoft Flight Simulator X\SimObjects\Airplanes\PMDG 737-800NGX WL\B737-800WL.AIR 10436 VRI MCP2B ("MCP2 Boeing") detected on port com3 202817 Weather Mode now = Theme 202817 \\HP-Z400\Users\billydragon\AppData\Roaming\Microsoft\FSX\Previous flight.FLT 239383 Aircraft="PMDG 737-800NGX PMDG House Winglets" 239383 System time = 07/04/2012 20:55:06, Simulator time = 11:39:44 (04:39Z) 242067 Starting everything now ... 242067 LUA: beginning "D:\Microsoft Games\Microsoft Flight Simulator X\Modules\ipcReady.lua" 242067 LUA: ended "D:\Microsoft Games\Microsoft Flight Simulator X\Modules\ipcReady.lua" 242082 LUA: 242082 LUA: [iNIT]LINDA:: Loading... 242176 LUA: LINDA:: Aircraft: PMDG 737-800NGX PMDG House Winglets 242176 LUA: LINDA:: Aircraft module detected: PMDG 737NGX 242223 LUA: LINDA:: AivlaSoft library loaded... 242238 LUA: LINDA:: FSX standard library loaded... 242238 LUA: LINDA:: IAO library loaded... 242254 LUA: LINDA:: RealityXP library loaded... 242254 LUA: LINDA:: A2A MAP library loaded... 243330 Advanced Weather Interface Enabled 247012 LUA: LINDA:: Loading a fallback joysticks config... 247012 LUA: LINDA:: Loading PMDG 737NGX joysticks config... 247012 LUA: LINDA:: Module: PMDG 737NGX Started... 247027 LUA: LINDA:: Ready to go, Captain! 247027 LUA: LINDA:: 247542 LUA: LINDA:: LVars watching list cleared... 247714 LUA: LINDA:: Offsets watching list cleared! 268930 LogOptions changed, now F0000000 00000001 268930 [buttons] now profile-specific: 268930 0=P68,9,CL5:R,41 271504 *** EVENT: Cntrl= 69979 (0x0001115b), Param= 4194304 (0x00400000) <unknown> 278930 LUA: LINDA:: Global shift set... 279288 FS Control Sent: Ctrl=66526, Param=0 279288 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 279569 FS Control Sent: Ctrl=66526, Param=0 279569 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 279710 FS Control Sent: Ctrl=66526, Param=0 279710 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 279850 FS Control Sent: Ctrl=66526, Param=0 279850 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280068 FS Control Sent: Ctrl=66526, Param=0 280068 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280209 FS Control Sent: Ctrl=66526, Param=0 280209 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280365 FS Control Sent: Ctrl=66526, Param=0 280365 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280536 FS Control Sent: Ctrl=66526, Param=0 280536 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280677 FS Control Sent: Ctrl=66526, Param=0 280677 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280817 FS Control Sent: Ctrl=66526, Param=0 280817 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 280958 FS Control Sent: Ctrl=66526, Param=0 280958 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 281098 FS Control Sent: Ctrl=66526, Param=0 281098 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 281254 FS Control Sent: Ctrl=66526, Param=0 281254 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 281394 FS Control Sent: Ctrl=66526, Param=0 281394 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 281535 FS Control Sent: Ctrl=66526, Param=0 281535 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 281706 FS Control Sent: Ctrl=66526, Param=0 281706 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 281847 FS Control Sent: Ctrl=66526, Param=0 281847 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282003 FS Control Sent: Ctrl=66526, Param=0 282003 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282143 FS Control Sent: Ctrl=66526, Param=0 282143 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282284 FS Control Sent: Ctrl=66526, Param=0 282284 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282424 FS Control Sent: Ctrl=66526, Param=0 282424 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282564 FS Control Sent: Ctrl=66526, Param=0 282564 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282705 FS Control Sent: Ctrl=66526, Param=0 282705 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 282892 FS Control Sent: Ctrl=66526, Param=0 282892 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 283032 FS Control Sent: Ctrl=66526, Param=0 283032 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 283173 FS Control Sent: Ctrl=66526, Param=0 283173 *** EVENT: Cntrl= 66526 (0x000103de), Param= 0 (0x00000000) EYEPOINT_RIGHT 283500 LUA: LINDA:: Global shift UNset... 284577 FS Control Sent: Ctrl=65875, Param=0 284577 *** EVENT: Cntrl= 65875 (0x00010153), Param= 0 (0x00000000) PAN_RESET 293188 *** EVENT: Cntrl= 65660 (0x0001007c), Param= 0 (0x00000000) CLOCK_MINUTES_INC 293188 *** EVENT: Cntrl= 65661 (0x0001007d), Param= 0 (0x00000000) CLOCK_SECONDS_ZERO 299069 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299069 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299132 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299132 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299210 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299210 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299272 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299272 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299335 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299335 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299397 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299397 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299459 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299459 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299522 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299522 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299584 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299584 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299647 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299647 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299709 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299709 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 299787 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 299787 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 302969 KEYDOWN: VK=13, Waiting=0, Repeat=N, Shifts=4 302969 .. Key not programmed -- passed on to FS 305528 KEYUP: VK=13, Waiting=0 305528 KEYUP: VK=18, Waiting=0 312049 *** EVENT: Cntrl= 65794 (0x00010102), Param= 0 (0x00000000) PAUSE_ON 326822 *** EVENT: Cntrl= 65794 (0x00010102), Param= 0 (0x00000000) PAUSE_ON 432513 Sim stopped: average frame rate for last 162 secs = 27.6 fps 436678 *** Entered Buttons option page *** 439657 FirstButtonChange res=0000481D (0.72, 29) 460515 FirstButtonChange res=0000481E (0.72, 30) 477722 FirstButtonChange res=0000481D (0.72, 29) 561681 FirstButtonChange res=00000208 (0.2, 8) 591088 *** Exiting Buttons option page *** 591134 *** EVENT: Cntrl= 66363 (0x0001033b), Param= 0 (0x00000000) TOGGLE_ALTERNATOR1 591134 *** EVENT: Cntrl= 66293 (0x000102f5), Param= 0 (0x00000000) TOGGLE_AVIONICS_MASTER 591134 *** EVENT: Cntrl= 66488 (0x000103b8), Param= 0 (0x00000000) ANTI_ICE_SET_ENG1 591134 *** EVENT: Cntrl= 66489 (0x000103b9), Param= 0 (0x00000000) ANTI_ICE_SET_ENG2 591134 *** EVENT: Cntrl= 66490 (0x000103ba), Param= 0 (0x00000000) ANTI_ICE_SET_ENG3 591134 *** EVENT: Cntrl= 66491 (0x000103bb), Param= 0 (0x00000000) ANTI_ICE_SET_ENG4 591134 *** EVENT: Cntrl= 66074 (0x0001021a), Param= 0 (0x00000000) PITOT_HEAT_SET 591134 *** EVENT: Cntrl= 66300 (0x000102fc), Param= 0 (0x00000000) TOGGLE_STARTER1 591134 *** EVENT: Cntrl= 66300 (0x000102fc), Param= 0 (0x00000000) TOGGLE_STARTER1 591134 *** EVENT: Cntrl= 66300 (0x000102fc), Param= 0 (0x00000000) TOGGLE_STARTER1 591134 *** EVENT: Cntrl= 66300 (0x000102fc), Param= 0 (0x00000000) TOGGLE_STARTER1 591400 *** EVENT: Cntrl= 66072 (0x00010218), Param= 1 (0x00000001) PITOT_HEAT_ON 593240 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 594098 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596282 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596329 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596376 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596672 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596719 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596766 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596813 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596860 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596906 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 596953 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 597780 *** EVENT: Cntrl= 70614 (0x000113d6), Param= 4194304 (0x00400000) <unknown> 599309 KEYDOWN: VK=13, Waiting=0, Repeat=N, Shifts=4 599309 .. Key not programmed -- passed on to FS 602226 KEYUP: VK=13, Waiting=0 602226 KEYUP: VK=18, Waiting=0 604769 *** EVENT: Cntrl= 66587 (0x0001041b), Param= 979 (0x000003d3) ROTOR_BRAKE 604769 *** AXIS: Cntrl= 66162 (0x00010272), Param= 3 (0x00000003) COWLFLAP1_SET 606485 KEYDOWN: VK=80, Waiting=0, Repeat=N, Shifts=0 ------- And the near Freeze point: 1056361 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056361 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056361 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056439 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056439 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056439 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056439 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056517 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056517 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056517 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056610 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056688 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056766 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056766 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056766 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056844 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056844 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056844 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056844 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1056922 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1056922 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057000 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057078 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057156 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057219 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057297 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1057297 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1057297 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057375 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1057375 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057453 *** EVENT: Cntrl= 85637 (0x00014e85), Param= 0 (0x00000000) <unknown> 1057453 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057531 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057609 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057687 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057765 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057843 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057921 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1057999 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058077 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058155 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058248 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058326 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058404 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058482 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058560 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058638 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058716 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058794 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058872 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1058950 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059028 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059106 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059184 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059247 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059325 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059403 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059481 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059559 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059637 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059715 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059793 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059871 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1059949 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060027 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060105 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060183 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060261 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060339 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060417 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060495 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060573 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060651 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060729 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060822 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060900 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060947 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 130 (0x00000082) THROTTLE2_SET 1060947 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 130 (0x00000082) THROTTLE1_SET 1060978 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 455 (0x000001c7) THROTTLE2_SET 1060978 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 455 (0x000001c7) THROTTLE1_SET 1060978 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1060994 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 975 (0x000003cf) THROTTLE2_SET 1060994 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 975 (0x000003cf) THROTTLE1_SET 1061025 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1235 (0x000004d3) THROTTLE2_SET 1061025 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1235 (0x000004d3) THROTTLE1_SET 1061056 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1560 (0x00000618) THROTTLE2_SET 1061056 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1560 (0x00000618) THROTTLE1_SET 1061056 *** AXIS: Cntrl= 65786 (0x000100fa), Param= 5957 (0x00001745) SPOILERS_SET 1061103 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1820 (0x0000071c) THROTTLE2_SET 1061103 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1820 (0x0000071c) THROTTLE1_SET 1061134 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 2080 (0x00000820) THROTTLE2_SET 1061134 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 2080 (0x00000820) THROTTLE1_SET 1061571 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1950 (0x0000079e) THROTTLE2_SET 1061571 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1950 (0x0000079e) THROTTLE1_SET 1061633 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1820 (0x0000071c) THROTTLE2_SET 1061633 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1820 (0x0000071c) THROTTLE1_SET 1061680 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1625 (0x00000659) THROTTLE2_SET 1061680 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1625 (0x00000659) THROTTLE1_SET 1061758 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1430 (0x00000596) THROTTLE2_SET 1061758 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1430 (0x00000596) THROTTLE1_SET 1061789 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1300 (0x00000514) THROTTLE2_SET 1061789 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1300 (0x00000514) THROTTLE1_SET 1061836 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1061836 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1061867 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 975 (0x000003cf) THROTTLE2_SET 1061867 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 975 (0x000003cf) THROTTLE1_SET 1061883 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 780 (0x0000030c) THROTTLE2_SET 1061883 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 780 (0x0000030c) THROTTLE1_SET 1061914 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 585 (0x00000249) THROTTLE2_SET 1061914 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 585 (0x00000249) THROTTLE1_SET 1061961 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 455 (0x000001c7) THROTTLE2_SET 1061977 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 455 (0x000001c7) THROTTLE1_SET 1062148 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 585 (0x00000249) THROTTLE2_SET 1062148 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 585 (0x00000249) THROTTLE1_SET 1062413 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 780 (0x0000030c) THROTTLE2_SET 1062413 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 780 (0x0000030c) THROTTLE1_SET 1062616 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 910 (0x0000038e) THROTTLE2_SET 1062616 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 910 (0x0000038e) THROTTLE1_SET 1062819 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1062819 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1063115 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1235 (0x000004d3) THROTTLE2_SET 1063115 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1235 (0x000004d3) THROTTLE1_SET 1063365 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1063365 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1063396 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1235 (0x000004d3) THROTTLE2_SET 1063396 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1235 (0x000004d3) THROTTLE1_SET 1063474 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1063474 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1063490 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1235 (0x000004d3) THROTTLE2_SET 1063490 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1235 (0x000004d3) THROTTLE1_SET 1063568 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1063583 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1064192 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 975 (0x000003cf) THROTTLE2_SET 1064192 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 975 (0x000003cf) THROTTLE1_SET 1064207 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1064207 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1064239 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 975 (0x000003cf) THROTTLE2_SET 1064239 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 975 (0x000003cf) THROTTLE1_SET 1064504 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1064504 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1064566 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 975 (0x000003cf) THROTTLE2_SET 1064566 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 975 (0x000003cf) THROTTLE1_SET 1064644 *** EVENT: Cntrl= 85638 (0x00014e86), Param= 0 (0x00000000) <unknown> 1064722 *** EVENT: Cntrl= 85638 (0x00014e86), Param= 0 (0x00000000) <unknown> 1064722 *** EVENT: Cntrl= 85638 (0x00014e86), Param= 0 (0x00000000) <unknown> 1064722 *** EVENT: Cntrl= 85638 (0x00014e86), Param= 0 (0x00000000) <unknown> 1064769 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 1105 (0x00000451) THROTTLE2_SET 1064769 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 1105 (0x00000451) THROTTLE1_SET 1064800 *** EVENT: Cntrl= 85638 (0x00014e86), Param= 0 (0x00000000) <unknown> 1064800 *** EVENT: Cntrl= 85638 (0x00014e86), Param= 0 (0x00000000) <unknown> 1064831 *** AXIS: Cntrl= 65821 (0x0001011d), Param= 975 (0x000003cf) THROTTLE2_SET 1064847 *** AXIS: Cntrl= 65820 (0x0001011c), Param= 975 (0x000003cf) THROTTLE1_SET I did't see any error here.
  18. Yes. I Assigning Rudder, aileron, Left+Right Brakes, Throttler, Mixture, Proper, all Axis i have with FSUIPC. Working fine. Spad make Saitek panel buttons as virtual Joystick and sent directly to FSUIPC and let FSUIPC assign to special Aircraft model, including payable (PMDG 737NG i using). Thank for your responce. Now i'm on Business trip. When come back i will make logs including ini files and send here. RGDS.
  19. I'm sorry my english not so good. FSUIPC version 4.812. FSX acceleration. EVENT LOG not show anything. When i start FSX every thing normal. When taxi or takeoff, FSX freeze and only way to get out is ctrl+alt+del and ending proccess FSX. When i unplug all saitek panels, remove SPAD and try fly every thing is OK. Try 3 time with PMDG 737 and iFly 737 sp1, 2 hours fly without problem. Trying install SPAD and Saitek panel problem come back. Freeze come after fsx start above 10 minutes or when using rudder, yoke ... Fsuipc log not show error. Let me try log again and sent here.
  20. After long time reseaching why my FSX freeze (sound still play but screen freeze) i know that lates FSUIPC not compactible with SPAD driver. If fly with default aircraft, SPAD working in default FSUIPC mode no problem. When using SPAD as virtual Joystick, it make random Freeze and i need to kill FSX manual. Turnoff all Saitek Panels (radio, switch ..etc..) remove SPAD, all fine work. I fly with PMDG 737, iFly, LEVELD ... all the same result. Still no solution to solve problem. Any one can help. ================================== My System: PC1: HP z-400 Q.Core W3530 2.8Ghz ATI HD Radeon 6970 x 2 (Crossfire Enabled) 16Gb ECC RAM (HP Original RAM for HPZ400) 3x 32 inches LED LCD Vrinsight MCP Combo II + Linda lates vertion Saitek: Yoke + Quadriant + FIP+ Radio Panel+Switch Panel+AP panels+rudder Windows 7 x64 Ultimate Main FSX running with GEX, FS Global 2010 some airports scenary. PC2: HP-Touchsmart 610 Core i7 2600 3.4Ghz 8Gb RAM Touch screen 23 inches. + USB to VGA Adapter Windows 7 x64 Home Running WideClient + FS Commande 9 + GA Panels
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.