Well technically speaking there is no such thing as a Flash Web site, only Web sites that include Flash. The actual pages will be HTML, XHTML, PHP, etc with your flash placed on the page.
Looks like you want the lower part, with the sunglass thumbs to scroll. But I’d recommend not scrolling the top or the viewer will lose the close-up as the thumbs scroll. So in Flash, under Windows menu, open the components window and look for UIScrollBar. You may need to review how to attach that component and get just the bottom thumbs to scroll correctly. Are you masking off at 600 height now and that’s why the lower thumbs don’t show?
Check out www.gotoandlearn.com
and www.flashkit.com
Now for the part about placing your flash on the Web page. Currently your swf dimensions are set at
width="1024" height="768"
1024 X 768 monitors never display at that full resolution anyway and any overflow but hidden will put in scroll bars to move that 10 or 15 pixels sideways.
Yet the real sunglass display is much smaller, 800 X 600 or so. Why not downsize the dimensions in the fla to only include the display area? You also have in your CSS (a non Flash part of your Web page)
#body {
height:600;
}
#html {
overflow:hidden;
}
So with that combination, you’ll have to get the scrolling done in Flash with the UIScrollBar. But don’t scroll the entire thing or the top will disappear when viewing the lower thumbs, just scroll the thumbs. Then depending on the content of your other pages you may want to use your Web browser scroll bars rather than the Flash ones and change your overflow.
Good luck,
EfV
Bookmarks