spring actionscript

汪和悌
2023-12-01

http://www.oschina.net/p/spring+actionscript

比利时的Christophe Herreman是Spring ActionScript框架(以前的pranaframework)的创始人和主要开发成员之一。

当前版本的Spring ActionScript已经实现了IOC,反射编程框架,集成了Cairngorm和PureMVC框架。接下来会开发一个MVCS( Model-View-Controller-Service)的架构,并且加入AOP(Aspect Oriented Programming)面向切面编程。(比我的Spring框架不知道要强多少倍!!)

下载地址 Spring ActionScript

使用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()
}
 类似资料:

相关阅读

相关文章

相关问答