ok, then...
In OTHER SYSTEMS.. PBX launches RUN.exe (ahk)
RUN.exe :
Process, Close, PinballX.exe
Run C:\Users\Angelo\Desktop\TPAFreeCamMod\TPAFreeCamMod.exe -table %1%
~Escape::
Process, Close, PinballArcade11.exe
FileRead, xmldata, D:\PinballX\Databases\PBA\PBA.xml ;change to your pinball arcade database
doc := ComObjCreate("MSXML2.DOMDocument.6.0")
doc.async := false
doc.loadXML(xmldata)
table = //game[@name='%1%']/description
Node := doc.selectSingleNode(table)
description:= Node.text
IniWrite, %description%%1%System_3, D:\Pinballx\Config\PinballX.ini, Internal, lastselected ;change drive letter and system number, for me its 2 in Other Systems so _2
Run D:\Pinballx\PinballX.exe
ExitAPP
return
----------------
so it calls for TPAFreeCamMod.exe with table name
TPAFCM calls for a file without extension, same as table name..
so if i select ElviraScaredStiff.. it calls for a file named ElviraScareStiff
WITHIN that file is like :
RUN C:\Users\xxxxx\Desktop\TPAFreeCamMod\TPAFreeCamMod.exe -table ElviraScaredStiff
it's strange to me why once RUN.exe calls for TPAFCM + table name.. it doesn't run that table directly instead
of asking for 1 more file O_o (file named as the table)
beside that, it works randomly