Hi its me again

lol, anyway to get a full screen flash webpage is fairly easy. But for future reference if you have found a website which has created the same sort of effect as you want then first look at the html source for that page and that should help. When you embed a flash movie into a webpage you enter variables that tell it how big it should be, you usualy enter these as the number of pixels. But you can also enter them as a percentage. To get a full screen movie you would enter the width and height as 100%. There is one problem with this is that there will be a border around the edge of your movie (i'm not to sure why) so you need to enter some code into the head of the file to cancel this. The full html for example, would be like this:
- Code: Select all
<html>
<head>
<style type="text/css">
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #d6d6d6;
overflow:hidden;
}
</style>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%">
//Location of flash file
<param name="movie" value="FLASHFILE.SWF">
<param name="quality" value="high">
//Location of flash file
<embed src="FLASHFILE.SWF" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="100%"></embed></object>
</body>
</html>
You could probably get it even shorter than this, but that is the embeding code i always use.
On to your second point, for the panning idea would you want a looped pan or a user controled one? The first idea would be alot easier and could be made by creating a movieclip with a tweened picture so it scrolls across the screen. Do you know anything about tweening and masking in flash? If not i will right you a tutorial if you would like. I will explain further how to create the pan when you've answered this post.
Hope this all helps, and you can follow it,
Flabby Rabbit