I have a website where I have a bunch of Flash games. The problem I have is that game preloaders do not work is you link directly to them (gamename.swf). I am wondering if I can make one page and have the location of the game, its length width and height all passed through the URL and the page changes accordingly.
Example
http://yoursite.com/game.php?loc=htt...wf&h=400&w=200
This is the code I use in a normal HTML page for Flash movies:
<object classid="clsid

27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="400" height="200"><param name=movie value="http://jhdf.com/pong.swf">
<param name=quality value=high>
<embed src="http://jhdf.com/pong.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="200" height="400">
</embed>
</object>
I would really appreciate some help with this. Thanks!