bigbluebutton-Github/bigbluebutton-client
Richard Alam 5a1a1bcd45 - fix exception
---------------------------------------------------------
- ERROR: Wrong number of arguments supplied when calling method handleIsSharingScreenEvent
- EVENT TYPE: "IsSharingScreenEvent.IS_SCREENSHARING" (screenshare is sharing screen event)
- TAG: MethodInvoker
- GENERATOR: WebRTCDeskshareManager
- METHOD: handleIsSharingScreenEvent
- FILE: WebRTCDeskshareEventMap
- 1 ARGUMENT SUPPLIED: [Event type="screenshare is sharing screen event" bubbles=true cancelable=false eventPhase=2]
- STACK TRACE: ArgumentError: Error #1063: Argument count mismatch on org.bigbluebutton.modules.screenshare.managers::WebRTCDeskshareManager/handleIsSharingScreenEvent(). Expected 0, got 1.
	at Function/http://adobe.com/AS3/2006/builtin::apply()
	at com.asfusion.mate.core::MethodCaller/call()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/core/MethodCaller.as:90]
	at com.asfusion.mate.actions.builders::MethodInvoker/run()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/actions/builders/MethodInvoker.as:113]
	at com.asfusion.mate.actions::AbstractAction/trigger()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/actions/AbstractAction.as:61]
	at com.asfusion.mate.actionLists::AbstractHandlers/runSequence()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/actionLists/AbstractHandlers.as:331]
	at com.asfusion.mate.actionLists::EventHandlers/fireEvent()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/actionLists/EventHandlers.as:257]
	at flash.events::EventDispatcher/dispatchEventFunction()
	at flash.events::EventDispatcher/dispatchEvent()
	at mx.core::UIComponent/dispatchEvent()[/Users/aharui/release4.13.0/frameworks/projects/framework/src/mx/core/UIComponent.as:13682]
	at com.asfusion.mate.core::GlobalDispatcher/dispatchEvent()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/core/GlobalDispatcher.as:110]
	at com.asfusion.mate.events::Dispatcher/dispatchEvent()[/Users/nahuel/Documents/Flex Builder 3/MateDevelopment/src/com/asfusion/mate/events/Dispatcher.as:240]
	at org.bigbluebutton.modules.screenshare.services::MessageReceiver/handleIsSharingScreenRequestResponse()[/tmp/bbb-client_2.0.0_xenial_m02/src/org/bigbluebutton/modules/screenshare/services/MessageReceiver.as:146]
	at org.bigbluebutton.modules.screenshare.services::MessageReceiver/onMessage()[/tmp/bbb-client_2.0.0_xenial_m02/src/org/bigbluebutton/modules/screenshare/services/MessageReceiver.as:52]
	at org.bigbluebutton.modules.screenshare.services.red5::Connection/notifyListeners()[/tmp/bbb-client_2.0.0_xenial_m02/src/org/bigbluebutton/modules/screenshare/services/red5/Connection.as:101]
	at org.bigbluebutton.modules.screenshare.services.red5::Connection/onMessageFromServer()[/tmp/bbb-client_2.0.0_xenial_m02/src/org/bigbluebutton/modules/screenshare/services/red5/Connection.as:110]
---------------------------------------------------------

---------------------------------------------------------
MATE Error: Invalid number of arguments, turn on the debugger for more information
EventType:screenshare is sharing screen event. Error was found in a EventHandlers list in file WebRTCDeskshareEventMap
---------------------------------------------------------
2017-08-24 12:48:08 -07:00
..
.settings
branding Use a custom label that inherits from spark Label and use TLF instead of FTE and to make it multiline and add a tab enabled feature to it. 2017-08-24 17:36:45 +01:00
build/lib
config remove obsolete deskshare config 2016-08-23 19:48:38 +00:00
html-templateBackup
libs Remove tooltip from MDIWindow title bar. 2017-07-27 16:48:42 +01:00
locale Adjusted shared note naming to match the new default note name with it's id 2017-08-24 14:00:13 +00:00
resources Shared notes deletion enabled at config.xml 2017-08-23 18:02:38 +00:00
src - fix exception 2017-08-24 12:48:08 -07:00
.actionScriptProperties - try to fix webcam list 2017-07-20 10:09:01 -07:00
.flexProperties
.gitignore - update locales 2017-03-24 19:59:22 +00:00
.project FreeSWITCH webrtc screenshare 2017-07-11 13:31:56 -07:00
build.xml Deleted legacy client themes. 2017-07-18 00:14:53 +01: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.

Enable logging
    <logging enabled="true" target="server" level="info" uri="192.168.23.44:8090"/>