sibbritt Posted January 11, 2017 Report Posted January 11, 2017 Hi, Just set up FSUIPC to display the VAS count. I find the green Window/box very distracting. Is there any way to change the colour to clear & just have the text displaying ? Kim
Pete Dowson Posted January 11, 2017 Report Posted January 11, 2017 17 minutes ago, sibbritt said: Is there any way to change the colour to clear & just have the text displaying ? Not that display, it's a sim function being used. There are solutions using Lua plug-ins to make other windows. Here's one example, which also shows frame rate and traffic count. It won't be transparent, only translucent: -- Update the display at 500 msec intervals (see event at end) function mytimer(time) fr = ipc.readUW(0x0274) if fr ~= 0 then fr = 32768/fr end fr = math.floor((fr * 10) + 0.5)/10 mem = ipc.readUD(0x024C) memmb = math.floor((mem/1024) + 0.5) traff = ipc.readUD(0x025C) ipc.display("Frame Rate " .. fr .. " fps\nVAS free " .. memmb .. " Mb\nTraffic " .. traff) end -- Adjust timing to taste: 500 = 1/2 second event.timer(500, "mytimer") You can undock it and move it to another screen, or run it on a client PC under WideFS. I have another version which also displays the maximum free memory block size, but that needs an interim FSUIPC update which isn't released yet. There are other solutions around, written by users. Take a look on the AVSIM forums for FSX or P3D. Pete
sibbritt Posted January 12, 2017 Author Report Posted January 12, 2017 Thanks Pete, I'm not tech savvy enough to use Lua plugins so I'll just have to put up with the green box. Cheers...Kim.
Pete Dowson Posted January 12, 2017 Report Posted January 12, 2017 There have been threads in either the FSX or the P3D forum on AVSIM with help and explanations. Pete
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now