2005 04-29
评论(0)
cool shockwave menu
April 29th, 2005
http://www.killzoneps2.com/vektaToday/kz_main.html?jumpTo=en_GB
需要下载SHOCKWAVE插件才可以看。
The OpenLaszlo platform allows developers to create applications with the rich user interface capabilities of desktop client software and the instantaneous no-download Web deployment of HTML. These applications run on all leading Web browsers on all leading desktop operating systems from a single XML code base. Earthlink, Yahoo, Behr Paint, La Quinta and any many others rely on OpenLaszlo to deliver state-of-the-art applications serving millions of users. The OpenLaszlo platform is open source and free for development and deployment.
Convert your SWF movie files back to FLA files completely and quickly. Completely support Flash MX 2004 (7.0) and ActionScript 2.0 now. NEW! Support converting the swf that contains components to fla file and you can edit and configure them in Flash. NEW! Support converting swf that contains video to fla. NEW!新特性: 快速将SWF转为fla. 完全支持FLASHMX2004和ActionScript 2.0 支持转换含有组件的swf文件,并可以将组件转为FLA,使你可以在FLASH中编辑它。 支持转换含有视频的swf文件。 详情这里:sothink
//copyright by webstudio.com.cn 2005.04.24
System.useCodepage=true;
Stage.scaleMode = "noscale";
myXML = new XML();
myXML.ignoreWhite = true;
// 创建一个动态文本
createTextField("mytext", this.getNextHighestDepth, 10, 10, "350", "250");
mytext.html = true;
mytext.multiline = true;
mytext.wordWrap=true;
//mytext.autoSize = true;
myXML.onLoad = function(succes) {
if (succes) {
var parent = this.firstChild.childNodes;
trace(parent);
title = parent[0].firstChild.nodeValue;
categoria = parent[1].firstChild.nodeValue;
list = parent[2].firstChild.nodeValue;
mytext.htmlText = title;
mytext.htmlText += categoria;
mytext.htmlText += list;
}
};
//载入xml
myXML.load("http://www.webstudio.com.cn/wsswf/flashxmlcdata/myxml.xml");
[flash]http://www.webstudio.com.cn/wsswf/flashxmlcdata/flash.swf,400,300[/flash]
详情和源文件:这里