Skip to content
Snippets Groups Projects
Select Git revision
  • better-distance-math
  • next default protected
  • movie
  • softcode-info
  • master protected
  • acs
  • spriteinfo-refactor
  • clipmidtex
  • custom-map-names
  • nogravity-trampolines
  • 2214-pre4
  • 2214-pre3
  • just-in-case
  • fix-opengl-parameter-crash
  • 2214-pre2
  • 2214-pre1
  • delfile2
  • cleanupmusic
  • gametype-refactor-1
  • extra-textures
  • SRB2_release_2.2.15
  • SRB2_release_2.2.13
  • SRB2_release_2.2.12
  • SRB2_release_2.2.11
  • SRB2_release_2.2.10
  • SRB2_release_2.2.9
  • SRB2_release_2.2.8
  • SRB2_release_2.2.7
  • SRB2_release_2.2.6
  • SRB2_release_2.2.5
  • SRB2_release_2.2.4
  • SRB2_release_2.2.3
  • SRB2_release_2.2.2
  • SRB2_release_2.2.1
  • SRB2_release_2.2.0
  • SRB2_release_2.1.25
  • SRB2_release_2.1.24
  • SRB2_release_2.1.23
  • SRB2_release_2.1.22
  • SRB2_release_2.1.21
40 results

manual.htm

Blame
  • manual.htm 2.86 KiB
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    	<title>
    		Sonic Robo Blast 2 Manual
    	</title>
    	<link rel="stylesheet" type="text/css" href="srb2manstyle.css">
    	<!-- Borrowed some javascript code so the height of the iframe is equal to the size of the document - Sonict -->
    	<script type="text/javascript">
    	/* free code from dyn-web.com */
    
    	function getDocHeight(doc) {
    		doc = doc || document;
    		// from http://stackoverflow.com/questions/1145850/get-height-of-entire-document-with-javascript
    		var body = doc.body, html = doc.documentElement;
    		var height = Math.max( body.scrollHeight, body.offsetHeight,
    			html.clientHeight, html.scrollHeight, html.offsetHeight );
    		return height;
    }
    
    	function setIframeHeight(id) {
    		var ifrm = document.getElementById(id);
    		var doc = ifrm.contentDocument? ifrm.contentDocument: ifrm.contentWindow.document;
    		ifrm.style.visibility = 'hidden';
    		ifrm.style.height = "10px"; // reset to minimal height in case going from longer to shorter doc
    		ifrm.style.height = getDocHeight( doc ) + "px";
    		ifrm.style.visibility = 'visible';
    	}
    	</script>
    	<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
    </head>
    <body>
    	<p class="c1">
    		<img src="manual_img/sonicname2.png" alt="SONIC" width="136" height="36">
    		<br>
    		<img src="manual_img/srb2banner.png" alt="ROBO BLAST 2" width="224" height="43">
    	</p>
    	<p class="c1">
    		<big><big><strong>Manual</strong></big></big>
    	</p>
    	<table class="cf" align="center">
    		<tr><td class="c">
    		<ul class="hmenu">
    			<li class="hmenu"><a class="hmenu" href="intro.htm" target="ifrm">Main</a></li>
    			<li class="hmenu"><a class="hmenu" href="items.htm" target="ifrm">Items</a></li>
    			<li class="hmenu"><a class="hmenu" href="playerabilities.htm" target="ifrm">Player Abilities</a></li>
    			<li class="hmenu"><a class="hmenu" href="basicplay.htm" target="ifrm">Gameplay</a></li>
    			<li class="hmenu"><a class="hmenu" href="surroundings.htm" target="ifrm">Surroundings</a></li>
    		</ul>
    		</td></tr>
    		<tr><td class="c">
    		<ul class="hmenu">
    			<li class="hmenu"><a class="hmenu" href="multiplayer.htm" target="ifrm">Multiplayer</a></li>
    			<li class="hmenu"><a class="hmenu" href="zones.htm" target="ifrm">Zones</a></li>
    			<li class="hmenu"><a class="hmenu" href="controls.htm" target="ifrm">Controls</a></li>
    			<li class="hmenu"><a class="hmenu" href="consolecommands.htm" target="ifrm">Console Commands</a></li>
    			<li class="hmenu"><a class="hmenu" href="misc.htm" target="ifrm">Misc</a></li>
    		</ul>
    		</td></tr>
    	</table>
    	<hr>
    	<p class="c1">
    		<!-- The "onload" property of the iframe makes an error when validated through the W3C validation checker. -->
    		<!-- This will not be fixed as it isn't worth the time to fix it up properly. - Sonict -->
    		<iframe id="ifrm" name="ifrm" src="intro.htm" onload="setIframeHeight(this.id)"> </iframe>
    	</p>
    </body>
    </html>