Page 1 of 1

Multiple plugin in a page

Posted: 14 May 2009 15:54
by gulcin
Hello;
I'm a new user of VLC and also I don't know Javascript and html well.
I am trying to create multiple vlc objects and their controllers in a page.
In fact what exactly I want is similar to: http://www.revolunet.com/static/downloa ... anced.html with multiple screens.

I tried to create by changing init() function:

Code: Select all

function init() { // load plugin0 var myvlc = new VLCObject("mymovie", "600", "350"); myvlc.write("vlccontent0"); // load controls vlc_controls = new VLCcontrols(myvlc); // load plugin1 var myvlc1 = new VLCObject("mymovie", "600", "350"); myvlc1.write("vlccontent1"); // load controls vlc_controls1 = new VLCcontrols(myvlc1); }
But this gave me not I what. I tried same with a for loop, it even not executed.
Could you help me on showing multiple vlc screens and controllers in a page, please?
Thanks.

Re: Multiple plugin in a page

Posted: 14 May 2009 20:06
by revolunet
sorry but actually you cant create to VLCcontrols in the same page, this is a shame i admit and ill correct that asap.

if you want two single plugins, you can, see http://vlc.revolunet.com/double.html and http://vlc.revolunet.com/quad.html

hope this helps