bigbluebutton-Github/bigbluebutton-client
2013-04-25 08:43:50 -07:00
..
.settings mic disable state is implemented, but can't filter by role yet 2013-03-28 14:38:37 -07:00
bin removing an unneeded file 2013-02-12 12:27:12 -05:00
branding increased the size of the left and right presentation buttons 2013-04-25 08:43:50 -07:00
build/lib - modify build.xml to use an external locale.xml for supported locales 2010-06-09 17:41:30 -04:00
config - forgot to add /fcs/ handler 2012-09-14 19:32:50 +00:00
html-templateBackup Backup before opening red5 up to dev. Still has Line tool. 2012-06-21 23:06:24 -04:00
libs hiding window contents on minimize 2013-01-03 17:50:40 -05:00
locale Updated wording for Test Microphone to Test/Change Microphone 2013-04-20 18:21:53 -07:00
resources - try checking for desktop sharing port 2013-04-19 21:30:54 +00:00
src increased the size of the left and right presentation buttons 2013-04-25 08:43:50 -07:00
.actionScriptProperties mic disable state is implemented, but can't filter by role yet 2013-03-28 14:38:37 -07:00
.actionScriptProperties.orig merged some files 2010-07-16 17:16:42 +00:00
.flexProperties mic disable state is implemented, but can't filter by role yet 2013-03-28 14:38:37 -07:00
.flexProperties.orig merged some files 2010-07-16 17:16:42 +00:00
.gitignore Merge remote branch 'upstream/master' 2012-08-07 19:56:23 +00:00
.project mic disable state is implemented, but can't filter by role yet 2013-03-28 14:38:37 -07:00
build.xml - check if user can connect using RTMP or RTMPT 2013-04-17 21:47:12 +00:00
LICENSE.txt
README Deskshare and webcam publishing included in tab order. Some tweaking required. 2012-11-22 21:43:31 +00:00
vm-build.sh add a script to each module that allows me to build / run in dev mode on my vm without having to remember which method I have to build this module in 2010-05-07 21:53:52 +00:00

see http://code.google.com/p/bigbluebutton

Developing the client
1. Copy src/conf/config.xml.dev to src/cong/config.xml

Implementing Tab Order:
The default tab order (necessary for accessibility) is hard-coded into these modules and the main toolbars, and is as follows:
	Main Toolbar
	Desktop sharing (if open)
	Webcam publishing (if open)
	Viewers list window
	Listeners list window
	Webcam window
	Presentation window
	Whiteboard toolbar
	Chat window
	Bottom Toolbar

If you want to change the tab order for BigBlueButton , check resources/config.xml.template and it to src/conf/config.xml.
Certain modules must have the baseTabIndex property, and for the default tab order, their values should be as follows:  

	101: DeskShareModule	(Desktop sharing module)
	101: VideoconfModule	(Webcam publishing window)
	201: ViewersModule		(Viewers list window)
	301: ListenersModule	(Listeners list window)
	401: VideodockModule	(Webcam window)
	501: PresentModule		(Presentation window)
	601: WhiteboardModule	(Whiteboard toolbar)
	701: ChatModule			(Chat window)

The 100-value separation guarantees enough space for a sufficient number of elements in each module. The Main Toolbar's
base index is 1, the bottom toolbar's base index is 100,000, but you shouldn't need to change them anyway.
Deskshare and Webcam publishing have the same base index, that is not an error.