博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Flex显示图片的常用方式
阅读量:4943 次
发布时间:2019-06-11

本文共 1217 字,大约阅读时间需要 4 分钟。

第一种: 使用绑定的方式

<?xml version="1.0" encoding="utf-8"?><application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

<script>

            [Bindable] 

            [Embed(source="../image/aa.png")] 
            private var imgClass:Class;   

</script>

<image source="{s}" width="150" height="151.8" id="img"></image></application>

 

 第二种: 直接对source指定路径

<?xml version="1.0" encoding="utf-8"?><application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationcomplete="init()">

<script>

public function init():void{

           img.source="../image/mov.png";
          }

</script>

<image width="150" height="151.8" id="img"></image>

</application>

 

 

第三种:使用Loader类

 <?xml version="1.0" encoding="utf-8"?><application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationcomplete="init()">

<script>

       <mx:Script>

   <![CDATA[
    private var _loader:Loader; 
    public function init():void{
           _loader=new Loader();
           _loader.contentLoaderInfo.addEventListener(Event.COMPLETE,function(e:Event){
            img.source=e.currentTarget.content;
           })
           //当url 中有中文字体的话 使用encodeURI方法 如果没有 则可以不加 
           _loader.load(new URLRequest("../image/中国.png"));
          }
   ]]>

</script>

<image width="150" height="151.8" id="img"></image></application>

转载于:https://www.cnblogs.com/JPAORM/archive/2011/04/16/2509816.html

你可能感兴趣的文章
SQL CHECK 约束&Case when 的使用方法
查看>>
[整理]HTTPS和SSL证书
查看>>
[转载] Android 异步加载图片,使用LruCache和SD卡或手机缓存,效果非常的流畅
查看>>
水晶苍蝇拍:聊聊估值那些事儿——“指标”背后的故事 (2011-11-01 14:58:32)
查看>>
3.每周总结
查看>>
应用提交 App Store 上架被拒绝
查看>>
Android实现异步处理 -- HTTP请求
查看>>
数据清空js清空div里的数据问题
查看>>
Fortran中的指针使用
查看>>
移动终端app测试点总结
查看>>
14-6-27&28自学内容小结
查看>>
JSP
查看>>
---
查看>>
(第一组_GNS3)自反ACl
查看>>
hdu--1258--Sum It Up(Map水过)
查看>>
Spring @DeclareParents 的扩展应用实例
查看>>
VS2012更新Update1后帮助查看器无法打开
查看>>
Android 文件的读取和写入
查看>>
高校表白APP-冲刺第四天
查看>>
outlook 设置163邮箱
查看>>