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

Pages: [1] 2 3 ... 76
1
General / Re: Windows .bat files wont load in Attract Mode
« on: May 21, 2023, 01:15:00 PM »
mabey ..check uppercase lowercase...matching...

2
Themes / Re: Layout Help!
« on: May 01, 2023, 10:45:27 AM »
once you set that to 3 sec...  in  the transition just add a another "if" statment that has somthing like,
OBJECTS1.artwork_videotheme.video_playing = true
snap.visible = false
marquee.visible = false   ...ext   whatever you have your stuff set to in the theme....

3
Themes / Re: Layout Help!
« on: May 01, 2023, 10:37:45 AM »
this is code for snap to video delay
Code: [Select]
//
// Videotheme Timer Code By qqplayer
//

::OBJECTS1 <- {
artwork_videotheme = fe.add_artwork("video", flx*0.3125, 150, 270, 190),
}

OBJECTS1.artwork_videotheme.visible=false;

::videoSound <- Vid.NoAudio;
OBJECTS1.artwork_videotheme.video_flags = videoSound;

local settings = {
   delay_timer = 0,
   play_delay = 2000,
   stop_play = 235000,
}

function on_transition_videotheme( ttype, var, ttime ) {
 switch ( ttype ) {
  case Transition.StartLayout:
  case Transition.ToNewSelection:
  case Transition.ToNewList:
  case Transition.EndNavigation:
        OBJECTS1.artwork_videotheme.video_flags = Vid.NoAutoStart;
        settings.delay_timer = fe.layout.time;
        OBJECTS1.artwork_videotheme.visible=false;
       break;
  }
 return false;
}

fe.add_transition_callback( "on_transition_videotheme" );

function on_tick_videotheme(tick_time) {
   if ( !OBJECTS1.artwork_videotheme.video_playing && tick_time - settings.delay_timer >= settings.play_delay ) {
   
        OBJECTS1.artwork_videotheme.video_playing = true;
       
        ::videoSound <- Vid.Default;
        OBJECTS1.artwork_videotheme.video_flags = videoSound;       
       
        OBJECTS1.artwork_videotheme.visible=true;
       
        OBJECTS1.artwork_videotheme.alpha = 0
        local alpha_artwork_videotheme_0 = {
        property = "alpha", start = 0 end = 255, time = 500 easing = Easing.Out,
        }
 
        animation.add( PropertyAnimation( OBJECTS1.artwork_videotheme, alpha_artwork_videotheme_0 ) );
       
    }
   
    else if ( tick_time - settings.delay_timer >= settings.stop_play ) {
       
        OBJECTS1.artwork_videotheme.visible=false;
       
    }
   
}

fe.add_ticks_callback(this, "on_tick_videotheme");

}

4
Themes / Re: Layout Help!
« on: April 20, 2023, 03:40:16 PM »
here ya go,  just put were you layouts go, use am+ not reular am k.  https://www.dropbox.com/s/wq6lz1srxjwwuct/theme.zip?dl=0

5
Themes / Re: Layout Help!
« on: April 19, 2023, 08:12:23 AM »
looking for somthing like this ?  very basic..  https://youtu.be/kQJQ7AREfiA

6
General / Re: Help this code works? i try but not sucess!!
« on: March 28, 2023, 06:29:52 AM »
not quite shure,  been talked abought many time as i recall to no avail ,   intercepting the select sig,   interesting code though...i hope you are able to do it. good luck

7
this theme could be realy refinde quite a bit..just my opinion...though

8
well the descripion, font size is not good looks pasted,  and the carosoll slanted box art is framed with non slanted squar frame.  kind of clunky looking...

9
General / Re: SWF upside down
« on: March 14, 2023, 06:56:42 AM »
here is a link from i while back on swf,  dont think a good choice for the pi4,  never quite understood why anyone wants to do hyperspin in am, whynot just go use hyperspin
http://forum.attractmode.org/index.php?topic=1381.msg9909#msg9909

10
Scripting / Re: Played Count and Played Time STAT files
« on: March 14, 2023, 05:41:22 AM »
he talking abought, making thoes changes to the source code,   http://attractmode.org/download.html
then compiling am for use,   if he were a reley nice guy, he would just send you a link to his binary for you to use... ;) and help you out...

11
Themes / Re: Elegante theme showcase [example video and screenshots] [WIP]
« on: February 28, 2023, 01:13:58 PM »
their was a beta that was releasd,,,,then it is getting a full revamp with new coding...it is in the works....stay tuned...it will come around...

12
Themes / Re: 2 themes Consoles 2.3D & Menu Consoles 3D
« on: February 22, 2023, 06:05:14 PM »
i have to say,  the voices, in the "audios" folder,,    i swear that is snoop dog"s voice, llol    good stuff :D

13
Themes / Re: 2 themes Consoles 2.3D & Menu Consoles 3D
« on: February 22, 2023, 05:54:44 PM »
thanks for the share,   looks cool..  great work...getting ready to try..

14
General / Re: Forum registration is almost completely broken
« on: February 20, 2023, 01:57:15 PM »
its a stupid test....bro..     just kidding welcom to AM.. 

15
General / Re: New problem
« on: February 19, 2023, 04:04:17 PM »
So u can tab into mame,  when game launch out side of am but launch with AM and then it won't let u tab into mame... Would that be correct.. Maybe try win 11?

Pages: [1] 2 3 ... 76