X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-script-v8%2Fdocs%2Fcontent%2Factor.js;h=300ae3ddecd6b0b3d3f90917148cbed0a289fafe;hp=70def0c647888485821b37655db98409ea391a5a;hb=0031ca8312dba666109e4f7fbb62a3a5e288b7c2;hpb=c2c26bbf1ab67ccf1a74c920ab1189cf24255daf diff --git a/plugins/dali-script-v8/docs/content/actor.js b/plugins/dali-script-v8/docs/content/actor.js index 70def0c..300ae3d 100644 --- a/plugins/dali-script-v8/docs/content/actor.js +++ b/plugins/dali-script-v8/docs/content/actor.js @@ -72,13 +72,13 @@ Note that since DALi is a 3D toolkit, this behaviour is the result of a default The actor provides the following call back events -| Name | Description | Parameters passed to call back | -|-------------------|----------------------------------------|--------------------------| -|touched | touch event | (actor, touchEvent ) | -|hovered | mouse or pointer hovering over actor | (actor, hoverEvent) | -|mouse-wheel-event | mouse wheel events | (actor, wheelEvent) | -|on-stage | actor has been moved on stage | (actor) | -|off-stage | actor has been moved off stage | (actor) | +| Name | Description | Parameters passed to call back | +|-----------------|----------------------------------------|--------------------------| +|touched | touch event | (actor, touchEvent ) | +|hovered | mouse or pointer hovering over actor | (actor, hoverEvent) | +|mouseWheelEvent | mouse wheel events | (actor, wheelEvent) | +|onStage | actor has been moved on stage | (actor) | +|offStage | actor has been moved off stage | (actor) | #### Touch event @@ -162,7 +162,7 @@ mouseWheelEvent = { } // connect to touch events -myActor.connect( "mouse-wheel-event", onMouseWheel ); +myActor.connect( "mouseWheelEvent", onMouseWheel ); ``` #### Key events @@ -226,6 +226,7 @@ See * @class Actor + * @extends Handle */