This is an automated email from the ASF dual-hosted git repository.
alinakazi pushed a commit to branch feature/MXRoyale
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/feature/MXRoyale by this push:
new 3899029 Update UIComponent.as for Label.as Spark
3899029 is described below
commit 38990297caffb77baa179283a89c012282c1974b
Author: alinakazi <[email protected]>
AuthorDate: Thu May 17 12:12:52 2018 +0500
Update UIComponent.as for Label.as Spark
mouseChildren , useHandCursor, mouseEndabled Copied from
DisplayObjectContainer,Sprite,InteractiveObject respectively
---
.../src/main/royale/mx/core/UIComponent.as | 76 ++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
index cd06162..7de953b 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
@@ -470,6 +470,82 @@ public class UIComponent extends UIBase
*/
COMPILE::SWF
{ override }
+ public function get useHandCursor():Boolean
+ {
+ if (GOOG::DEBUG)
+ trace("useHandCursor not implemented");
+ return false;
+ }
+
+ COMPILE::SWF
+ { override }
+ public function set useHandCursor(value:Boolean):void
+ {
+ if (GOOG::DEBUG)
+ trace("useHandCursor not implemented");
+ }
+
+ /**
+ * From flash.display.InteractiveObject
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ COMPILE::SWF
+ { override }
+ public function get mouseEnabled():Boolean
+ {
+ if (GOOG::DEBUG)
+ trace("mouseEnabled not implemented");
+ return false;
+ }
+
+ COMPILE::SWF
+ { override }
+ public function set mouseEnabled(value:Boolean):void
+ {
+ if (GOOG::DEBUG)
+ trace("mouseEnabled not implemented");
+ }
+
+ /**
+ * From flash.display.DisplayObjectContainer
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ COMPILE::SWF
+ { override }
+ public function get mouseChildren():Boolean
+ {
+ if (GOOG::DEBUG)
+ trace("mouseChildren not implemented");
+ return false;
+ }
+
+ COMPILE::SWF
+ { override }
+ public function set mouseChildren(value:Boolean):void
+ {
+ if (GOOG::DEBUG)
+ trace("mouseChildren not implemented");
+ }
+
+
+ /**
+ * From flash.display.Sprite
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ COMPILE::SWF
+ { override }
public function get buttonMode():Boolean
{
if (GOOG::DEBUG)
--
To stop receiving notification emails like this one, please contact
[email protected].