用AS3加载外部图片.动画.音乐

小小水边茶轩,共闲情逸致的你,听潮起潮落,看千帆过尽……
打印 被阅读次数


Flash Tutorial: Dynamically Load External Images SWFs AS3

/>




Load & Unload Multiple External SWF files Tutorial in Flash ActionScript 3.0


/>



Build Simple Sound Player: Flash Tutorial AS 3.0


/>



Flash CS4: Creating an MP3 Player with Actionscript Preview Part I


/>



Flash CS4: Creating an MP3 Player with Actionscript Preview Part II

/>

Creating Particle based Fog

/>



网上问题:



兄弟姐妹们,求救,因为要用到图片切换 AS3 效果 , FLASH CS4( AS3 ) 如何直接载入图片、动画??



以前 FLASH 版本这个命令: this.loadMovie("image/abc.jpg") ,可以直接载入图片,但现在因为图片切换效果要用到 AS3 ,请问有什么办法可以直接载入??




答案1:



1. import flash.display.Loader;

2. import flash.net.URLRequest;



3.

4. var loader:Loader = new Loader();

5. addChild(loader);

6.

7. loader.load(new URLRequest(http://lite3.cn/logo/logo.jpg));





答案2 :

var l = new Loader(); addChild(l); l.load(new URLRequest("top.swf"));

应该是这样理解的:首先定义 l 这个新的 loader 对象,使用 URLRequest 来导入外部的动画,记得把动画的路径要写正确。

一些相关网站:



Loading an External SWF with FlashEff effect(s) working after load

Dynamically loading external XML files using ActionScript 3.0

Making an MP3 player in AS3

Using Sound in ActionScript 3 - music player制作入门

Loading External Sounds Using AS3


Flash CS4如何控制动画声音的停止和播放

FLASH AS3:如何实现任意播放整首音乐中的某一段

运用Flash AS3代码制作一个迷你播放器

《音乐欣赏版区新手知识篇》

用Flash制作一个简单的MP3播放器--www.webjx.com


Flash CS4入门与进阶实例——MTV实战演习

FLASH制作MV声音与图片同步问题

FLASH软件中如何编辑声音文件

Flash入门教程:滚动字幕动画的制作--www.webjx.com

Flash实例教程:图片不间断滚动动画效果--www.missyuan.net


Flash动画制作实例:单个背景循环移动动画

立体不间断循环动画的制作与应用

Flash动画中雾气的两种制作方法

解决Flash画面运动中抖动的方法

Flash CS4 Tutorial - 3D Transformation and Rotation--best youtube video


Flash CS4 3D Tools (Video)--by Tom Green

Flash CS4: The 3D Rotation/Translation Tool--by Tom Green

Adobe Flash CS4 Tutorial- Quick and Easy Animations

Adobe flash cs4 tutorial: 3d page flip--youtube video

ActionScript 3 Basics Tutorial : 001--best AS3 tutorial


ActionScript 3 Basics Tutorial : 3d Rotation

Actionscript 3 3D with Flash

Flash CS4 Tutorial: How To Motion Tween--youtube video

ActionScript 3 Basics Tutorial Tween Class

登录后才可评论.