If your keyboard is like mine, and it doesn't like pressing Enter + Shift + Z + X (which is how you go to the save screen here), you can simulate the key combination with this quick hack:<p><pre><code> function simuSave() {
gameboy.JoyPadEvent(4, true);gameboy.JoyPadEvent(5, true);gameboy.JoyPadEvent(6, true);gameboy.JoyPadEvent(7, true);
setTimeout(function() {
gameboy.JoyPadEvent(4, false);gameboy.JoyPadEvent(5, false);gameboy.JoyPadEvent(6, false);gameboy.JoyPadEvent(7, false);
}, 20);
}
</code></pre>
Put that in Chrome's devtools or Firebug's console and call it with simuSave(). YMMV.
Strange thing just happened when I fired this up. I was playing some other music, and it suddenly sounded like I was blowing out my speakers. I wasn't playing the music very loud, but the bass became extremely scratchy. As soon as I closed the tab, it cleared up. (Win 7 Chrome 12.0.742.100)
Unfortunately can't get this old chestnut to work with it.. otherwise great!! <a href="http://www.youtube.com/watch?v=cWdxSz65iXc" rel="nofollow">http://www.youtube.com/watch?v=cWdxSz65iXc</a>
Very cool. It works for me in chrome, but its shows this message four times before working
In windowStack::windowStack() : The DOM element passed was invalid.<p>It doesn't work for me in Firefox 5, but I don't have flash on my ff. Do I need that?<p>edit: more detail: On firefox, its sometimes a black screen, and sometimes a blue/green wavy screen.
WoW. Cant believe you can play emu games in browser...
So in html6 i will be able to play World of Warcraft 2 or Crysis 3 with DX13 support. I love this world.
Isn't this just the javascript gameboy emulator that has been posted here before?<p>Or maybe it's a different one: <a href="https://github.com/grantgalitz/GameBoy-Online" rel="nofollow">https://github.com/grantgalitz/GameBoy-Online</a><p>Gr, this link was hard to find, my Google-fu was weak. Previous discussion: <a href="http://news.ycombinator.com/item?id=2266701" rel="nofollow">http://news.ycombinator.com/item?id=2266701</a>