About HTML publishing templates
A Flash Professional HTML template is a file that contains static HTML code and flexible template code consisting of a special type of variables (which differ from ActionScript variables). When you publish a SWF file, Flash Professional replaces these variables with the values you select in the HTML tab of the Publish Settings dialog box and produces an HTML page with your SWF file embedded.
Flash Professional includes templates, suitable for most users’ needs, that eliminate the need to manually create an HTML page that displays the SWF file. For example, the Flash Only template is useful for testing your files in a browser. It places the SWF file on the HTML page so that you can view it through a web browser with the Flash Player installed.
To publish a new HTML page, use the same template and change the settings. You can create custom templates using any HTML editor. Creating a template is the same as creating a standard HTML page, except that you replace specific values pertaining to a SWF file with variables that begin with a dollar sign ($).
Flash Professional HTML templates have the following special characteristics:
A one-line title that appears on the Template pop‑up menu on the HTML tab of the Publish Settings dialog box.
A longer description that appears when you click Info on the HTML tab of the Publish Settings dialog box.
Template variables beginning with a dollar sign ($) that specify where parameter values should be substituted when Flash Professional generates the output file.
Note: Use a backslash and dollar sign (\$) combination to use a dollar sign for another purpose in the document.HTML object and embed tags that follow the tag requirements of Microsoft Internet Explorer and Netscape® Communicator® or Navigator®, respectively. To display a SWF file properly on an HTML page, follow these tag requirements. Internet Explorer uses the object HTML tag to open a SWF file; Netscape uses the embed tag.
Customize HTML publishing templates
Modify HTML template variables to create an image map, a text report, or a URL report, or to insert custom values for some of the most common Flash Professional HTML object and embed tag parameters (for browsers that use ActiveX controls and plug-ins, respectively).
Flash Professional templates can include any HTML content for your application or even code for interpreters such as ColdFusion and ASP.
- Using an HTML editor, open the Flash
Professional HTML template to change. These
templates are in the following locations:
Windows XP or Vista: boot drive:\Documents and Settings\user\Local Settings\Application Data\Adobe\Flash CS5\language\Configuration\HTML\. The Application Data folder is usually a hidden folder; you might need to change your Windows Explorer settings to see this folder.
Mac OS X 10.3 and later: Macintosh HD/Applications/Adobe Flash CS5/language/First Run/HTML.
The boot drive is the drive from which the Windows operating system boots (usually C:). The user is the name of the person logged in to the Windows operating system. The language is set to an abbreviated language name. For example, in the US, language is set to “en” for English.
- Edit the template.
- Save the template in the same folder that you retrieved it from.
- To apply the template settings to your SWF file, select File > Publish Settings, click HTML, and select the template you modified. Flash Professional changes only the template variables in the template selected.
- Select your remaining publish settings, and click OK.
HTML template variables
The following table lists the template variables that Flash Professional recognizes:
Attribute/parameter |
Template variable |
|---|---|
Template title |
$TT |
Template description start |
$DS |
Template description finish |
$DF |
Flash Professional (SWF file) title |
$T1 |
Flash Professional (SWF file) title for search engine metadata |
$TL |
Description for search engine metadata |
$DC |
Metadata XML string for use with search engines |
$MD |
Width |
$WI |
Height |
$HE |
Movie |
$MO |
HTML alignment |
$HA |
Looping |
$LO |
Parameters for object |
$PO |
Parameters for embed |
$PE |
Play |
$PL |
Quality |
$QU |
Scale |
$SC |
Salign |
$SA |
Wmode |
$WM |
Devicefont |
$DE |
Bgcolor |
$BG |
Movie text (area to write movie text) |
$MT |
Movie URL (location of SWF file URL) |
$MU |
Image width (unspecified image type) |
$IW |
Image height (unspecified image type) |
$IH |
Image filename (unspecified image type) |
$IS |
Image map name |
$IU |
Image map tag location |
$IM |
QuickTime width |
$QW |
QuickTime height |
$QH |
QuickTime filename |
$QN |
GIF width |
$GW |
GIF height |
$GH |
GIF filename |
$GN |
JPEG width |
$JW |
JPEG height |
$JH |
JPEG filename |
$JN |
PNG width |
$PW |
PNG height |
$PH |
PNG filename |
$PN |
Using shorthand template variables
The $PO (for object tags) and $PE (for embed tags) template variables are useful shorthand elements. Each variable causes Flash Professional to insert into a template any nondefault values for some of the most common object and embed parameters, including PLAY ($PL), QUALITY ($QU), SCALE ($SC), SALIGN ($SA), WMODE ($WM), DEVICEFONT ($DE), and BGCOLOR ($BG).
Sample HTML template
The following Default.HTML template file in Flash Professional includes many of the commonly used template variables:
$TTFlash Only $DS Display Adobe SWF file in HTML. $DF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> $CS <title>$TI</title> </head> <body bgcolor="$BG"> <!--url's used in the movie--> $MU <!--text used in the movie--> $MT <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="$WI" height="$HE" id="$TI" align="$HA"> <param name="allowScriptAccess" value="sameDomain" /> $PO <embed $PEwidth="$WI" height="$HE" name="$TI" align="$HA" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" /> </object> </body> </html>
Create an image map to substitute for a SWF file
Flash Professional can generate an image map to show any image and maintain the function of buttons that link to URLs. When an HTML template includes the $IM template variable, Flash Professional inserts the image map code. The $IU variable identifies the name of the GIF, JPEG, or PNG file.
Creating text and URL reports
The $MT template variable causes Flash Professional to insert all the text from the current SWF file as a comment in the HTML code. This is useful for indexing the content of a SWF file and making it visible to search engines.
The $MU template variable makes Flash Professional generate a list of the URLs that actions in the current SWF file refer to and insert the list at the current location as a comment. This action lets link verification tools detect and verify the links in the SWF file.
Embedding search metadata
The $TL (SWF file title) and $DC (description metadata) template variables let you include search metadata in the HTML. This ability can make the SWF file more visible to search engines, and provide meaningful search results. Use the $MD template variable to include the search metadata as an XML string.
