So do the test suite files work for you in IE6 / 7 ? http://code.google.com/p/swfobject/wiki/test_suite
specifically: Dynamic publishing params test: http://www.bobbyvandersluis.com/swfobject/testsuite_2_2/test_dynamic_params.html Static publishing params test: http://www.bobbyvandersluis.com/swfobject/testsuite_2_2/test_params.html FYI - Before we release anything into the wild, we test builds with a wide range of browsers, and we did not see any errors with Flashvars. You are the first person to report this potential issue (and I would have thought we'd have a lot more people complaining if 2.2 broke something as basic as flashvars :) How are you testing in IE6/7? do you have actual installs or are you using something like Tredosoft multiple IE or browsershots.org etc? Aran On Mon, Jul 6, 2009 at 11:13 AM, k Guleesh <[email protected]>wrote: > > please look at this example I have made. > http://dev.simply.tv/static > > > The example works if I use swfobject 2.1 but breaks with 2.2 in IE7 > and IE6 > > Has anybody else noticed flashvars broken in 2.2 ? > > here is the flex app: > > <?xml version="1.0" encoding="utf-8"?> > <mx:Application > xmlns:mx="http://www.adobe.com/2006/mxml" > layout="absolute" > applicationComplete="onCreation()" > > > <mx:Script> > <![CDATA[ > import mx.controls.Alert; > private function onCreation():void > { > > if(Application.application.parameters.playlist_id != null) > { > var playlist_id = > Application.application.parameters.playlist_id; > Alert.show("PLAYLIST ID = > "+playlist_id); > } > else > { > Alert.show("NO FLASHVARS"); > //var s = > ExternalInterface.call("getFlashvars"); > //trace(s) > } > } > ]]> > </mx:Script> > </mx:Application> > > > > here is the html : > > <html> > > <head> > > <script type="text/javascript" src="swfobject.js"></script> > > <script type="text/javascript" src="swfaddress.js"></script> > > <script type="text/javascript"> > > // <![CDATA[ > > var flashvars = { > > > > playlist_id : "25618049001" > > > > }; > > var params = { > > scale: "noscale", > > AllowScriptAccess: "sameDomain", > > allowFullscreen: "true", > > bgcolor : "#222222" > > }; > > var attributes = { > > id: "swf_div", > > name: "swf_div" > > }; > > > > swfobject.embedSWF('FlashvarsTest.swf', "swf_div", "826", "350", > "9.0.115","expressInstall.swf", flashvars, params, attributes); > > // ]]> > > </script> > > </head> > > <body> > > <div id="swf_div"> > > </div> > > > > </body> > > </html> > > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/swfobject?hl=en -~----------~----~----~----~------~----~------~--~---
