Hi allIs it possible to turn the brightness down of the Attractmode front-end itself? I'm not talking about MAME where it can be controlled with silders. I wondered if there was any option/config edit I could do that turned everything down a few notches for the preview snaps/mp4s aren't as bright across the board - without me having to turn each .png/mp4 down individually! Thanks
function on_signal( sig ) { switch ( sig ) { case "up": fe.signal( "custom1" ); return true; case "down": fe.signal( "custom2" ); return true; } return false; }fe.add_signal_handler(this, "on_signal");
Thanks all, er, the explanation is quite long winded...basically I'm trying to get the .MP4 video previews brightness down without batch converting them. Is there any way to do this easily? Thanks
//Surfacelocal surface = fe.add_surface( 640, 480 );local snap = surface.add_artwork("snap", 0, 0, 640, 480);snap.trigger = Transition.EndNavigation;snap.preserve_aspect_ratio = false;
//Surfacelocal surface = fe.add_surface( 640, 480 );local snap = surface.add_artwork("snap", 0, 0, 640, 480);snap.alpha=130;snap.trigger = Transition.EndNavigation;snap.preserve_aspect_ratio = false;