Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Adobe Flex SDK 3.5 (Release)
-
None
-
None
-
Affected OS(s): Windows
Browser: Firefox 3.x
Language Found: English
Description
Create a project with the code below and the attached picture.
Move the picture down and to the right by clicking the buttons.
At some point the pictures disappears. The more you scale it the sooner it disappears. The more you unscale it the further it can go.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:HBox>
<mx:VBox>
<mx:Button label="scale +" click="
"/>
<mx:Button label="scale -" click="
"/>
<mx:Button label="move R" click="
"/>
<mx:Button label="move L" click="
"/>
<mx:Button label="move up" click="
"/>
<mx:Button label="move dn" click="
"/>
</mx:VBox>
<mx:Canvas id="allo" width="1000" height="1000" borderColor="0x000000">
<mx:Image id="mycanvas" width="50" height="50" scaleContent="true" source="cercle.jpg">
</mx:Image>
</mx:Canvas>
</mx:HBox>
</mx:Application>