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

Your preferred username that is used when logging in.

Fullscreen with javascript controlbar Created Nov 6, 2009

This thread is solved

Views: 2470     Replies: 4     Last reply Nov 19, 2009  
You must login first before you can use this feature

andrea

Posts: 8

Registered:
Sep 28, 2009

Fullscreen with javascript controlbar

Posted: Nov 6, 2009

Hi,
there's a way to activate the fullscreen mode from the javascript controlbar?

andrea

Posts: 8

Registered:
Sep 28, 2009

» Fullscreen with javascript controlbar

Posted: Nov 6, 2009

Reply to: Fullscreen with javascript controlbar, from andrea
ok, I found the answer herehttp://flowplayer.org/demos/events/toggle-fullscreen.html and, sadly, is no :-(

DeanB

Posts: 8

Registered:
Nov 16, 2009

» » Fullscreen with javascript controlbar

Posted: Nov 18, 2009

Reply to: » Fullscreen with javascript controlbar, from andrea
I did it with the content plugin and the onClick event.


    	myContent: { 
 
        	// location of the plugin 
        	url: 'flowplayer.content-3.1.0.swf', 
 
        	// display properties 
        	top:1,
			right:1,
        	width: 29,
			height:29,
 
        	// styling properties 
        	borderRadius: 10,
 
        /* 
            initial HTML content. content can also be fetched from the HTML document 
            like we did in the example above. see the source code for that. 
        */ 
        	html: '<p>My title</p>', 
 
        	onClick: function() {
				$f().toggleFullscreen();
        	}

andrea

Posts: 8

Registered:
Sep 28, 2009

» » » Fullscreen with javascript controlbar

Posted: Nov 18, 2009

Reply to: » » Fullscreen with javascript controlbar, from DeanB
Thank you DeanB, I'll try!

andrea

Posts: 8

Registered:
Sep 28, 2009

» » » » Fullscreen with javascript controlbar

Posted: Nov 19, 2009

Reply to: » » » Fullscreen with javascript controlbar, from andrea
It works perfectly! thanks Dean