Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Adobe Flex SDK 3.5 (Release)
-
None
-
None
-
Affected OS(s): Windows
Affected OS(s):
Language Found: English
Description
Steps to reproduce:
private function testScale():void
Actual Results:
obj=UIComponent148 obj.transform.maxtrix.a=20 obj.scaleX=1
obj=UIComponent148 obj.transform.maxtrix.a=1 obj.scaleX=25
Expected Results:
obj=UIComponent148 obj.transform.maxtrix.a=20 obj.scaleX=20
obj=UIComponent148 obj.transform.maxtrix.a=1 obj.scaleX=1
works correctly (as "expected") for other (non-UIComponent) DisplayObjects like Sprite, Bitmap.
Workaround (if any):
directly set scaleX when doing matrix operations,
or only use scaleX and do not use matrix ops...