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.


Topics - gionni44

Pages: [1]
1
Scripting / wait 1 second before change artwork
« on: March 09, 2018, 01:27:27 PM »
Is there a way to delay the artwork changing?

When i press right art change immediatly, how to delay it one second?

2
Scripting / Align text on top
« on: March 09, 2018, 01:18:26 AM »
I wrote a theme that show game story from "extra" voice of romlist, but I'm not able to align it on top of the "rectangle" that I decided, the only options that I found is left, right and centre, but each one is centered vertically.
How I can resolve this issue?

3
Scripting / OVerlapping animations, how to stop it?
« on: February 20, 2018, 04:51:49 AM »
Hi guys, I'm working on my layout but when it start animations run simoultanesly.
The Transition.ToNewList doesn't stop when I press to change game and the result is overlapping the 2 animations.  :(
Is there a way to stop Transition.ToNewList when start Transition.ToNewSelection?

local panel = fe.add_image("white.png", 0, 0, flw*0.28, flh*1.00 );
panel.set_rgb( pR, pG, pB );
panel.alpha=paa;

   local plb_an1 = {
      when = Transition.ToNewSelection | Transition.ToNewList,
      property = "alpha"
      end = paa,
      time = 500,
   }
   local plb_an2 = {
      when = Transition.ToNewSelection | Transition.ToNewList,
      property = "alpha"
      start = paa,
      end = 255,
      time = 4000,
      delay = 5000,
   }
animation.add( PropertyAnimation( panel, plb_an1 ) );
animation.add( PropertyAnimation( panel, plb_an2 ) );


Thanks a lot !  :)

4
Scripting / How to insert Emulator text story
« on: February 14, 2018, 03:05:28 AM »
Hi guys, I would put a text story about each system inside my layout.
I thinked to read text from a .txt named with Emulator (es. sega32x.txt, genesis.txt etc...) but I'm not able
or
another way that I thinked is to write each system/story inside layout.nut and when variable match Emulator
AM show its system story

I know the method by creating a jpg with all text and use it like an image art but is too long when I have to change text

Thanks guys!

Pages: [1]