Sure no problem at all. Here you are:
In your \attractmode\layouts\Game Station directory, edit the file layout.nut. Add a new line just above the last line of Class UserConfig:
</ label="Display Flyer or Cabinet", help="Flyer or Cabinet", options="flyer,cabinet", order=9 /> disp_type="flyer";
Then change the Order Number of the last line to account for this new line (Change order=9 to order=10):
</ label="Display Move Strip", help="Display move strip. Remember to create a new artwork folder called [flyer2]", options="Yes,No", order=10 /> enable_strip="Yes";
Then under the //Flyer section, change the fe.add_artwork line to be as follows:
From:
local flyer = fe.add_artwork("flyer", flx*0.59, fly*0.11, flw*0.41, flh*0.691 );
To:
local flyer = fe.add_artwork(my_config["disp_type"], flx*0.59, fly*0.11, flw*0.41, flh*0.691 );
---
Then you need to add a new Artwork for your cabinets, you can either do this through the menu system or edit the file manually:
In \attractmode\emulators\mame.cfg add a new artwork line called "cabinet" and the path you your cabinet files:
artwork cabinet e:\pS_Cabinets
---
Should be good to go, just go into Layout Options for this Theme and choose "cabinet". You could easily add the other options line control panels, etc.
Cheers
Tim