*/
public VimeoFlashPlayer(String videoId, boolean autoplay, String width, String height) throws PluginNotFoundException, PluginVersionException {
this();
_width = width;
_height = height;
swf = new SWFWidget("http://vimeo.com/moogaloop.swf?server=vimeo.com&clip_id=" + videoId, width, height, PluginVersion.get(10, 0, 0));
swf.addProperty("allowScriptAccess", "always");
swf.addProperty("allowFullScreen", "true");
swf.setFlashVar("autoplay", autoplay ? 1 : 0);
swf.setFlashVar("api", 1);
swf.setFlashVar("player_id", swf.getId());