Attract-Mode Support Forum

Attract-Mode Support => Themes => Topic started by: jingletit on March 28, 2017, 11:48:30 AM

Title: Does anyone know how to add previous game names?
Post by: jingletit on March 28, 2017, 11:48:30 AM
Does anyone know how to add previous game names?
(http://i63.tinypic.com/2m79bsz.png)
Title: Re: Does anyone know how to add previous game names?
Post by: l0ck0 on March 29, 2017, 05:20:12 AM
local anterior= fe.add_text("[Title]", ...... );
anterior.index_offset = 1;
local siguiente= fe.add_text("[Title]", ...... );
siguiente.index_offset = -1;

para mas detalles u opciones aqui lo puedes ver... http://forum.attractmode.org/index.php?topic=1303.msg9408#msg9408 y http://forum.attractmode.org/index.php?topic=1303.msg9431#msg9431
Title: Re: Does anyone know how to add previous game names?
Post by: jingletit on March 29, 2017, 07:29:33 AM
local anterior= fe.add_text("[Title]", ...... );
anterior.index_offset = 1;
local siguiente= fe.add_text("[Title]", ...... );
siguiente.index_offset = -1;

para mas detalles u opciones aqui lo puedes ver... http://forum.attractmode.org/index.php?topic=1303.msg9408#msg9408 y http://forum.attractmode.org/index.php?topic=1303.msg9431#msg9431
Thanks for your input but that's not really what I was asking I was wondering how to add text under each game art as well as info such as date of release.
Title: Re: Does anyone know how to add previous game names?
Post by: l0ck0 on March 30, 2017, 03:58:07 AM
coño en el titulo preguntas por el nombre... si lo que quieres es el año pues cambiar title por year y solucionado... si quieres ambas pues lo duplicas y pones en una title y en la otra year jajajajaj
Title: Re: Does anyone know how to add previous game names?
Post by: jingletit on March 30, 2017, 04:18:32 AM
coño en el titulo preguntas por el nombre... si lo que quieres es el año pues cambiar title por year y solucionado... si quieres ambas pues lo duplicas y pones en una title y en la otra year jajajajaj
Can you please speak English? Thank you
Title: Re: Does anyone know how to add previous game names?
Post by: bjose2345 on April 01, 2017, 04:25:30 PM
try to watch the MySlot object in the grid, and add to that object a new var, called something like title= fe.game_info( Info.Title, offset ), but you need a way to know the offset, maybe create the var title empty and after you add the flyer do something like

foreach(idx, val in my_array){

val.title.msg =  fe.game_info( Info.Title, idx)

}

its just a theory