That map thing
In case you still care, I found a solution to mrfun’s problem with requiring a wordpress template (http://www.ludumdare.com/compo/2008/09/07/where-is-the-world-are-you/). You need to insert Javascript that adds an event listener to the document’s onLoad and onUnload events. I’ll explain in more detail and in a cross-browser way in just a moment…
– EDIT –
Ok, first get core.js out of this archive: core.zip
Use a <script> tag to load it into the page (this can be anywhere on the page)
After the load/unload functions have been defined, add this code:
<script>
Core.addEventListener(window, “load”, load);
Core.addEventListener(window, “unload”, GUnload);
</script>
And you’re set.
Sounds good Space, I’ll give that a shot next time I play with it!