Skip to content

Commit

Permalink
forgot to add service file
Browse files Browse the repository at this point in the history
  • Loading branch information
markoscalderon committed Jul 6, 2012
1 parent e378ee1 commit 3d86d5d
Showing 1 changed file with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,28 @@ package org.bigbluebutton.modules.present.business {
*
*/
public function sendCursorUpdate(xPercent:Number, yPercent:Number):void{
_presentationSO.send("updateCursorCallback", xPercent, yPercent);
//_presentationSO.send("updateCursorCallback", xPercent, yPercent);
nc.call("presentation.sendCursorUpdate",// Remote function name
new Responder(
// On successful result
function(result:Boolean):void {

if (result) {
LogUtil.debug("Successfully sent sendCursorUpdate");
}
},
// status - On error occurred
function(status:Object):void {
LogUtil.error("Error occurred:");
for (var x:Object in status) {
LogUtil.error(x + " : " + status[x]);
}
}
), //new Responder
xPercent,
yPercent
); //_netConnection.call

}

/**
Expand Down

0 comments on commit 3d86d5d

Please sign in to comment.