Jump to content

All my products and services are free. All my costs are met by donations I receive from my users. If you enjoy using any of my products, please donate to support me. My bare hosting costs are currently not met so please consider becoming a contibuting member by either clicking this text or the Patreon link on the right.

Patreon

Recommended Posts

Posted
What are the command to launch a cd from ePSXe?

are there any commands or keyboard shortcuts to call the cd?

you can set the keys to use the menu i think it on the file menu on epsx

it was something like send keys

ALT-F down down enter

this opens the menu and moves down to open cd (worth double checking manualy first)

i have this working let me know if that dosnt work baring in mind you have to have commands to load bios etc on loading epsx

Posted
Yeah - this works. It would be great to compile an exe or script to do this automatically!?

have you put the keys on gameex "keys to send" set the delay and put the keys in there then its Automated no need for script or exe

Posted

Ah , alright - it works.

Could I be able - and how - to make a new .exe in that way - so that I don´t have to load Gameex first.

I´m running a PC with iMon Software for my Display and there is a tool called application launcher where I could list several .exe´s.So it will be nice by doing it that way. In the other ways Gameex is working fine.

Posted
Ah , alright - it works.

Could I be able - and how - to make a new .exe in that way - so that I don´t have to load Gameex first.

I´m running a PC with iMon Software for my Display and there is a tool called application launcher where I could list several .exe´s.So it will be nice by doing it that way. In the other ways Gameex is working fine.

i would have thought it will be possible but im not sure how to do it i would guess and autoit script would be best

something along the lines of

open the exe make sure window has focas then send the keys to the relevent menu

Posted
i would have thought it will be possible but im not sure how to do it i would guess and autoit script would be best

something along the lines of

open the exe make sure window has focas then send the keys to the relevent menu

i have made an auto it script that loads epsx and send the keys you will probly have to change the exe locating mine was set to desktop when making it

or if you want tell me the epsx.exe locating and i can edit it for you

hope this is usful to you

epsx.zip

Posted

The code could be simplified a bit I feel.

; Window Matching Option

Opt( "WinTitleMatchMode" , 2 )

; Launch Emu

Run( @ScriptDir & "\ePSXe.exe" )

; Wait for Window to Appear

WinWaitActive( "ePSXe" )

Send( "{ALTDOWN}f{ALTUP}{ENTER}" )

Course for the massively anal-

Opt( "WinTitleMatchMode" , 2 )

Run( "ePSXe.exe" )

WinWaitActive( "ePSXe" )

Send( "!f{ENTER}" )

*runs and hides* :)

Tho ether of the two above versions assume that it will be compiled next to the Emu.

Posted

Doh!

Actually if you want to get hella anal about it...the actual commandline should be "epsxe.exe -nogui"

That should do it if you have a disc in the drive.

Posted
Doh!

Actually if you want to get hella anal about it...the actual commandline should be "epsxe.exe -nogui"

That should do it if you have a disc in the drive.

Yeah - this rocks - many many thanks guys

Guest
This topic is now closed to further replies.
×
×
  • Create New...