当前位置:  开发笔记 > 编程语言 > 正文

将mxml Rect和SolidColor转换为actionscript

如何解决《将mxmlRect和SolidColor转换为actionscript》经验,为你挑选了1个好方法。

我正在尝试学习如何在mxml上使用actionscript来提高灵活性.我有这个简单的mxml块,我正在尝试转换为actionscript,但是我被困在了一半


    
      
   

我可以将Rect没有问题转换为

private var theRect:Rect = new Rect();
theRect.x = 0;
theRect.y = 50;
theRect.width = "15%";
theRect.height = "15%";

然后我就陷入了困境.在尽可能少的代码行中添加SolidColor的最有效方法是什么.



1> Lance Pollar..:

这应该工作:

private var theRect:Rect = new Rect();
theRect.x = 0;
theRect.y = 50;
theRect.width = "15%";
theRect.height = "15%";
theRect.fill = new SolidColor(0x000000, 0.9);

MXML()中的属性只是Actionscript中的点属性,值是接下来的值,所以它不是太糟糕.

希望有所帮助,兰斯

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有