Attract-Mode Support Forum
Attract-Mode Support => General => Topic started by: monkeybomb on March 31, 2016, 06:33:19 PM
-
I know this must have been answered already, but I can't find it anywhere obvious or by using the search. Any help would be appreciated.
-
It was - I was asking the same question before.
You have to add order=##
See the example below.
</ label="cab screen", help="video = video snap, screenshot = game screenshot", options="video, screenshot", order=1 /> cabScreenType="video";
</ label="scanlines on screen", help="show scanlines effect on cab screen.", options="light,medium,dark,off", order=2 /> enable_scanlines="light";
-
Do you mean the actual display order in AM?
You need to edit the am cfg file.
-
oops... I've thought (I don't know why :) ) - that you are asking about layout options order.
-
Thank you, that worked.
-
Do you mean the actual display order in AM?
You need to edit the am cfg file.
Hi, as the author I need to change the display order.
how can I edit the am cfg file?
would be perfect to have a default display when attract mode start.
thanks in advance.
-
You can edit the attract.cfg with notepad or notepad++.
-
You can edit the attract.cfg with notepad or notepad++.
Sorry, I don't speak english very well...
I mean, what I've to write into the attract.cfg?
Haven't fine any docs about it, infortunately.
Thanks.
-
You just need to open the .cfg with a text editor and swap the order of the displays
# Generated by Attract-Mode v2.0.0-rc2
#
display snes9x
layout emulation_station
romlist snes9x
in_cycle yes
in_menu yes
filter All
filter Favourites
rule Favourite equals 1
display fusion
layout emulation_station
romlist fusion
in_cycle yes
in_menu yes
filter All
filter Favourites
rule Favourite equals 1
-
xbs is correct.
Use your text editor that comes with your system..notepad for windows (NOT wordpad) ofor liux you can use gedit or leafpad..(even nano or vim) the emulators are displayed in the order they are in the the configuration file (using xbs's example):
# Generated by Attract-Mode v2.0.0-rc2
#
display snes9x
layout emulation_station
romlist snes9x
in_cycle yes
in_menu yes
filter All
filter Favourites
rule Favourite equals 1
display fusion
layout emulation_station
romlist fusion
in_cycle yes
in_menu yes
filter All
filter Favourites
rule Favourite equals 1
you change it to this:
# Generated by Attract-Mode v2.0.0-rc2
#
display fusion
layout emulation_station
romlist fusion
in_cycle yes
in_menu yes
filter All
filter Favourites
rule Favourite equals 1
display snes9x
layout emulation_station
romlist snes9x
in_cycle yes
in_menu yes
filter All
filter Favourites
rule Favourite equals 1
so snes9x was first..however fusion now shows first.
Just cut and paste the config the way you want it to show
-
Thanks to all. it's ok now.