ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

flexpaper源码的编译,去除logo和打印 (转)

2019-08-04 13:41:06  阅读:326  来源: 互联网

标签:flexpaper 4.5 Adobe Builder Flash 源码 logo 下载


原文链接:http://www.cnblogs.com/coprince/p/3313960.html

1.首先下载FlexPaper的源码。下载地址

2. 下载Adobe Flash Builder v4.5

    现在最新是4.6了,在adobe网站木找到4.5下载,这里提供下4.5的种子文件 http://220.166.104.109:8899/AdobeFlashBuilder_v4.5.torrent

     安装key:1499-4181-9296-6452-2998-3656

解压后, 在解压目录找到并执行Adobe Flash Builder 4.5\SOFTWARE\Set-up.exe安装

安装完后,在开始菜单里,启动运行Adobe Flash Builder 4.5

首先在flash build中新建一个flex项目,第一步填写项目名称-flexpaper,第二步直接默认,最后一步需要注意下。

选择合并到代码中,要不然你的bin-debug目录下面会出现很多其他的swf文件

然后把你1步下载下来的源码解压。

把这三个目录全部复制到你刚才建立的flex项目根目录下。最后结果是这样的:

这时候打开src目录下面默认包下的flexpaper.mxml文件 替换成下面代码

 
<?xml version="1.0" encoding="utf-8"?>  
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:fp="com.devaldi.controls.flexpaper.*" 
    layout="absolute" width="100%" height="100%"   
    applicationComplete="initApp();">  
 
 <mx:Script>  
  <![CDATA[  
   import mx.controls.Alert;  
   
   public var _aid = 0;//文档ID  
   
   [Bindable]  
   public var _Scale:Number = 1;//缩放比例  
   
   [Bindable]  
   public var _SwfFile:String = "";//SWF文件路径  
   
   [Bindable]  
   public var _ZoomTransition:String = "easeOut";  
   
   [Bindable]  
   public var _ZoomTime:Number = 0.6;  
   
   [Bindable]  
   public var _ZoomInterval:Number = 0.1;  
   
   [Bindable]  
   public var _FitPageOnLoad:Boolean = false;//加载后适合高度  
   
   [Bindable]  
   public var _FitWidthOnLoad:Boolean = false;//加载后适合宽度  
   
   [Bindable]  
   public var _PrintEnabled:Boolean = true;//是否支持打印  
   
   [Bindable]  
   public var _FullScreenAsMaxWindow:Boolean = false;//是否支付全屏  
   
   [Bindable]  
   public var _ProgressiveLoading:Boolean = false;//是否延迟加载  
   
   [Bindable]  
   public var _localeChain:String = "zh_CN";//语言  
   
   private var isFocus:Boolean = false;  
   
   //初始化参数  
   private function initApp():void{  
    var params:Object = Application.application.parameters;  
    _Scale = getNumber(params, "Scale", 1);  
    _SwfFile = getString(params, "SwfFile", "Paper.swf");  
    _ZoomTransition = getString(params, "ZoomTransition", "easeOut");  
    _ZoomTime = getNumber(params, "ZoomTime", 0.6);  
    _ZoomInterval = getNumber(params, "ZoomInterval", 0.1);  
    _FitPageOnLoad = getBoolean(params, "FitPageOnLoad", false);  
    _FitWidthOnLoad = getBoolean(params, "FitWidthOnLoad", false);  
    _PrintEnabled = getBoolean(params, "PrintEnabled", true);  
    _FullScreenAsMaxWindow = getBoolean(params, "FullScreenAsMaxWindow", false);  
    _ProgressiveLoading = getBoolean(params, "ProgressiveLoading", true);  
    _localeChain = params["localeChain"];  
    
    //注册事件监听  
    this.addEventListener(MouseEvent.MOUSE_OVER, onm ouseOver);  
    this.addEventListener(MouseEvent.MOUSE_OUT, onm ouseOut);  
    
    //开放给外部(javascript)调用  
    ExternalInterface.addCallback("hasFocus", hasFocus);  
    //ExternalInterface.addCallback("focus", focus);   
    ExternalInterface.addCallback("setViewerFocus", setViewerFocus);  
    ExternalInterface.addCallback("gotoPage", gotoPage);
   }  
   
   
   
   private function onm ouseOver(event:MouseEvent):void{  
    this.isFocus = true;  
   }  
   
   private function onm ouseOut(event:MouseEvent):void{  
    this.isFocus = false;  
   }  
   
   public function hasFocus():Boolean{  
    //Alert.show("hasFocus");  
    return isFocus;  
   }  
   
   public function setViewerFocus(isFocus:Boolean):void{    
    //Alert.show("setViewerFocus");  
    this.paperViewer.setViewerFocus();  
   }  
   
   /** 
    *  
    * 获取String类型参数 
    * 如果没有,则返回默认值 
    **/ 
   private function getString(params:Object, name:String, def:String):String{  
    if(params[name] != null){  
     return params[name];  
    }  
    return def;  
   }  
   
   private function getNumber(params:Object, name:String, def:Number):Number{  
    if(params[name] != null){  
     return params[name];  
    }  
    return def;  
   }  
   
   private function getBoolean(params:Object, name:String, def:Boolean):Boolean{  
    //Alert.show("比较:"+name);  
    if(params[name] != null){  
     return params[name] == "true";  
    }   
    return def;  
   }  
   
   public function gotoPage(p:Number):void{
    paperViewer.gotoPage(p);
   }
   
  ]]>  
 </mx:Script>  
 <!--mx:Panel x="165" y="76" width="250" height="200" layout="absolute" title="一个人">  
 <mx:Label x="59" y="37" text="{Scale}" width="88"/>  
 </mx:Panel-->  
 
 <fp:FlexPaperViewer id="paperViewer" 
      width="100%"   
      height="100%"   
      Scale="{_Scale}"   
      SwfFile="{_SwfFile}"   
      ZoomTransition="{_ZoomTransition}"   
      ZoomTime="{_ZoomTime}"   
      ZoomInterval="{_ZoomInterval}" 
      FitPageOnLoad="{_FitPageOnLoad}" 
      FitWidthOnLoad="{_FitWidthOnLoad}" 
      PrintEnabled="{_PrintEnabled}" 
      FullScreenAsMaxWindow="{_FullScreenAsMaxWindow}" 
      
      ProgressiveLoading="{_ProgressiveLoading}" />  
