

ptimale
Members-
Posts
103 -
Joined
-
Last visited
-
Donations
0.00 USD
Reputation
6 NeutralFlight Sim Profile
-
Commercial Member
No
-
Online Flight Organization Membership
none
-
Virtual Airlines
No
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
5800X3D Spikes / Sound Issues
ptimale replied to Bill A's topic in Microsoft Flight Simulator (2020/2024)
hi google translation if you have a NZXT product and you have installed the CAM software, disable automatic startup and restart your computer retest, if you don't have the CAM software, disable all audio management in the systray, I encountered the same problem as you give me feedback -
hello i had the same behavior, to solve the problem i restored a second time, and my templates appeared nice work Lorby thanks
-
I forgot a request I have a mouse with Razer type buttons https://www.razer.com/fr-fr/gaming-mice/razer-naga-left-handed-edition would it be possible for the buttons to be recognized in AAO?
-
thanks for this explanation i finally managed to make a copy in my configuration i will have to understand the difference between models and configurations thanks again for your help
-
I'm trying to understand the manual for now I haven't managed to copy and paste I don't understand
-
thanks, for the feedback i didn't quite understand the method to copy and paste button or axis assignments from the main AAO window i don't want to copy the scripts from the script edition window but an assignment from template A to template B with you a page number in the manual?
-
hello translated by google thank you for this very good software that improves day by day my wishes for evolution here is what I would like as evolution in AAO support for the powershell language possibility to copy and paste a button assignment or axis assignment from a template to another template to be able to resize the left column in the script edition window (we can resize the window but not the column which is annoying if we have long script names. i don't know if these evolutions are possible but but still thanks for the regular updates
-
Hi translated by Google THANKS I just made scripts for the position of the UFT tablet TABLET_POSITION DEFAULT (L:tablet_pos_ca,·enum)·2·==·if{·0·(>L:tablet_pos_ca,·enum)} TABLET_POSITION CDU (L:tablet_pos_ca,·enum)·0·==·if{·2·(>L:tablet_pos_ca,·enum)} TABLET_POSITION WINDOWS 1·(>L:tablet_pos_ca,·enum)
-
Good morning same problems for me gmail address
-
Fenix change the EFB wallpaper automatically ICAO
ptimale replied to ptimale's topic in AxisAndOhs Support
(LOAD_SIMBRIEF)·(SPLIT:2500)· 'C:\ProgramData\Fenix\FenixSim·A320\efb\img\'·(L:simbrief.general.icao_airline,·String)·scat·'.png'·scat·'C:\ProgramData\Fenix\FenixSim·A320\efb\img\bg.png'·(COPYFILE:%s1|%s2) 1·(>L:REFRESH_EFB_CAPT,·Number) (SPLIT:10000)· 'C:\ProgramData\Fenix\FenixSim·A320\efb\img\bg.png'·(DELETEFILE:%s1)· It works very well thank you even though I didn't have a problem before at least now we have a variable to refresh the efb -
Fenix change the EFB wallpaper automatically ICAO
ptimale replied to ptimale's topic in AxisAndOhs Support
tube is too loud I looked to see if there was a variable to restart the EFB in configuration files Thanks a lot -
Fenix change the EFB wallpaper automatically ICAO
ptimale replied to ptimale's topic in AxisAndOhs Support
I understand that the script will only be valid for one livery. I will test your latest script next week with thank you again for your patient olivier -
Fenix change the EFB wallpaper automatically ICAO
ptimale replied to ptimale's topic in AxisAndOhs Support
THANKS I already wanted to test your script but I didn't understand how to read it thank you for your proposal to provide me with the following version I am not in SU15 And I'm going to waste your time. -
Fenix change the EFB wallpaper automatically ICAO
ptimale replied to ptimale's topic in AxisAndOhs Support
I made a mistake here is the right test (WSH:jscript|AaoEntry) function AaoEntry(){ var acTitle = (A:TITLE, String); var fso = new ActiveXObject("Scripting.FileSystemObject"); var acfg = "H:\\Microsoft Flight Simulator\\Community\\fnx-aircraft-320-liveries\\SimObjects\\Airplanes\\FNX_320_CFM_AFRFGKXS\\aircraft.cfg"; if (fso.FileExists(acfg)){ var tStream = fso.OpenTextFile(acfg, 1, false, 0); var text = tStream.ReadAll(); tStream .close(); var sPos = text.indexOf("Title=\"" + acTitle + "\""); if (sPos > 0){ sPos = text.indexOf("icao_airline=", sPos); if (sPos > 0){ var ePos = text.indexOf("\"", sPos + 15); if (ePos > 0){ var acIcao = text.substring(sPos + 14, ePos); var srcImgName = "C:\\ProgramData\\Fenix\\FenixSim A320\\efb\\img\\" + acIcao + ".png"; var trgImgName = "C:\\ProgramData\\Fenix\\FenixSim A320\\efb\\img\\bg.png"; fso.CopyFile(srcImgName, trgImgName, true); } } } } } -
Fenix change the EFB wallpaper automatically ICAO
ptimale replied to ptimale's topic in AxisAndOhs Support
I don't understand the script very well I'm not sure about the modification in the livery the ICAO code is on line 15 I'm trying with airfrance AFR the images all have the .png extension (WSH:jscript|AaoEntry) function AaoEntry(){ var acTitle = (A:TITLE, String); var fso = new ActiveXObject("Scripting.FileSystemObject"); var acfg = "H:\\Microsoft Flight Simulator\\Community\\fnx-aircraft-320\\aircraft.cfg"; if (fso.FileExists(acfg)){ var tStream = fso.OpenTextFile(acfg, 1, false, 0); var text = tStream.ReadAll(); tStream .close(); var sPos = text.indexOf("Title=\"" + acTitle + "\""); if (sPos > 0){ sPos = text.indexOf("icao_airline=", sPos); if (sPos > 0){ var ePos = text.indexOf("\"", sPos + 15); if (ePos > 0){ var acIcao = text.substring(sPos + 14, ePos); var srcImgName = "C:\\ProgramData\\Fenix\\FenixSim A320\\efb\\img\\" + acIcao + ".png"; var trgImgName = "C:\\ProgramData\\Fenix\\FenixSim A320\\efb\\img\\bg.png"; fso.CopyFile(srcImgName, trgImgName, true); } } } } }