首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

flex 进度条loading改成中文?

2012-03-03 
flex 进度条loading改成中文?在线等!如题!最好能说清楚点。我是新手![解决办法]?xml version1.0?!--

flex 进度条loading改成中文?在线等!

如题!最好能说清楚点。我是新手!

[解决办法]
<?xml version="1.0"?>
<!-- Simple example to demonstrate the ProgressBar control. -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

<mx:Script>
<![CDATA[
private var j:uint=10;

// Event handler function to set the value of the 
// ProgressBar control.
private function runit():void
{
if (j <= 100)
{
bar.setProgress(j, 100);
bar.label="载入" + " " + j + "%";
j+=10;
}
if (j > 100)
{
j=0;
}
}
]]>
</mx:Script>

<mx:Panel title="ProgressBar Control Example"
height="75%"
width="75%"
paddingTop="10"
paddingBottom="10"
paddingLeft="10"
paddingRight="10">

<mx:Label width="100%"
color="blue"
text="Click the button to increment the progress bar."/>
<mx:Button id="Speed"
label="Run"
click="runit();"/>

<mx:ProgressBar id="bar"
labelPlacement="bottom"
themeColor="#F20D7A"
label="载入 %3%%"
minimum="0"
height="50"
visible="true"
maximum="100"
direction="right"
mode="manual"
width="100%"/>

</mx:Panel>
</mx:Application>

就吧loding-->中文?
[解决办法]

Java code
package com.pricklythistle.common{    import mx.preloaders.DownloadProgressBar;    public class CustomDownloadProgressBar extends DownloadProgressBar    {        public function CustomDownloadProgressBar()        {            this.downloadingLabel = "正在加载中...";            initializingLabel = "初始化中...";        }            }}<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()" preloader="com.pricklythistle.common.CustomDownloadProgressBar">.... 

热点排行