hi gauntletlover.
I am such a fool. I forgot that this is a new build and I hadn't installed .net framework.
So i started up futureDMd and also BAM. It works. I tested family guy and T2 .but I tried addams fiamly and mario and no dmd.
also with T2 it does not show the animation gfx on the dmd.
also in Hyperpin when I try and select a table to play it just goes back to the table selection screen.
this is the code i am using in FPLaunch.ahk
;**********************************FUTURE PINBALL***********************************
if (systemName = "Future Pinball" && (executable = "Future Pinball.exe"))
{
;********* start future dmd **********
Run, "%emuPath%\FutureDMD.exe" close=1 table="%tableName%",,hide UseErrorLevel
Hotkey, %exitEmulatorKey%, CloseFP
RunWait, "%emuPath%\%executable%" /open "%tablePath%\%tableName%.fpt" /play /exit /arcaderender,,hide UseErrorLevel
Process, WaitClose, Future Pinball.exe
}
else if (systemName = "Visual Pinball" && (executable = "VPinball.exe"))
{
Hotkey, %exitEmulatorKey%, CloseVP
Run, "%emuPath%\%executable%" /play -"%tablePath%%tableName%.vpt",,hide UseErrorLevel
WinWaitActive, ahk_Class VPPlayer
Gui, destroy
Process, WaitClose, VPinball.exe
}
else
{
MsgBox,48,Error,%systemName% is an invalid System Name or %executable% isnt supported yet,6
}