Content Provider vogliadicane Posted July 2, 2024 Content Provider Posted July 2, 2024 I have a 2 screen system and I got managed to get all DMD windows in front of the backglass (by "form to back" in BG settings). Nevertheless it doesnot work, when I launch tables from PBY; the backglass is not visible only a black area. I tried different ways to control the backglass, but either it doesn't work with VPX alone or not with PBY.
digitalarts Posted July 3, 2024 Posted July 3, 2024 With pinbally you can set a "fake" backglass (jpg,PNG) for tables without own b2s, which is visible during gameplay (shown by pinbally, not vpx/b2s) Maybe check your settings if this is activated
Content Provider vogliadicane Posted July 5, 2024 Author Content Provider Posted July 5, 2024 This sounds very good. Unfotunately I didn't find the relevant point in the PBY settings. I searched all settings in PBY and PBX; my PBY install is based on PBX and some things are still used from PBX, which makes things more complicated. Anyways, I didn't find out.
Content Provider vogliadicane Posted July 5, 2024 Author Content Provider Posted July 5, 2024 What argues strongly for your idea is: when I disable the backglass in PBY's settings, it all works as if I start VPX alone. So PBY definitely interferes with something it shows in addition. And so, covers my B2S.
Tikimaster Posted August 5, 2024 Posted August 5, 2024 (edited) On 7/5/2024 at 9:02 PM, vogliadicane said: Anyways, I didn't find out. in operator menu go to game settings. there are the settings to have the pinbally backglass shown in game. If nothing is selected and a black window still appears, you should be able to close the window with the right mouse button. close pinbally and restart it. If the backglass window is no longer visible and turned off - it is a PinballY problem. I solved this by inserting lines into the main.js file that automatically close the windows via script at startup and turn them on again at exit. These lines are: mainWindow.on("gamestarted", ev => { backglassWindow.showWindow(false); }); mainWindow.on("gamestarted", ev => { topperWindow.showWindow(false); }); mainWindow.on("gamestarted", ev => { dmdWindow.showWindow(false); }); mainWindow.on("gameover", ev => { backglassWindow.showWindow(true); }); mainWindow.on("gameover", ev => { topperWindow.showWindow(true); }); mainWindow.on("gameover", ev => { dmdWindow.showWindow(true); }); As you can see, Backglass, Topper and DMD are switched off at the start and switched on again when the table is closed. Edited August 5, 2024 by Tikimaster
Content Provider vogliadicane Posted August 6, 2024 Author Content Provider Posted August 6, 2024 Thanks, I'll give it a try and will report.
Content Provider vogliadicane Posted August 7, 2024 Author Content Provider Posted August 7, 2024 Didn't do it, unfortunately.My problem is more a black screen, which is in the way. Pinball Y closes the BG videos correctly but produces a black screen window from some reaseons.
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