Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
Themes / Re: Theme Pandora Box Atract 2.1 (Update-Menu system)
« Last post by jakabasej8 on March 15, 2025, 02:56:46 AM »
Hi guys, I can't see the list of the games in the left side, https://www.rcl-group.com/erp-sistem/ do you know where is the problem? https://www.shopsy.si/Strojna-Oprema/ Thank you!
Any suggestions on what might be wrong?
62
Themes / Re: PopupInfo plug-in
« Last post by jakabasej8 on March 15, 2025, 02:53:59 AM »
Modules are not shared in the build. https://kuhinje-nemec.com/kuhinje/moderne-kuhinje/ You need to download those from the sources.  https://atelierrebul.si/ A quick google will provide you that.
Modules aren’t shared in the build, but you can easily find them by searching online.

63
Themes / Re: Classic Anime x Tokusatsu (C.A.T.) JukeBox v2 update 27
« Last post by kent79 on March 14, 2025, 01:03:48 AM »
Update to v2 update 27

- minor UI update & fixed font error message
64
Themes / Re: Classic Anime x Tokusatsu (C.A.T.) JukeBox v2 update 26
« Last post by kent79 on March 12, 2025, 04:53:46 PM »
Update to v2 update 26

- minor UI update
65
Themes / Re: Arcadeflow theme v 17.5 [Release] Updated 17 December 2024
« Last post by zpaolo11x on March 06, 2025, 06:10:36 AM »
First off thank you for the work put into this theme i really enjoy using it..  My question is am setting up a 3 sided cocktail cabinet and trying to work out if there is a way to have 2 layouts one vertical and one horizintal?
I have added 2 copies off arcade flow into the layouts folder ( called one _vert ) but for the life of me i cant seem to work out a way to get the _vert to rotate? any pointers would be great!..

Hi, I'm not sure I understood what you mean with a "3 sided cocktail cab", if you want a layout that can work both horizontally and vertically, Arcadeflow can do it, and there's a hotkey defined in AM+ where you can either trigger rotation via the hotkey, or force a rotation. Is this what you are looking for?

EDIT: So as I thought, a three sided cocktail cab is one where you can sit either on the long edge (and see an horizontal screen) or on the short edges (and see a vertical screen). If you need the layout to switch accordingly, I suggest adding a button and linking it to the rotation control in AM+, that should do the trick!
66
General / Re: Installing on Ubuntu - Frustrated
« Last post by kent79 on March 02, 2025, 03:49:53 PM »
Code: [Select]

sudo apt-get -y install ssh make g++ git libsfml-dev libopenal-dev libavformat-dev libfontconfig1-dev libfreetype-dev libswscale-dev libarchive-dev libjpeg-dev libglu1-mesa-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libcurl4-openssl-dev build-essential cmake pkgconf libudev-dev libflac-dev libvorbis-dev libgl1-mesa-dev libswresample-dev libegl1-mesa-dev libgbm-dev libdrm-dev libboost-system-dev libboost-filesystem-dev

git clone https://github.com/mickelson/attract.git && cd attract

make -j $(cat /proc/cpuinfo | grep -c processor)

sudo make install


Try it. After installed, run attract
67
General / Re: Installing on Ubuntu - Frustrated
« Last post by eeji on March 02, 2025, 08:38:52 AM »
Bump, same issue
68
Themes / Re: Arcadeflow theme v 17.5 [Release] Updated 17 December 2024
« Last post by SimKinn on March 02, 2025, 04:12:43 AM »
First off thank you for the work put into this theme i really enjoy using it..  My question is am setting up a 3 sided cocktail cabinet and trying to work out if there is a way to have 2 layouts one vertical and one horizintal?
I have added 2 copies off arcade flow into the layouts folder ( called one _vert ) but for the life of me i cant seem to work out a way to get the _vert to rotate? any pointers would be great!..
69
Themes / Attract mode Non aggiornate più il front end
« Last post by gametime90 on February 28, 2025, 10:29:52 PM »
ragazzi facciamo questo annuncio tutti in modo che aggiornano attract mode che è uno stupendo front end
70
Scripting / Re: Help in getting Scrolling Text to go RIGHT and/or VERTICAL
« Last post by pacman_fan on February 28, 2025, 04:28:48 AM »
Apparently the public code was designed to only support HORIZONTAL_LEFT and HORIZONTAL_BOUNCE.  It would have been nice if it had been documented that was the case!

In any event, I'm sure there's a better way to update the scrollingnet.nut module, but here's what I came up with, enjoy:

Change:
  add = function( text, x, y, w, h, scroll_type = ScrollType.HORIZONTAL_LEFT ) {
to:
  add = function( text, x, y, w, h, scroll_type ) {
-------------------
Just before the //create a scrolling text object section:
Add this:

  // Support for all Scroll Functions
  local scroll_dir = "";
  if ( scroll_type == ScrollType.HORIZONTAL_LEFT ) scroll_dir = "left";
  if ( scroll_type == ScrollType.HORIZONTAL_RIGHT ) scroll_dir = "right";
  if ( scroll_type == ScrollType.HORIZONTAL_BOUNCE ) scroll_dir = "left";
  if ( scroll_type == ScrollType.VERTICAL_UP ) scroll_dir = "up";
  if ( scroll_type == ScrollType.VERTICAL_DOWN ) scroll_dir = "down";
  if ( scroll_type == ScrollType.VERTICAL_BOUNCE ) scroll_dir = "up";

//create a scrolling text object
...
...
-------------------
Change:
  _dir = "left",
to:
  _dir = scroll_dir,
-------------------
Pages: 1 ... 5 6 [7] 8 9 10