I have a flash website. Since I have had this website I can't use google analytics. So to get around this I would to make a html page and insert my flash site into it. Problem solved.
emample:
<html>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/ cabs/flash/swflash.cab#version=6,0,40,0"
width="800" height="700"
id="mymoviename">
<param name="movie"
value="example.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="example.swf" quality="high" bgcolor="#ffffff"
width="800" height="700"
name="mymoviename" align="" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
</body>
</html>
This does work but it only shows 1 frame of the flash site. I think I'm missing something. I think it is because i'm trying to do it as a movie but a can't think what else to do it as.
Thank you