开发者

vertical progress bar flex

开发者 https://www.devze.com 2023-02-22 01:15 出处:网络
Hi I want to use the mx:ProgressBar of flex just in order to be able to show a filled bar according to a certain percentage(If there is a different control to use, please suggest).

Hi I want to use the mx:ProgressBar of flex just in order to be able to show a filled bar according to a certain percentage(If there is a different control to use, please suggest). Anyhow, I want to show the control flipped by 90 degrees. I tried to use the rotation="90" but after the rotation you have to set the x coordinate in order to move it to the right an开发者_运维问答d I want to avoid this. Is there any other way except rotation="90" ?

Thanks, Clint


if you wish to rotate on the center you try the trick of using rotating animation:

  <mx:Rotate
    id="ID"
    angleFrom="0"
    angleTo="360"
    originX="0"
    originY="0"
  />

With rotation animation you can specify originX/originY so you can rotate it on its center. Call the rotate motion on component creationcomplete

0

精彩评论

暂无评论...
验证码 换一张
取 消