vote up 1 vote down star

I am trying to read the value of the FlashVars parameter off of a Flash .swf file that's being embedded onto a page using swfobject. I can't change anything about how the Flash is being put on the page so I'm trying to manipulate it with JQuery. In Firefox the following selector works:

$flashvars1 = $(".homepagecolumn1 embed").attr("flashvars");

In IE6 & IE7 this works:

var flashvars1 = $(".homepagecolumn1 object param [name=FlashVars]").attr("value");

Neither one of the above code snippets works in IE8 though. Instead I get a "variable is undefined" error. Any tips?

Thanks!

flag
Add Flash to the tags. – Martin Aug 5 at 13:54
What do you mean? – DMi Partners Aug 5 at 20:19
He meant your question is also about flash, so flash should be in the tags. – Gabriel Hurley Sep 10 at 1:03

1 Answer

vote up 0 vote down

I wonder if IE8 has "fixed" this bug John Resig's Blog post about Object.getElementsByTagName('param') but jQuery might not be ready to handle the "new IE8"?

More thoughts:

If you are using jQuery 1.3, will this work in IE8?

var flashvars1 = $(".homepagecolumn1 param[name='FlashVars']").attr("value");
link|flag
Thanks for the helpful link. My code works in IE7 though. Why would it not work in IE8? – DMi Partners Aug 5 at 16:27
do you have a URL we can tinker with? we might be able to catch what is happening on a live site. – scunliffe Aug 5 at 16:47
mitchellandness.com/default.aspx I'm trying to rewrite the three Flash image rotators underneath New Releases, Featured Items, and On Sale Now. They're an admin driven Flash file that I'm trying to convert to the JQuery Cycle plug-in onload. I know this may be a bit ambitious but when you first load the page those Flash files take forever to load so I'd rather replace them with JQuery. – DMi Partners Aug 5 at 19:44
1  
Thanks for the URL... ok so looking at the site... you aren't using jQuery?!?! you are using Mootools! are you aware of this?... e.g. the selector syntax and the way the libraries work is different. – scunliffe Aug 5 at 21:10
Yeah, I'm not using JQuery yet - I was just showing you the site as it is now. My objective is to convert those three Flash slideshows to the JQuery Cycle plugin. Basically I read the Param with the FlashVars in it and then modify that string to convert it into a div that Cycle can work with. – DMi Partners Aug 6 at 12:07
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.