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

Pages: 1 ... 26 27 [28]
406
Themes / Re: Put a random icon on the screen.
« on: May 17, 2018, 07:50:02 AM »
I created a random function.

https://github.com/keilmillerjr/helpers-module/blob/master/readme.md

Pass array length. It return number. Use it as index in array to update image on your transition.


Okay thank you very much.
But, I'm not an expert programmer.

I tried this, but it does not work for me:

Code: [Select]
fe.load_module( "module-master" );

// Posters
local my_film = randInt(6);

local film = fe.add_image("posters/films/[my_film].png", 0, 0, flw*0.4, flh*0.3);
film.preserve_aspect_ratio = true;
film.trigger = Transition.EndNavigation;


Being 1.png, 2.png, etc. my film icons.

And I do not know what I'm doing wrong ... I'm sorry.

Edit:

The module.nut I downloaded it from here:
://github.com/keilmillerjr/helpers-module

I have copied the module "module.nut"  in "E:\arcade\attract\ modules", renaming it "module-master.nut".

407
Themes / Put a random icon on the screen.
« on: May 17, 2018, 05:30:24 AM »
To put on the screen of my layout a certain icon of the path / icons, I use the following code:

Code: [Select]

local icon = fe.add_image("icons/icon01.png", flx*0.215, fly*0.025, flw*0.1, flh*0.08);
icon.preserve_aspect_ratio = true;
icon.trigger = Transition.EndNavigation;


And it works perfectly.
   
But what I want is to put on the screen any of the icons contained in /icons in a random way, that comes out any of those that are inside /icons.

But I do not know how to do it. And I do not find anything either. Somebody could help me?

Sorry for my bad english.

Thanks in advance.

408
Themes / Re: HyperPie Cinematix
« on: December 01, 2017, 02:50:41 AM »
I use the Hyperpie Cinematix on my PC, to launch my emulators, but there is something I do not know how to do.
Would it be possible to launch directly from this topic in Attract Mode an application like DBGL.exe (Dos Box Game Launcher)?
What code should I use?
Thank you.


I would also like to know

Thanks.

409
Themes / Re: [download] NEVATO theme
« on: November 21, 2017, 11:23:43 AM »
open up layout.nut file in text editor
Find commented lines similar to this:

fe.layout.width = 1024;
fe.layout.height = 768;

And change them to look like above code (remove the comment and change the resolution to 1024x768, not yours 1024x600).
It should work.

Sorry for taking a long time to answer you, but I've been busy with other things. Work, blessed work...  :D
Until today I have not been able to verify...
Thanks for the help, WORKS!!!!.

410
Themes / Re: [download] NEVATO theme
« on: September 11, 2017, 06:59:25 AM »
It doesn't work at all - or it's stretched?

You can manually set resolution just uncomment some lines in layout.nut (check this thread earlier if in doubt).
But set it as 1024x768 - it will scale to fit the screen - a little squashed, but it shouldn't be noticeable

It does not work. Black screen.
I will try changing things. Although I already did and I did not get anything positive.
Thank you  ;D

411
General / I can not do this with dosbox Can it?
« on: September 10, 2017, 03:05:30 AM »
Well, the fact is that I want the twobox to play the games on my 1920x1200 screen only in a 640x480 frame, but not in the form window, but in fullscreen.

I want it to look like this:

[IMG] http://i68.tinypic.com/154wubc.jpg [/ img]


I have changed all parameters in dosbox.conf a lot of times, but I do not give the result I want.

The same can not be done.

Let's see if anyone can help me.

And by the way, if you could, put a bezel would be fantastic ... Something like this:

[IMG] http://i68.tinypic.com/29y5w0y.jpg [/ img]

By the way, I do not use rocketlauncher or retroarch. My dosbox goes in Attract Mode, and full screen looks good, but with too many pixels.

Thanks for the help, friends.

412
Emulators / Re: Various emulator settings
« on: September 09, 2017, 03:35:46 AM »
DOSBOX

Sorry this code is wrong.  :-[

Code: [Select]
@echo off
SET linkspath=C:\attract\EMU\dosbox\links\
SET dosboxpath=C:\attract\EMU\dosbox\DOSBox.exe

for %%a in (%1) do (
set filepath=%%~dpa
)

cd %filepath%
for %%* in (.) do (
set currentfolder=%%~nx*
echo %%~nx*
)

echo "%dosboxpath%" > %linkspath%%currentfolder%.bat %1 -exit -fullscreen

The correct would be:  :-[ :-[ :-[

Code: [Select]
@echo off
SET linkspath=C:\attract\EMU\dosbox\links\
SET dosboxpath=C:\attract\EMU\dosbox\DOSBox.exe

for %%a in (%1) do (
set filepath=%%~dpa
)

cd %filepath%
for %%* in (.) do (
set currentfolder=%%~nx*
echo %%~nx*
)

cd %linkspath%

echo "%dosboxpath%" > %currentfolder%.bat %1 -exit -fullscreen


Thank you very much for the post  :)

413
Themes / Re: [download] NEVATO theme
« on: September 09, 2017, 01:49:44 AM »
I love this layout.
I use it usually.
Thank you very much for your work.
The bad thing is that my old Samsung N120 does not work for its resolution of 1024x600.
Can I modify something so I can use it on that old computer?

414
Themes / Re: HyperPie Cinematix
« on: September 05, 2017, 02:35:49 PM »
I use the Hyperpie Cinematix on my PC, to launch my emulators, but there is something I do not know how to do.
Would it be possible to launch directly from this topic in Attract Mode an application like DBGL.exe (Dos Box Game Launcher)?
What code should I use?
Thank you.

Pages: 1 ... 26 27 [28]