Author Topic: "next_page" question?  (Read 4901 times)

kent79

  • Hero Member
  • *****
  • Posts: 842
    • View Profile
"next_page" question?
« 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

ArcadeBliss

  • Sr. Member
  • ****
  • Posts: 195
    • View Profile
Re: "next_page" question?
« Reply #1 on: August 13, 2016, 05:49:13 PM »
Stride = fe.layout.page_size = 6

kent79

  • Hero Member
  • *****
  • Posts: 842
    • View Profile
Re: "next_page" question?
« Reply #2 on: August 14, 2016, 07:35:58 PM »
Many Thanks  :)