简体   繁体   中英

How to embed jwplayer into google web toolkit application?

glad to ask my first question in Stack Overflow :)
At work I'm developing a google web toolkit application and I need to embed a jwplayer inside it.

Do you have any suggestion about how to achieve this? I found gwt2swf but so far I couldn't make it work.
I have written this:

SWFWidget jwplayer = new SWFWidget("player.swf");
panel.add(jwplayer);

however I don't get the player, rather a message claiming that I don't have a proper flash player installed:

Here should be a swf movieclip. You probably don't have FlashPlayer installed or have a PlayerVersion lower than 7.0.14.

Where should the file player.swf be located?
I tried to place it in the war directory alongside the main html file or on a remote http server but I always get that message...

Any suggestions? Thanks!!

Sorry, I found the reason it was not working, I didn't set the size of the jwplayer. Something like this:

SWFWidget jwplayer = new SWFWidget("player.swf", 100, 100);
panel.add(jwplayer);

will work :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM