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 - hermine.potter

Pages: 1 ... 22 23 [24] 25 26 ... 52
346
Emulators / Re: Argument for games Radio Shack TRS-80 ?
« on: September 28, 2019, 02:41:34 AM »
Hi! Try starting a romfile from commandline with parameters.
After then, you have to split it to attractmode arguments (executable, arguments, rompath, romextension, and so on)

347
General / Re: Am / windows 10
« on: September 23, 2019, 09:35:32 PM »
instant sheller
please backup data before using

348
Emulators / Re: Launch Ranma ½
« on: September 23, 2019, 07:06:51 AM »
@ qqplayer
Don't have PCEngine to test. So tested on zsnes again:
Code: [Select]
Ranma ½ - Datou, Ganso Musabetsu Kakutou-Ryuu! (Japan).smcTested on Windows 10, AM Version 2.3.0, zsnes : works

Generate your romlist again, maybe it appears again.

349
Emulators / Re: Launch Ranma ½
« on: September 19, 2019, 05:15:00 AM »
Tested on Windows 10, AM Version 2.3.0, zsnes + romfilename Ranma ½.smc : works

350
Emulators / Re: Various emulator settings
« on: September 18, 2019, 09:21:42 AM »
@yiri
depends on your emulator. desmume needs to press ALT+Enter

351
General / Re: Help creating filters, specifically catver.ini help
« on: July 26, 2019, 11:16:10 AM »
Here


I'm not working with catver.ini, because catver.ini is not necessary for filters.

Just use and edit your romlist manually.

As an example to my OpenBOR display (in my case : C:\attract\romlists\OpenBOR.txt ), i want to filter games by category 'test'.
Code: [Select]
#Name;Title;Emulator;CloneOf;Year;Manufacturer;Category;Players;Rotation;Control;Status;DisplayCount;DisplayType;AltRomname;AltTitle;Extra;Buttons
GoldenAxeLegends;GoldenAxeLegends;OpenBOR;;;;test;;;;;;;;;;
GoldenAxeMyth;GoldenAxeMyth;OpenBOR;;;;;;;;;;;;;;
HE-MAN;HE-MAN;OpenBOR;;;;test;;;;;;;;;;
Night Slashers X;Night Slashers X;OpenBOR;;;;;;;;;;;;;;

Start AM > press TAB key > Controls > Set a button for 'Next Filter'

Start AM > press TAB key > Displays > choose your emulator display (in my case : OpenBOR ) > Add Filter >
name your filter (in my case : display_all_test_games ) > Target : Category > Comparison : eqals > Filter Value : test

Goto romlist (where you can starts the games) > press your definied 'Next Filter' button. AM shows the 'Favourite Games'-standard filter. If you don't have set a game as a favourite, you will see an empty romlist. If you have chosen/set a game as favorite, you will see your favorites.

If you press 'Next Filter' again, you get to next filter.
In my case : display_all_test_games (GoldenAxeLegends and HE-MAN)

352
General / Re: Attract mode background/wallpaper?
« on: July 19, 2019, 04:52:39 AM »
@Mantar

see documentation / how to (section Image)

-close AM
-navigate to orbit layout folder. in my case : C:\attract\layouts\Orbit
-create a picture (or take the enclosed background.png)
-edit layout.nut
-change :
Code: [Select]
fe.layout.width = 800
fe.layout.height = 600

const MWIDTH = 280;
const MHEIGHT = 170;

to
Code: [Select]
fe.layout.width = 800
fe.layout.height = 600

local bg = fe.add_image( "background.png", 0, 0, fe.layout.width, fe.layout.height )

const MWIDTH = 280;
const MHEIGHT = 170;
-start AM

353
Emulators / Re: Trouble addingSega CD and Sega 32x emulators
« on: July 07, 2019, 09:37:10 PM »
@ gema
What has been tried?
I think, that attract mode frontend won't work on android system.

354
General / Re: Res enlarged when exiting games from Teknoparrot.
« on: July 05, 2019, 04:11:48 AM »
@ Robert360
short info/hint/for completeness : you can add more than one display.
simply seperate displays by semicolon:
your_display1;your_emulator_display2;emulatordisplay3

355
General / Re: Res enlarged when exiting games from Teknoparrot.
« on: July 04, 2019, 08:26:39 AM »
try ResFix-Plugin:
start AM > press TAB button > Plug-Ins > ResFix > Enable : Yes > Specific Emulators : Name_of_your_Teknoparrot_display

356
Emulators / Re: Various emulator settings
« on: May 12, 2019, 10:08:50 PM »
@jadramza
See post #21
solution of xbs : mame

357
@ vdfritz
>general:
AM & .lnk and .bat files here (see section windows_games)

>retroarch:
I'm not working with retroarch. google said that retroarch starts config-files this way (but as I understood the documentation of retroarch, it loads retroarch.cfg automatically?!):
Path_to_Retroarch\retroarch.exe --config "Path_to_your_config_files\your_config_file.cfg

So create each game a .bat-file with your correct config and settings, to launch a game via batch-file.

Create in AM an emulator with this settings (depending on your paths):
executable           C:\attract\EMU\RESO\reso.exe
args                 "[romfilename]" 640 480 8 40
rompath              C:\attract\EMU\RESO\Roms
romext               .bat

reso.exe supports .exe, .bat, .com

Tested something like this (with zsnes):
"C:\attract\EMU\RESO\reso.exe" "C:\attract\EMU\zsnes\zsnesw.exe -m "C:\attract\EMU\zsnes\ROMS\1.smc"" 640 480 8 40
=> windows crash. So I do not know how to use rese.exe directly.
Maybe you can contact the developer of this software, how to use an application with parameters.

358
General / Re: A few questions by a new member.
« on: April 30, 2019, 06:52:35 AM »
@linglang
RocketLauncher is not necessary to use AM.
See here starting windows_games via links-files and batch-files.

359
General / Re: Nestopia error
« on: April 30, 2019, 06:42:43 AM »
same problem with zsnes and AM version 2.4 to 2.5.1
I'm back to version 2.3 and it works again.

360
General / Re: Add Delay to exit button, help
« on: April 30, 2019, 06:39:40 AM »
@gleegum
this is an external script for autoit. maybe it's helpful if you are using windows (thanks to Yashied):

Code: [Select]
#Include <Misc.au3>

Global $Pressed = False

While 1
    Sleep(1)
;44 = d on keyboard
;Button Overview : https://www.autoitscript.com/autoit3/docs/libfunctions/_IsPressed.htm
    If _IsPressed('44') Then
        If $Pressed Then
            If TimerDiff($Timer) > 3000 Then
                ;msgbox(0, "", "D three seconds pressed")
;Send Keylist : https://www.autoitscript.com/autoit3/docs/functions/Send.htm
send("{ESC}")
;Exit
            EndIf
        Else
            $Timer = TimerInit()
            $Pressed = 1
        EndIf
    Else
        If $Pressed Then
            ConsoleWrite(Round(TimerDiff($Timer) / 1000, 2) & ' seconds' & @CR)
            $Pressed = 0
        EndIf
    EndIf
WEnd

compile it > start it with windows (autostart and so on) > if you press and hold d on keyboard for 3 seconds, it sends ESC. Script loops.

If you want running script only once/don't loop script, then change ;Exit to Exit (remove semicolon).

Pages: 1 ... 22 23 [24] 25 26 ... 52