bigbluebutton-Github/bigbluebutton-client
Felipe Cecagno 0d26ca639f new attempt to fix the line endings
this particular file has windows line endings
2015-05-06 15:12:42 -03:00
..
.settings
branding Merge branch 'bigbluebutton/master' into 090-new-videodock 2015-04-29 12:10:41 -03:00
build/lib
config
html-templateBackup
libs
locale Merge branch 'bigbluebutton/master' into 090-new-videodock 2015-04-29 12:10:41 -03:00
resources Merge branch 'bigbluebutton/master' into 090-new-videodock 2015-04-29 12:10:41 -03:00
src new attempt to fix the line endings 2015-05-06 15:12:42 -03:00
.actionScriptProperties
.flexProperties
.gitignore
.project
build.xml removed the videodock code which is not used anymore 2015-01-28 21:32:01 -02:00
LICENSE.txt
README
transifex.sh
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.