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 - tomnjerry74

Pages: [1]
1
Themes / Re: NxL theme! [Release] new video!2-4-2017 Update
« on: February 11, 2021, 12:23:35 PM »
EDIT: Fixed! Got to the layout.nut and replace the frame and frameglow codes with this (I just added zorder values):
Code: [Select]
// add the frame selection box
gridc.frame = fe.add_image( "assets/uielements/frame.png", frame_width * 2, frame_height * 2, frame_width, frame_height );
gridc.frame.alpha = 0;
gridc.frame.zorder=102;
// add the frame selection box glow
gridc.frameg = fe.add_image( "assets/uielements/frameglow.png", frame_width * 2, frame_height * 2, frameg_width, frameg_height );
gridc.frameg.alpha = 0;
gridc.frameg.zorder=103;

I can't seem to get the border to work properly using the latest attract mode. It stays behind all other objects instead of being in front. Does anyone know how I can make this asset always remain in the foreground?

What is should be:


What mine does:

2
Themes / Re: The Great Themes Collection v10.3 - Final Edition!
« on: February 02, 2021, 08:58:33 PM »
Incredible work you have done here. Thank you for this amazing set of themes!

Is there a way that I can use full-screen theme videos for games, and if the theme video is not present then automatically use the system's default theme (with normal snaps, boxart, etc)? Kind of like how the Hyperspin Mode themes work but for all of the systems.

3
General / Re: AM Active in Background (Singe 2.0)
« on: January 31, 2021, 05:19:27 AM »
Try non-blocking mode wait

Thank you so much for the response. Setting to 1 worked perfectly.

4
General / AM Active in Background (Singe 2.0)
« on: January 26, 2021, 12:09:56 PM »
Hello everyone,

I recently set up singe 2.0, using an emulator config that looks like this:
Code: [Select]
executable           CMD
args                 /c "[romfilename]"
workdir              $PROGDIR/emulators/singe 2.00/
rompath              $PROGDIR/emulators/singe 2.00/
romext               .bat

A sample .bat file for the games looks like this:
Code: [Select]
@start Singe-v2.00-Windows-x86_64.exe -k -w -z -d data -v Maddog_McCree_Singe_2/Video/maddog.mp4 Maddog_McCree_Singe_2/Script/maddog.singe
The problem is, whenever I start a game in AM, the game starts but AM doesn't sleep in the background. This means theme videos are playing in the background while trying to play the actual game. Does anyone know of a solution?

Pages: [1]