</mx:Application>

然后点击项目的属性,将附加的编译参数修改成如下所示,-source-path=locale/{locale}

 

上图中,勾选上 使用flex3兼容性模式 然后就可以run了。

修改:

1.右上角有一个FP,点击以后出现about

找到如下所示的文件:


打开,搜索bttnInfo,一共就三句,全部注释掉。然后在run,就会发现右上角的FP没了。(print也是在这个文件里面修改的,大家自己看看吧)

2.修改右下角的logo,如下

找到如下文件,打开,找到createDisplayContainer这个函数。在addChild(_skinImgDo);后面加入_skinImgDo.visible = false;(虽然不懂,但是这些看看也都能知道个大概)

好了。修改完毕。至于其他的修改,大家可以自己看看源文件。反正功能老外都帮我们现实了,我们只要修修改改而已。

 

找到项目C:\Documents and Settings\你的用户名\Adobe Flash Builder 4.5\flexpaper\bin-debug下面的flexpaper.swf  如下图:

拷贝上图中的flexpaper.swf  放在你下载回来的例子中,替换如下:

把刚才的文件改成这个名字就OK了。然后在运行就会发现可以了。

FlexPaper_1.4.5_flash下载

转载于:https://www.cnblogs.com/coprince/p/3313960.html

标签:flexpaper,4.5,Adobe,Builder,Flash,源码,logo,下载
来源: https://blog.csdn.net/weixin_30292843/article/details/98464057

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有