Message
par kitano » 08 juin 2013 - 07:58
salut, j ai changer les 3 lignes mais j ai toujours un messeage "Panasonic 3DO or 4DO.exe is not supporting yet"
une idee ? je ne comprends toujours pas le .ahk et la facon de gerer tout ca
j ai mis un fichier ahk qui s'appel Panasonic 3DO.ahk dans le dossier module
avec ca :
;***********************************Panasonic 3DO*******************************
else if (systemName = "Panasonic 3DO" executable = "4DO.exe")
{
hideDesktop()
Hotkey, %exitEmulatorKey%, CloseProcess
Run, "%EmuPath%%Executable%",,Hide UseErrorLevel
DetectHiddenWindows, on
WinShow, 4DO
WinWait, 4DO
ControlSend, , {F4}, 4DO
WinWaitActive, 4DO
SendInput, {ALTDOWN}f{ALTUP}{ENTER}
IfWinNotActive, Open, Common Places Host W
WinActivate, Open, Common Places Host W
WinWaitActive, Open, Common Places Host W
clipboard=
clipboard=%romPath%%romName%%romExtension%
ClipWait
Sleep,100
Send,^v
Sleep,100
send, {ENTER}
WinWait, 4DO
IfWinNotActive, 4DO, , WinActivate, 4DO,
WinWaitActive, 4DO,
SendInput, {ALTDOWN}c{ALTUP}{ENTER}{ENTER}
Process, WaitClose, 4DO
}
et j ai toujours aussi un fichier hyperlaunch.ahk dans la racine du dossier , avec ca :
;****************************NINTENDO ENTERTAINMENT SYSTEM**********************
else if (systemName = "Nintendo Entertainment System" executable = "Nestopia.exe")
{
Gui, Color, 000000
Gui -Caption +ToolWindow +AlwaysOnTop
Gui, Show, W%A_ScreenWidth% H%A_ScreenHeight%, BlackGui
Hotkey, %exitEmulatorKey%, CloseProcess
Run, %executable% "%romPath%%romName%%romExtension%", %emuPath%, UseErrorLevel
Sleep, 2000
Gui, destroy
Process, waitClose, %executable%
exitapp
}
;***********************************Panasonic 3DO*******************************
else if (systemName = "Panasonic 3DO" executable = "4DO.exe")
{
hideDesktop()
Hotkey, %exitEmulatorKey%, CloseProcess
Run, "%EmuPath%%Executable%",,Hide UseErrorLevel
DetectHiddenWindows, on
WinShow, 4DO
WinWait, 4DO
ControlSend, , {F4}, 4DO
WinWaitActive, 4DO
SendInput, {ALTDOWN}f{ALTUP}{ENTER}
IfWinNotActive, Open, Common Places Host W
WinActivate, Open, Common Places Host W
WinWaitActive, Open, Common Places Host W
clipboard=
clipboard=%romPath%%romName%%romExtension%
ClipWait
Sleep,100
Send,^v
Sleep,100
send, {ENTER}
WinWait, 4DO
IfWinNotActive, 4DO, , WinActivate, 4DO,
WinWaitActive, 4DO,
SendInput, {ALTDOWN}c{ALTUP}{ENTER}{ENTER}
Process, WaitClose, 4DO
}
;***********************************SEGA 32X************************************
else if (systemName = "Sega 32X" executable = "Fusion.exe")
{
hideDesktop()
Hotkey, %exitEmulatorKey%, CloseProcess
Run, %Executable% "%romPath%%romName%%romExtension%" -auto -32X -fullscreen, %EmuPath%, Hide UseErrorLevel
Process, WaitClose, fusion.exe
}