bigbluebutton-Github/bigbluebutton-client
Chad Pilkey b64a3f2515 Merge branch 'access-hotfix' of github.com:capilkey/bigbluebutton into access-hotfix
Conflicts:
	bigbluebutton-client/src/BigBlueButton.mxml
2013-01-04 14:04:33 -05:00
..
.settings
bin
branding make the whiteboard icons a little bigger 2012-12-28 16:38:33 +00:00
build/lib
config - forgot to add /fcs/ handler 2012-09-14 19:32:50 +00:00
html-templateBackup
libs hiding window contents on minimize 2013-01-03 17:50:40 -05:00
locale Merge branch 'access-hotfix' of github.com:capilkey/bigbluebutton into access-hotfix 2013-01-04 16:32:48 +00:00
resources Merge remote branch 'upstream/master' into access-hotfix 2013-01-04 14:03:39 -05:00
src Merge branch 'access-hotfix' of github.com:capilkey/bigbluebutton into access-hotfix 2013-01-04 14:04:33 -05:00
.actionScriptProperties
.actionScriptProperties.orig
.flexProperties
.flexProperties.orig
.gitignore
.project
build.xml - build the right default style 2012-12-28 17:44:41 +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

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.