When i quit the table, Aero stays disabled. Aero is enabled only after i quit VP.
When i started a dB2S, quit the table and start it again, VP crashes.
For Hyperpin this isn't a problem, only when you use no frontend.
I have with some (not all) tables the same issue, but only with Win7 64 bit, while it works fine with 32 bit. Works fine from Hyperpin, crashes when called directly.
I think (think means not sure) that it hits only tables which don't stop correctly, I mean the sound of the ROM continue to play for 3-5 seconds after I pressed ESC.
Try to open the script and insert:
sub Table_Exit ' in some tables this needs to be table1_exit
Controller.Stop
end sub
Then the sound stops immediately and so far I never run into crashes again if I relaunched the table.
Testing that I think that tables without ROM, such as ACDC don't crash while tables with ROM have the sound issue and crash (except I added code to stop the controller).
This is great find - only it can be table_exit or table1_exit or tableobjectname_exit - depending what you renamed table object to.
This could be used to close rosve's old b2s backglass from table - so that fplaunch doesn't have to do it and that you don't have to rename table to end with B2S.
There is one problem with rosve's b2s launch code (in b2s.vbs) - it doesn't support blanks in b2s exe name.
But that can be easily fixed like this - go to b2s.vbs and in launchbackglass routine change
exename=exename+".exe"
to
exename=""""+exename+".exe"""
On exit to close this b2s exe you have to add this to table script:
sub Abracadabra_Exit ' in some tables this needs to be table1_exit
'Controller.Stop
Dim WshShell
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "taskkill /F /IM ""Abra Ca Dabra (Gottlieb) (1975) (pinuck) (2.0.0)
B2S.exe"""
end sub
It could be even automated to take vpt name and use it for backglass name - so that you can change name however you want and never have to edit table script.
Herweh does directb2s closes exe if it is run in exe mode?
Edited by blur, 13 February 2013 - 11:50 AM.