javascript - Post to ActiveX - differing results between browsers -


i'm controlling activex control via javascript/jquery. control video player plays type of format require, standard players don't support.

anyhow, 1 of api commands of player seek point in video, command goes along lines of...

o = new playerobject("player"); o.createplayer(width, height); o.usemediaserver(ipaddress); o.usefile(file); o.play(); o.seek(30); //this doesn't work in chrome 

this works same across browsers, in terms of loading, playing, etc, difference in chrome, seek(secs) command doesn't seen send data correctly activex control, , result activex control cues to start of clip, it's interpreting data zero(0) instead of actual value. think boils down types, activex control expecting long. mozilla , ie seem send correctly, not chrome.

i'm unsure go here, ideas?

edit: it's plugin wraps activex link-to-plugin


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -