How To Wiki
(Updated via Administrative Bot.)
Stoltzld (talk | contribs)
(Noted a broken site)
Tag: Source edit
 
(One intermediate revision by one other user not shown)
Line 29: Line 29:
 
==External Links==
 
==External Links==
 
* [http://livedocs.macromedia.com/director/mx2004/release_update_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Director_MX_2004_Documentation&file=09_pr315.htm livedocs.macromedia.com]
 
* [http://livedocs.macromedia.com/director/mx2004/release_update_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Director_MX_2004_Documentation&file=09_pr315.htm livedocs.macromedia.com]
*[http://www.openajax.net/wordpress/code/sample3/client.html# a simple exaple of a page using this]<div id="wikia-credits"><br /><br /><small>From [http://howto.wikia.com HowTo Wiki], a [http://www.wikia.com Wikia] wiki.</small></div>
+
*[http://www.openajax.net/wordpress/code/sample3/client.html# <s>a simple exaple of a page using this</s>] (website has been disabled due to account issues)<div id="wikia-credits"><br /><br /><small>From [http://howto.wikia.com HowTo Wiki], a [http://www.wikia.com Wikia] wiki.</small></div>
   
   

Latest revision as of 23:58, 23 January 2022

You can use the following script:

<SCRIPT language=JavaScript> 
document.onkeypress=j;
function j(){
{if(event.keyCode==13)document.onkeypress=40}
{if(event.keyCode==97)window.location="URL"}
.
.
.
}
</SCRIPT>

How to use it...

keyCode defines the key that you press.

1
2
3
4
27 
38 arrow up
40 arrow down
37 arrow left
39 arrow right
97
98 : b

External Links