让图片始终保持在100%显示效果
最初代码为
修改后
图片必须有Canvas 设置自适应100%必须加上
autoLoad="true" maintainAspectRatio="false"
最初代码为
<mx:Image id="mySelf" width="46" height="44" y="6" left="7" source="@Embed('images/14.gif')" toolTip="用户头像" autoLoad="true" />
修改后
<mx:Canvas width="46" height="44" y="6" left="7">
<mx:Image id="mySelf" width="100%" height="100%" source="@Embed('images/14.gif')" toolTip="用户头像" autoLoad="true" maintainAspectRatio="false"/>
</mx:Canvas>
图片必须有Canvas 设置自适应100%必须加上
autoLoad="true" maintainAspectRatio="false"