bigbluebutton-Github/bigbluebutton-client
2016-02-29 14:28:40 -03:00
..
.settings
branding move the shared notes icons to branding 2015-12-08 17:38:05 -02:00
build/lib
config
html-templateBackup
libs
locale add a menu next to the save notes button so the user can save both formatted or unformatted notes; create a new class WellPositionedMenu which will automatically position a menu next to a button or any other display object; cleanup 2015-12-08 17:38:05 -02:00
resources update copyright message to 2016 2016-02-03 15:23:37 -02:00
src apply canvas calculation when toolbar or footer are resized or hidden 2016-02-29 14:28:40 -03:00
.actionScriptProperties
.flexProperties
.gitignore - update localization 2014-08-24 11:02:00 -07:00
.project
build.xml Merge branch '090-new-videodock' into mconf-live0.6.2 2015-01-28 22:50:55 -02:00
LICENSE.txt move into trunk to use as development 2008-11-05 14:52:33 +00:00
README
transifex.sh - tool to cleanup transifex downloaded files 2014-08-28 14:09:35 -07:00
vm-build.sh

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.