-
1. Re: SWF export positioning in web page
rob day Jun 29, 2011 6:03 AM (in response to Macnimation)If I open the generated html file in Dreamweaver the page is basically blank.
Are you looking at the code? Unless something has changed with CS 5.5 you should see the javascript that loads the swf at the top of the page in the DW code view. Look at the bottom for the load parameters:
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,2,0',
'width', '1000',
'height', '700',
'src', 'Untitled-2',
'quality', 'high',
'pluginspage', 'http://www.adobe.com/go/getflashplayer',
'align', 'middle',
'play', 'false',
'loop', 'false',
'scale', 'noscale',
'wmode', 'window',
'devicefont', 'false',
'id', 'Untitled-2',
'bgcolor', '#999999',
'name', 'Untitled-2',
'menu', 'true',
'allowFullScreen', 'true',
'allowScriptAccess','sameDomain',
'movie', 'Untitled-2',
'salign', ''
);The page curl version doesn't really center the swf object, it just makes the width and height parameters larger than the page, which creates a top and left background border. If you want to center the swf inside the browser window you'll need to add a table or divs
This page defines the embed parameters:


