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

Pages: [1] 2 3 ... 7
1
Themes / Re: Boxart or flyer delay
« on: January 03, 2024, 01:58:18 AM »
Sorry haven't posted in a while I've been sick. It's not working, what else in the code do I need to change? I put that line in you gave me. The boxart will show but it won't delay. IThe video delay works but not the flyers on boxart. I even tried to change artwork.video to .boxart and nothing.

2
Themes / Boxart or flyer delay
« on: December 12, 2023, 12:44:06 PM »
I was wondering how to have the boxart or flyer's delay? I found this online for video snap's as wondering how i would change it for boxart and flyer's.

local settings = {
   delay_timer = 0,
   play_delay = 3000
}

local artwork = fe.add_artwork("snap", 0, 0, 480, 360)

function on_transition(ttype, var, transition_time) {
    if ( ttype == Transition.StartLayout || ttype == Transition.ToNewList || ttype == Transition.FromOldSelection ) {
        artwork.video_flags = Vid.NoAutoStart
        settings.delay_timer = fe.layout.time
    }
    return false
}

function on_tick(tick_time) {
   if ( !artwork.video_playing && tick_time - settings.delay_timer >= settings.play_delay ) artwork.video_playing = true
}

fe.add_ticks_callback(this, "on_tick")
fe.add_transition_callback(this, "on_transition")

3
General / Attractmode+
« on: November 14, 2023, 08:25:30 AM »
Does any body know where I can download attractmode+ at for windows?

4
Themes / Re: Layout Help!
« on: August 21, 2023, 02:24:04 PM »
Ahh.. Now I feel great again...  8)
Thanks for your help!

5
Scripting / Re: Boxart delay
« on: August 21, 2023, 02:22:39 PM »
Code: [Select]
local last_nav = 0;
local gtime = 0;
local art_flag = false;

local artwork = fe.add_artwork("boxart", 15, 34, 661, 1018)

fe.add_transition_callback( "my_transition" );
function my_transition( ttype, var, ttime )
{
if ( ttype == Transition.ToNewSelection )
{
last_nav = gtime;
art_flag = true;
}
}

fe.add_ticks_callback( this, "on_tick" );
function on_tick( ttime )
{
    gtime = ttime;
if (art_flag && (ttime - last_nav > 3000)) 
{
artwork.file_name = fe.get_art("boxart");
art_flag = true;
}
}

somthing like this should work for ya bud :P
Was not able to get it to work, I will try again in a week I to go out of town.

6
Scripting / Re: Boxart delay
« on: August 18, 2023, 03:52:35 PM »
Thank you I will try it tomorrow.

7
Themes / Re: Layout Help!
« on: August 18, 2023, 03:50:07 PM »
now i feel like a dick,  lol sorry no problem...homi
Don't feel that way it's ok!

8
Scripting / Boxart delay
« on: August 06, 2023, 12:49:09 PM »
So when I am scrolling for a game and I stop on a game I want a 3 second delay before the boxart shows. This is what I have so far
local artwork = fe.add_artwork("boxart", 15, 34, 661, 1018)
What would I add to this so it will delay for 3 seconds before showing?

9
Themes / Re: Layout Help!
« on: August 06, 2023, 03:45:14 AM »
Why ask questions if you don't intend to reply...... Some of you guys Realy amaz me.... Bro...
Sorry for no reply, I have been at the hospital with my wife as she had a emergency surgery. I have been spending all of my time with her, but the worst of it is over now. Thank you for your help and I will let you know if it worked when I get home today or tomorrow.

10
Themes / Re: Layout Help!
« on: July 22, 2023, 05:17:35 AM »
So i have been messing around with the layout.nut changing things. I have it how I want it now except for the games list. I am uploading 2 images, the first image is how it is and the second image is ho I want it. I would like the end of the games list to merge into the beginning of the games list like image 2. Could some one help with the games list layout.nut?


11
Themes / Re: Layout Help!
« on: May 21, 2023, 05:49:49 PM »
I have my theme up and running. But how do i add a clicking sound when i scroll through the games? I have a click.mp3 file. Ok i figured it out.

12
Themes / Re: Layout Help!
« on: April 30, 2023, 11:21:15 PM »
Thanks a lot for your help but I had a few more questions for you. I want a image to show for 3 seconds and then a video snap to show over the image. I would also like the boxart, marquee to disappear after 3 seconds and the flyer disappear after 3 seconds. How would I add that to a layout.nut?

13
Themes / Re: Layout Help!
« on: April 22, 2023, 06:29:51 PM »
Thanks i got it working!

14
Themes / Re: Layout Help!
« on: April 21, 2023, 07:43:07 AM »
So where do I download attractmode+? I don't see it. Also I am using it on a Windows 10 PC.

15
Themes / Re: Layout Help!
« on: April 20, 2023, 10:17:42 AM »
Yes but instead of the blue bar around the selected game, I want the selected game font to be a different color and larger.


Pages: [1] 2 3 ... 7