Link to home
Start Free TrialLog in
Avatar of Melody Scott
Melody ScottFlag for United States of America

asked on

Remove controls from FLV (Flowplayer)

Hi, I've been looking at this:  http://flowplayer.org/plugins/flash/controlbar.html

and can't figure out how to remove the controls here:
http   secure.funeralhomewebhosting.com/DMO/index.php

I know I need to use this: plugins {
    controls: null
}

I tried adding a style to the page, and tried adding it to the flowplayer code, but I must be tired because I can't make it work. Help?
Avatar of CyanBlue
CyanBlue
Flag of United States of America image

Their documentation says use 'all: false'. Did you try it?
   http://flowplayer.org/plugins/flash/controlbar.html#visibilityAndButtons

CyanBlue
Avatar of Melody Scott

ASKER

No, I didn't try that. Where do I put the styling? I'll upload the code snippet.


Sorry, didn't get the code snippet quite right, here it is again:

<script type="text/javascript" src="/tools/flowplayer/flowplayer-3.1.2.min.js"></script>

<script type="text/javascript">

document.writeln('<p><a style="display:block;width:960px;height:300px;" id="player" href="/siteimages/dmo/ocean.flv"></a></p>');
<script type="text/javascript"> 

document.writeln('<p><a style="display:block;width:960px;height:300px;" id="player" href="/siteimages/dmo/ocean.flv"></a></p>'); 

flowplayer("player", "/tools/flowplayer/flowplayer-3.1.2.swf"); 
</script>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of CyanBlue
CyanBlue
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
That's it, thanks!!