About Problems with Project64 and My Emulators (1 Viewer)

Raffelrocker

New Member
February 26, 2007
2
1
39
Home Country
Germany 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 :eek:)

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

revs

MP Donator
  • Premium Supporter
  • February 1, 2007
    1,274
    72
    The Sauce of Worcester
    Home Country
    Wales Wales
    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 :eek:)

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


    Heres the english version!

    Code:
    $x = $CmdLine[1]
    Run("C:\Program Files\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("Open","")
    If Not WinActive("Open","") Then WinActivate("Open","")
    WinWaitActive("Open","")
    ClipPut($x)
    Send("{CTRLDOWN}v{CTRLUP}")
    Send("{ENTER}")
     

    Users who are viewing this thread

    Top Bottom