Spring ActionScript 是 ActionScript 编程语言的一个 IoC 、MVC 编程框架,主要用于 Flash、Flex 和 AIR 平台的应用开发。
当前版本的 Spring ActionScript 已经实现了 IOC,反射编程框架,集成了 Cairngorm 和 PureMVC 框架。接下来会开发一个 MVCS( Model-View-Controller-Service)的架构,并且加入 AOP(Aspect Oriented Programming)面向切面编程。
使用 pranaframework 框架的一个例子(与使用 Spring ActionScript 类似,只是包名改了):
1.定义 XML 配置文件.
prana_config.xml
<?xml version="1.0" encoding="utf-8"?> <objects> <object id="sound" class="flash.media.Sound"/> <object id="request" class="flash.net.URLRequest"> <constructor-arg type="String" value="testSound.mp3"/> </object> </objects>
2.加载配置文件,生成对象.
ActionScript 时间轴代码
import org.pranaframework.context.support.XMLApplicationContext; var context:XMLApplicationContext=new XMLApplicationContext("prana_config.xml"); context.addEventListener("complete",onContextComplete); context.load(); function onContextComplete(e:Event):void{ var sound=context.getObject("sound") sound.load(context.getObject("request")) sound.play() }
Spring ActionScript入门教程(1)-简介 Spring ActionScript入门教程(1)-简介 Posted 九月 14th, 2009 by 郭少瑞 * Caringorm * spring 这是一个系列文章,总共3篇,RIAMeeting将在这3篇文章中为大家讲述Spring ActionScript的基本概念以及使用方法,通过学习这3篇文章,开发者可以创建出一个简单的
Releases Adam Fitzgerald September 24, 2010 Dear community, We’re pleased to announce that Spring ActionScript 1.0 is now available. Download | API Documentation | HTML Docs | Changelog Spring ActionS
Releases Adam Fitzgerald October 29, 2010 Dear community, We’re pleased to announce that Spring ActionScript 1.1 is now available. Download | API Documentation | HTML Docs | Changelog Besides a series
http://www.oschina.net/p/spring+actionscript 比利时的Christophe Herreman是Spring ActionScript框架(以前的pranaframework)的创始人和主要开发成员之一。 当前版本的Spring ActionScript已经实现了IOC,反射编程框架,集成了Cairngorm和PureMVC框架。接下来会开发一个MVCS(
Spring Actionscript 是众多围绕依赖注入提供解决方案的Flex控制反转框架之一 AS3 下经典的IOC框架有Spring ActionScript、Parsley、Flicc和Swiz,由于我对JAVA spring IOC机制较为熟悉,所以选择了 Spring ActionScript。 主要有XML配置(XML)和注释元数据(Metadata)配置两种方式,下面一一介绍,例子
主要的两个类: 1,FlexXMLApplicationContext,XMLApplicationContext,是IOC容器的两个重要类,FlexXMLApplicationContext只是增加了一些flex方面的特性。 2,定义文件模板: <?xml version="1.0" encoding="utf-8"?> <objects xmlns="http://www.sp
重点看 Ioc 操作和任务的API EventBus metadata处理 Ioc 使用FlexXMLApplicationContext 和XMLApplicationContext,其中FlexXMLApplicationContext加入了 Flex支持 下面描述如何创建配置文件,创建application context 和实例化对象 Ope