Author Topic: Does anyone know how to add previous game names?  (Read 4274 times)

jingletit

  • Full Member
  • ***
  • Posts: 34
    • View Profile
Does anyone know how to add previous game names?
« on: March 28, 2017, 11:48:30 AM »
Does anyone know how to add previous game names?

l0ck0

  • Jr. Member
  • **
  • Posts: 21
    • View Profile
Re: Does anyone know how to add previous game names?
« Reply #1 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

jingletit

  • Full Member
  • ***
  • Posts: 34
    • View Profile
Re: Does anyone know how to add previous game names?
« Reply #2 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.

l0ck0

  • Jr. Member
  • **
  • Posts: 21
    • View Profile
Re: Does anyone know how to add previous game names?
« Reply #3 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

jingletit

  • Full Member
  • ***
  • Posts: 34
    • View Profile
Re: Does anyone know how to add previous game names?
« Reply #4 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

bjose2345

  • Sr. Member
  • ****
  • Posts: 107
    • View Profile
Re: Does anyone know how to add previous game names?
« Reply #5 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
« Last Edit: April 01, 2017, 04:37:22 PM by bjose2345 »