转载

《Flexpaper二次开发入门教程》(十六) 删除、修改Flexpaper浏览器的FP关于我们按钮(5 ...

5.4 删除、修改Flexpaper浏览器的FP关于我们按钮

a)删除FP关于我们按钮

我们可以在FlexPaperViewer.mxml中找到关于FP的代码:

<mx:Canvas width="100%" id="cnv_info" horizontalScrollPolicy="off" verticalScrollPolicy="off" height="100%">

            <st:GradientImageButton id="bttnInfo" left="{cnv_info.width-21}" visible="false" icon="{MenuIcons.SMALL_GRAY}" styleName="toolbttn" width="20" height="20" click="showInfo(event);" toolTip="@Resource(key='About', bundle='FlexPaper')" addedToStage="{new MenuIcons.SMALL_TRANSPARENT().width > 10}" />

            <st:GradientLabel id="lblProgress" left="{cnv_info.width-26}" textAlign="center" y="4" fontSize="8" height="19" width="32" text="" tabIndex="0"/>

            <ct:Spinner id="spin1" left="{cnv_info.width-22}" styleName="gradientlines" y="-1" startImmediately="false" spinnerType="gradientcircle" width="22" height="22" />

</mx:Canvas>

 

此段代码不能通过注释来达到删除FP的效果,因为注释掉后会发现更多的问题,查找修改起来更麻烦,所以我们通过查找FlexPaperViewer.mxml文件会找到下面三行代码,我们把它们注释掉就可以达到效果。

//bttnInfo.visible = false;

//bttnInfo.visible = (new MenuIcons.SMALL_TRANSPARENT().width > 10);

//bttnInfo.visible = (new MenuIcons.SMALL_TRANSPARENT().width > 10);

 

效果如下图: 

《Flexpaper二次开发入门教程》(十六) 删除、修改Flexpaper浏览器的FP关于我们按钮(5 ...

某些朋友提到在FlexPaperViewer.mxml源码中所有的bttnInfo.visible = true;  替换成 bttnInfo.visible = false;mark测试过,好像不行,由于测试仓促,特别是上面的方法已经OK了,没心再研究,大家有兴趣可以试试。

 

 

b) 修改FP关于我们按钮(设想)

我们打开about.mxml文件,可以看到里面的源码,

<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="276" height="204" title="@Resource(key='About', bundle='FlexPaper')" showCloseButton="true" creationComplete="Init()">

 

<mx:Button x="105.5" y="127" id="bttnOk" label="OK" click="PopUpManager.removePopUp(this);"/>

<mx:Image x="13" y="10"  source="{MenuIcons.LOGO_SMALL}" width="157" height="41"/>

<mx:Label x="10" y="62" text="@Resource(key='Developedby', bundle='FlexPaper')"/>

<mx:Label x="10" y="98" text="@Resource(key='Formoreinformation', bundle='FlexPaper')"/>

<mx:LinkButton x="160" y="98" label="devaldi.com" click="navigateToURL(new URLRequest('http://flexpaper.devaldi.com/?ref=FlexPaper'), 'devaldi')" fontWeight="normal" textDecoration="underline" color="#4134EB" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0"/>

<mx:Label x="165" y="19" text="1.5.0"/>

<mx:Label x="10" y="80" text="GPL 3 (non-commercial) License."/>

 

设想1.如果我们可以修改目前Resource的值,可以吗,是不是可以改变FP提示框中显示的内容?

设想2.如果我们创建一些Resource,修改about.mxmlFlexPaperViewer.mxml绑定的资源为自己创建的资源,是不是可以改变FP提示框中显示的内容?

这些都只有等各位高手来测试,mark不想研究了,也没时间,呵呵。

 

转载请注明:转自http://ajava.org,请保留文章的完整。

正文到此结束
Loading...