- February 26, 2007
- 2
- 1
- 39
- Home Country
- Germany
First let me say that my english is not very goode, but i find when i talk in english its better, because all peaple can understand me.
Totay I had the self problems how so many other peaple when i try to open a rom in my Emulators Plugin whith Project 64.
Now i've created a little script whith AutoIt (http://www.autoitscript.com/autoit3/downloads.php)
You must install this to run my script.
you cam download it here:
http://go-hack.com/raf/krempel/RomStart.exe
Then you assosiate your n64 rom files whis this RomStart.exe and the rom will correctly open in Project64
But two points:
Your p64 must be installed in C:\Programme\Project 64 1.6\
And Your Version must be 1.6 and your language German )
but i think its easyier when you edit the source and compile this little script again
here is the source:
Have Fun....
Totay I had the self problems how so many other peaple when i try to open a rom in my Emulators Plugin whith Project 64.
Now i've created a little script whith AutoIt (http://www.autoitscript.com/autoit3/downloads.php)
You must install this to run my script.
you cam download it here:
http://go-hack.com/raf/krempel/RomStart.exe
Then you assosiate your n64 rom files whis this RomStart.exe and the rom will correctly open in Project64
But two points:
Your p64 must be installed in C:\Programme\Project 64 1.6\
And Your Version must be 1.6 and your language German )
but i think its easyier when you edit the source and compile this little script again
here is the source:
Code:
$x = $CmdLine[1]
Run("C:\Programme\Project64 1.6\Project64.exe")
WinWait("Project64 Version 1.6","")
If Not WinActive("Project64 Version 1.6","") Then WinActivate("Project64 Version 1.6","")
WinWaitActive("Project64 Version 1.6","")
Send("{CTRLDOWN}o{CTRLUP}")
WinWait("Öffnen","")
If Not WinActive("Öffnen","") Then WinActivate("Öffnen","")
WinWaitActive("Öffnen","")
ClipPut($x)
Send("{CTRLDOWN}v{CTRLUP}")
Send("{ENTER}")
Have Fun....