How can I set the control bar to null? I've tried adding plugins => array( controls => NULL ) to the configuration, but it still passes in all the parameters from the GUI.

Likewise, how can I make the background transparent? I'd like to have alpha-channeled video displayed without controls or anything -- just floating.

Thanks!

Comments

robloach’s picture

Hmmm......
http://flowplayer.org/plugins/flash/controlbar.html

theme('flowplayer', array(
  'plugins' => array(
    'controls' => NULL
  ),
));

Will that owrk?]

iNik’s picture

Nope. Doing that has no effect at all. The null value just gets overwritten by the admin or default configuration settings. I think there needs to be a checkbox or some validation as to whether there was a parameter passed that should take precedence.

Anonymous’s picture

You can hide the control-bar like that:

'plugins' => array(
      'controls' => array('display' => 'none'),
),