Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - momir76

Pages: [1]
1
Scripting / Re: KeyboardSearch module
« on: June 22, 2025, 12:05:43 AM »
I added in my Pandora layout code but only virtual keyboard show up when i add: local my_config = fe.get_config(); but all gamelist data is missing. Anyone can help?

Edit: It's working now

2
Themes / Re: Theme Pandora Box Atract 2.1 (Update-Menu system)
« on: June 21, 2025, 12:31:30 AM »
@jakabasej8

You have to download other shuffle module and replace in directory: modules\shuffle and replace module.nut wiith other. This will make gamelist will be visible.

Does anyone have link of version 2.3 theme Pandora Box Attract 2,3?

3
Themes / Re: Theme Pandora Box Atract 2.1 (Update-Menu system)
« on: June 20, 2025, 10:26:24 AM »
@jakabasej8
You have to use older Attract mode.

I don't know how to activate virtual keyboard to search for games. Configure search key in controller option but can not activate.

4
Themes / Re: Theme Pandora Box Atract 2.1 (Update-Menu system)
« on: January 17, 2025, 06:31:22 AM »
How to make gamelist formated with 4 digits like on real Pandora box, with game numbers 0001,0002,0003...

5
Scripting / [ListEntry] Format
« on: January 16, 2025, 01:58:11 AM »
I want to format ListEntry with 4 digits like this 0001, 0002, 0003

I have code:

Code: [Select]
local list1 = ShuffleNumber(12, "text", "[ListEntry]");


list1.slots[0].set_pos(flx*0.055, fly*0.225, flw*0.250, flh*0.044);
list1.slots[0].set_rgb (R,G,B);
list1.slots[0].font ="zekton";
list1.slots[0].charsize = font_size;
list1.slots[0].alpha = alpf;
list1.slots[0].align = Align.Left;
list1.slots[0].zorder = -1;

list1.slots[1].set_pos(flx*0.055, fly*0.262, flw*0.250, flh*0.080);
list1.slots[1].set_rgb (R,G,B);
list1.slots[1].font ="zekton";
list1.slots[1].charsize = font_size;
list1.slots[1].alpha = alpf;
list1.slots[1].align = Align.Left;
...
for all 12 slots

if i add this, not showing game numbers

Code: [Select]
if (("[ListEntry]").len() > 0 && ("[ListEntry]").len() < 2)
{
  local list1 = ShuffleNumber(12, "text", "000[ListEntry]");
}

Pages: [1]