Hello,
I just wanted to post this little nugget as it took me hours to figure out.
While doing Full page flash templates with the Adobe Flash detection Object Internet exploder and All other browsers recieve different code ... duh. But what does this mean. I hadnt realized that Order Matters! With the Embed Tag, if you Specify "scale" after "salign" the aslign attribute is ignored.
So this would be great in Internet Exploder....But bad in all other browsers
AC_FL_RunContent(
"src", "/Main-full",
"salign","lt",
"scale","noscale",
"width", "100%",
"height", "800",
"align", "middle",
"id", "tes",
"quality", "high",
"bgcolor", "#ffffff",
"name", "test",
"allowScriptAccess","sameDomain",
"type", "application/x-shockwave-flash",
"pluginspage", "http://www.adobe.com/go/getflashplayer"
);
- AC_FL_RunContent(
- "src", "/Main-full",
- "salign","lt",
- "scale","noscale",
- "width", "100%",
- "height", "800",
- "align", "middle",
- "id", "tes",
- "quality", "high",
- "bgcolor", "#ffffff",
- "name", "test",
- "allowScriptAccess","sameDomain",
- "type", "application/x-shockwave-flash",
- "pluginspage", "http://www.adobe.com/go/getflashplayer"
- );
And this would work well
AC_FL_RunContent(
"src", "/Main-full",
"scale","noscale",
"salign","lt",
"width", "100%",
"height", "800",
"align", "middle",
"id", "tes",
"quality", "high",
"bgcolor", "#ffffff",
"name", "test",
"allowScriptAccess","sameDomain",
"type", "application/x-shockwave-flash",
"pluginspage", "http://www.adobe.com/go/getflashplayer"
);
- AC_FL_RunContent(
- "src", "/Main-full",
- "scale","noscale",
- "salign","lt",
- "width", "100%",
- "height", "800",
- "align", "middle",
- "id", "tes",
- "quality", "high",
- "bgcolor", "#ffffff",
- "name", "test",
- "allowScriptAccess","sameDomain",
- "type", "application/x-shockwave-flash",
- "pluginspage", "http://www.adobe.com/go/getflashplayer"
- );
You all probably knew this ... but I am posting this in hopes it saves others grief as well as making this info available to me at a later time after I format my brain.