Skip to content

Instantly share code, notes, and snippets.

@hedgehog
Forked from tjsingleton/deskshare_standalone.js
Created February 23, 2011 19:21
Show Gist options
  • Save hedgehog/840978 to your computer and use it in GitHub Desktop.
Save hedgehog/840978 to your computer and use it in GitHub Desktop.
var HOSTNAME: 'localhost'
, SHARE_SWF: '/client/DeskshareStandalone.swf'
, INSTALL_SWF: '/expressInstall.swf'
, ARCHIVE: "/client/bbb-deskshare-applet-0.71.jar"
, CODE: "org.bigbluebutton.deskshare.client.DeskShareApplet.class"
, SWF_ID: "screen_viewer"
, VIEWER_WIDTH: 800
, VIEWER_HEIGHT: 600
, ROOM_NUMBER: 1;
swfobject.embedSWF("http://" + HOSTNAME + SHARE_SWF,
SWF_ID,
VIEWER_WIDTH,
VIEWER_HEIGHT,
"9.0.0",
INSTALL_SWF, {
ROOM: ROOM_NUMBER
, HOST: 'rtmp://' + HOSTNAME + '/deskShare'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment