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

Pages: 1 ... 26 27 [28] 29 30 ... 58
406
Themes / Re: Dragon Ball Vertical Theme
« on: May 25, 2018, 05:39:40 AM »
Updated :)

- GUI improvement
- add some dragon ball sound effect in theme

407
Try to download attract mode latest version and then replace H:\HyperPC\Attract\modules\animate.nut file.

Hi, that removed the error message but the progress bar still don't move when I scroll through the games.

The progress bar is shown the status of display systems, not the games. If you have setup different system, you may press left or right to change the system. And the progress bar will be changed

408
Themes / Dragon Ball Vertical Theme
« on: May 24, 2018, 08:53:31 AM »
Find a best DB image to be a background  :)
https://youtu.be/_Of-9V-srAs


409
Hmm, the progress bar does not work for me and I get this error in the console:

*** Initializing display: 'Atari 2600'
 - Loaded master romlist 'Atari 2600' in 16 ms (667 entries kept, 0 discarded)
 - Constructed 2 filters in 0 ms (1334 comparisons)
 - Loaded layout: H:\HyperPC\Attract\layouts/NoName/ (layout.nut)
Script Error in H:\HyperPC\Attract\modules\animate.nut - the index 'Transition' does not exist
Writing config to: H:\HyperPC\Attract\attract.cfg

This is how it looks for me:
https://youtu.be/Af2u1D4lWz8

Any ideas? :)

Try to download attract mode latest version and then replace H:\HyperPC\Attract\modules\animate.nut file.

410
Themes / Re: No Name Theme ( Final Version v3)
« on: May 21, 2018, 05:29:44 AM »
Create a vertical theme, you may download the pack on #1

411
Scripting / Try to complete Grid for Game List & System List
« on: May 17, 2018, 07:29:12 AM »
I am try to complete Grid for Game List & System List

Game List is completed  ;)
https://youtu.be/sYiI7KanfnA

System List WIP



412
Scripting / Re: System List possible?
« on: May 16, 2018, 09:02:26 AM »
The best System List is combine with Conveyor module. But sorry I don't know how to write a script in this moment . Need some time for study. ArcadeBliss is a Expert. He should know how to do  :P

413
Scripting / Re: AM will prefer to play video issue
« on: May 15, 2018, 05:21:30 PM »
Download the latest SDARCADE module from my site... it includes code that pulls up snaps only... then separate code that places and plays a video over the top of the snapshot after x number of seconds.  This should achieve the goal you're looking for,  no?

Thank you first. I will study  :)

414
Scripting / Re: System List possible?
« on: May 15, 2018, 04:28:21 PM »
I have revised the script to make a sample. You may try it.  :)

Code: [Select]
local ui_filters=[];
local ui_underline=[];

        // System   
        for ( local i = 0; i < fe.displays.len(); i++ ) {
            local filter = fe.displays[i];
            local shortname = filter.name.toupper();
            local offset = 55 * i;
           
            switch(filter.name) {
                //prefer known abbreviations
                case "Sega Model 2":
                    shortname = "SM2";
                    break;
                case "Sega Model 3":
                    shortname = "SM3";
                    break;
case "Sega Naomi":
                    shortname = "NAO";
                    break;

                //grab the first three letters as the short name
                default:
if (shortname.len() > 3)
shortname = shortname.slice(0, 3);
                    break;
            }
           
            local newfilt = fe.add_text(shortname, -18 + offset, 1, 73, 18);
            newfilt.set_rgb( 240, 240, 240 );

            local underline = fe.add_image("white.png", -18 + offset, 20, 60, 3);
            underline.set_rgb( 240, 0, 0 );
    underline.visible = false ;

            if (i == fe.list.display_index)
                underline.visible = true;
            ui_filters.push(newfilt);
ui_underline.push(underline);

        }

fe.add_transition_callback( this, "on_transition" );

function on_transition( ttype, var, ttime )
{

//Update filter highlight
                for ( local i = 0; i < ui_underline.len(); i++ )

                    ui_underline[i].visible = false;
                    ui_underline[fe.list.display_index].visible = true;

}

415
Scripting / Re: System List possible?
« on: May 15, 2018, 10:24:29 AM »
You may refer my theme. It is similar you want  :)
http://forum.attractmode.org/index.php?topic=2211.0

416
Scripting / Re: AM will prefer to play video issue
« on: May 12, 2018, 11:26:02 PM »
Code: [Select]
artwork    snap            e:\Emulator\Attract Mode\emu\Sammy Atomiswave\snap;e:\Emulator\Attract Mode\emu\Sammy Atomiswave\videos

Not working. It is still loading video

417
Scripting / AM will prefer to play video issue
« on: May 12, 2018, 10:56:26 PM »
Any one can teach me.

I setup system.cfg like as below.
artwork    snap            e:\Emulator\Attract Mode\emu\Sammy Atomiswave\videos
artwork    snap            e:\Emulator\Attract Mode\emu\Sammy Atomiswave\snap

When the script write as snap_t = fe.add_artwork( "snap",  0, 0, 320, 240 );, then AM will prefer to play video.

My question is: Any way to let AM to load snap image, if no image finding, then playing video.

418
Themes / Re: No Name Theme ( Final Version v2)
« on: May 12, 2018, 02:16:22 AM »
Hi All, Having a new idea again. Adding display system list bar   ;)

419
Themes / Re: MAGNUS theme with coverflow game selector [preview]
« on: May 09, 2018, 07:50:17 PM »
Looking for best news  :)

420
Themes / Re: No Name Theme is coming (Released)
« on: May 09, 2018, 05:08:13 PM »
Update again to change font of game name and this is a finial version.   :)

Pages: 1 ... 26 27 [28] 29 30 ... 58