Attract-Mode Support Forum

Attract-Mode Support => Scripting => Topic started by: kent79 on August 13, 2016, 04:41:40 AM

Title: "next_page" question?
Post by: kent79 on August 13, 2016, 04:41:40 AM
   function on_signal( sig )
   {
      switch ( sig )   
      {
      case "up":
         ...
         else
         {
            fe.signal( "next_page" );
         }
         return true;

"next_page" can go to next 5th game  e.g. 5-> 10

Can I make it go to next 6th game? e.g. 5-> 11

Thanks
Title: Re: "next_page" question?
Post by: ArcadeBliss on August 13, 2016, 05:49:13 PM
Stride = fe.layout.page_size = 6
Title: Re: "next_page" question?
Post by: kent79 on August 14, 2016, 07:35:58 PM
Many Thanks  :)