You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

"null" is not null & Object required errors Created Nov 3, 2009

This thread is solved

Views: 3370     Replies: 2     Last reply Nov 3, 2009  
You must login first before you can use this feature

zenvdn

Posts: 9

Registered:
Nov 3, 2009

"null" is not null & Object required errors

Posted: Nov 3, 2009

I have tried Flowplayer 3.1.2, 3.1.4, and 3.1.5 and experienced these errors on all of them. I've tried removing all javascript files from my page and just dropping the <div> and <object> in, like so:


<div style="width: 640px; height: 384px;">
  <object data="/flash/flowplayer-3.1.5.swf" type="application/x-shockwave-flash" height="384" width="640">
    <param name="allowfullscreen" value="true">
    <param name="allowscriptaccess" value="always">
    <param name="movie" value="/flash/flowplayer-3.1.5.swf">
    <param name="quality" value="high"><param name="bgcolor" value="#000000">
    <param name="flashvars" value='config={"clip":{"autoPlay":false,"autoBuffering":false,"scaling":"fit","url":"http://s3.amazonaws.com/zenvdn/screencast.mov"},"playerId":"player","playlist":[{"autoPlay":false,"autoBuffering":false,"scaling":"fit","url":"http://s3.amazonaws.com/zenvdn/screencast.mov"}]}'>
  </object>
</div>

Firefox, Chrome, Safari all come up fine with this, and while it eventually will play in IE, it's not until dozens of errors have gone by, either "Object required" on line 48 or "'null' is null or not an object" in several places. I've looked through the forums and searched online, and nothing has worked for me so far.

The site is athttp://zenvdn.com, if that is any help in seeing more examples. Thanks in advance.

gmccomb

Posts: 746

Registered:
Apr 9, 2009

» "null" is not null & Object required errors

Posted: Nov 3, 2009

Reply to: "null" is not null & Object required errors , from zenvdn
The code you posted here is not the code your server is delivering. Look at the source; you'll see your quotes are being replaced by HTML entities. I'm not sure, but it's possible IE is not respecting these entities when they are in a script block (the config= is script, even though there's no <JavaScript> tag).

Perhaps your pages are delivered via a CMS of some type. If so, your CMS might be doing some rewriting, and you may need to suppress that. You can test by capturing the source, hand-editing it, and uploading back to your site, outside your CMS.

zenvdn

Posts: 9

Registered:
Nov 3, 2009

» » "null" is not null & Object required errors

Posted: Nov 3, 2009

Reply to: » "null" is not null & Object required errors , from gmccomb
Thanks. I just got everything worked out - turns out one of the other developers had generated the code and copied it in to the page, rather than using the javascript itself, so things weren't working in IE. Once I switched it to follow the JS example everything works fine.