Re: [Flashcoders] ActiveContent is not enforcing minimum Flash version

2007-08-10 Thread Geoff Stearns

It looks like your js code doesn't specifiy a minimum version...

You might try using SWFObject instead, it's a little easier to set up  
sometimes:


http://blog.deconcept.com/swfobject/

On Aug 9, 2007, at 8:49 AM, Marc Hoffman wrote:

I have published html with the active content template, to require  
Player version 8 and above. But users with lower versions are still  
getting into the site, resulting in some critical elements  
(notably, my navigation menu) being broken. The site is:

http://www.newellcoach.com/flash.html

Is there something wrong with the code that is allowing users of  
the wrong version to proceed without an upgrade alert? Anyone else  
encountering this problem? Fixes?


The html script is below. Thanks for any help!

Marc Hoffman

= html script 

http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">



Newell Coach Luxury Motorhomes
AC_FL_RunContent = 0;




height='100%' align='center' valign='middle'>



if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
} else {
AC_FL_RunContent(
'bgcolor', '#0B111F',
'codebase', 'http://download.macromedia.com/ pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'width', '900',
'height', '620',
'src', 'interiorPage',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/ go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'interiorPage',
'name', 'interiorPage',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', 'interiorPage',
'salign', ''
); //end AC code
}



id="interiorPage" align="middle">


name="quality" value="high" />value="#0B111F" />bgcolor="#0B111F" width="900" height="620" name="interiorPage"  
align="middle" allowScriptAccess="sameDomain" type="application/x- 
shockwave-flash" pluginspage="http://www.macromedia.com/go/ 
getflashplayer" />




http://www.google-analytics.com/urchin.js"; type="text/ 
javascript">


_uacct = "UA-992189-1";
urchinTracker();



===  end html script   
___

Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] ActiveContent is not enforcing minimum Flash version

2007-08-09 Thread Marc Hoffman
For some reason, my code was stripped out from the message I just 
posted. Trying once more to include it, but if you cannot see it 
please view it at the URL below.  Thanks --Marc


At 08:49 AM 8/9/2007, Marc Hoffman wrote:
I have published html with the active content template, to require 
Player version 8 and above. But users with lower versions are still 
getting into the site, resulting in some critical elements (notably, 
my navigation menu) being broken. The site is:

http://www.newellcoach.com/flash.html

Is there something wrong with the code that is allowing users of the 
wrong version to proceed without an upgrade alert? Anyone else 
encountering this problem? Fixes?


The html script is below. Thanks for any help!

Marc Hoffman

= html script 


html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">


Newell Coach Luxury Motorhomes
AC_FL_RunContent = 0;




height='100%' align='center' valign='middle'>



if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
} else {
AC_FL_RunContent(
'bgcolor', '#0B111F',
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'width', '900',
'height', '620',
'src', 'interiorPage',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'interiorPage',
'name', 'interiorPage',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', 'interiorPage',
'salign', ''
); //end AC code
}



classid="clsid:d27cdb6e-ae6d-11cf-96b8-44455354" 
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"; 
width="900" height="620" id="interiorPage" align="middle">


name="quality" value="high" />value="#0B111F" />bgcolor="#0B111F" width="900" height="620" name="interiorPage" 
align="middle" allowScriptAccess="sameDomain" 
type="application/x-shockwave-flash" 
pluginspage="http://www.macromedia.com/go/getflashplayer"; />




http://www.google-analytics.com/urchin.js"; 
type="text/javascript">


_uacct = "UA-992189-1";
urchinTracker();




===  end html script 
___


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] ActiveContent is not enforcing minimum Flash version

2007-08-09 Thread Marc Hoffman
I have published html with the active content template, to require 
Player version 8 and above. But users with lower versions are still 
getting into the site, resulting in some critical elements (notably, 
my navigation menu) being broken. The site is:

http://www.newellcoach.com/flash.html

Is there something wrong with the code that is allowing users of the 
wrong version to proceed without an upgrade alert? Anyone else 
encountering this problem? Fixes?


The html script is below. Thanks for any help!

Marc Hoffman

= html script 

http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">


Newell Coach Luxury Motorhomes
AC_FL_RunContent = 0;




align='center' valign='middle'>



if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
} else {
AC_FL_RunContent(
'bgcolor', '#0B111F',
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'width', '900',
'height', '620',
'src', 'interiorPage',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'interiorPage',
'name', 'interiorPage',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', 'interiorPage',
'salign', ''
); //end AC code
}



codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"; 
width="900" height="620" id="interiorPage" align="middle">


name="quality" value="high" />/>width="900" height="620" name="interiorPage" align="middle" 
allowScriptAccess="sameDomain" type="application/x-shockwave-flash" 
pluginspage="http://www.macromedia.com/go/getflashplayer"; />




http://www.google-analytics.com/urchin.js"; type="text/javascript">


_uacct = "UA-992189-1";
urchinTracker();



===  end html script  
___

Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com