-
Content Count
66 -
Joined
-
Last visited
-
Days Won
1
Capt. PERO last won the day on October 10 2016
Capt. PERO had the most liked content!
Community Reputation
2 NeutralAbout Capt. PERO
-
Rank
Advanced Member
Contact Methods
-
Website URL
http://aviation.pero-online.de
-
Skype
capt_pero
Profile Information
-
Gender
Male
-
Location
Schwäbisch Hall
-
Interests
...real life!
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Hi Pete, thanks for your support. I am running "<P3DRoot>\makerwys.exe" "/Water /+Q" in my program SIMstarter NG P3D since my software has been released. A BETA Tester informed me, that SIMstarter does not work with Makerwys 5.1 any more. While testing I found out that one parameter is working and two parameter won't. My first thought was, that "/Water" does not work any more and therefore I tested the others to make analysis for you guys easier. Do I get you right, with 5.11 I would get the same result as before (runways with water runways, silent execution and auto cl
-
Hi, looks like makerwys is closing when adding multiple commandline parameters. Can you please have a look at this? "<P3DRoot>\makerwys.exe" => Ok "<P3DRoot>\makerwys.exe" "/+Q" => Ok "<P3DRoot>\makerwys.exe" "/Water" => Ok "<P3DRoot>\makerwys.exe" "/Water /+Q" => Fail Fail means, makerwys.exe closes without creating any files.
-
Capt. PERO started following [P3Dv5 HF2] Problems using ipc.keypress and keypress
-
Hi, you may remember the ipc.keypress issue I've reported some days ago (I am using a lua-script). This has been fixed with v6.0.1.0b but looks there is another issue preventing ipc.keypress and native keyboard key presses too. https://forum.simflight.com/topic/89926-p3dv5-hf2-ipckeypressplus-dont-press-key/?do=findComment&comment=544912 Please find fsuipc6.log This can be reproduced by calling the GSX menu. Rolling back to 6.0.1.0b brings everything back to normal. Could you please have a look again? 😉 Regards, Peter FSUIPC6.log
-
[P3Dv5 HF2] ipc.keypressplus don't press key
Capt. PERO replied to Capt. PERO's topic in FSUIPC Support Pete Dowson Modules
Issue solved. Thanks. -
[P3Dv5 HF2] ipc.keypressplus don't press key
Capt. PERO replied to Capt. PERO's topic in FSUIPC Support Pete Dowson Modules
Yes, looks as solved. I just did a quick test today. Can spend more time tomorrow. -
[P3Dv5 HF2] ipc.keypressplus don't press key
Capt. PERO replied to Capt. PERO's topic in FSUIPC Support Pete Dowson Modules
That you can find something on my side for improvement. 😉 *lol* ...I will change that -
[P3Dv5 HF2] ipc.keypressplus don't press key
Capt. PERO replied to Capt. PERO's topic in FSUIPC Support Pete Dowson Modules
Right: 1) ipcReady.lua calls "ipc.macro("Lua peroJeeHellExtPWRbyGSX")" 2) peroJeeHellExtPWRbyGSX.lua contains the code above 3) Start the sim (runs ipcReady.lua and peroJeeHellExtPWRbyGSX.lua 4) Open the GSX menu (SHIFT+CTRL+W) and try to press "1" on keyboard 5) Does not work -
[P3Dv5 HF2] ipc.keypressplus don't press key
Capt. PERO replied to Capt. PERO's topic in FSUIPC Support Pete Dowson Modules
Right. It has nothing to do with ipc.keypress but using this LUA causes the problem. Strange... -
[P3Dv5 HF2] ipc.keypressplus don't press key
Capt. PERO replied to Capt. PERO's topic in FSUIPC Support Pete Dowson Modules
Hi Pete, I think I nailed it: local PNFSoundDialogKeyShift = 1 local PNFSoundDialogKeyCode = 88 function PNFSoundsToggle() --if (PNFsoundPlay==0) then -- PNFsoundPlay=1 -- if (ipc.elapsedtime() > timeScriptLoaded + 5000) then ipc.Display("pero | JeeHellExtPWRbyGSX: Pilot none flying announcements -- ON", 3) end --else -- PNFsoundPlay=0 -- if (ipc.elapsedtime() > timeScriptLoaded + 5000) then ipc.Display("pero | JeeHellExtPWRbyGSX: Pilot none flying announcements -- OFF", 3) end --end end event.key(PNFSoundDialogKeyCode, PNFSoundDialogKeyShift, "PNFSoundsToggle") Look