上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 89 下一页
  2010年4月18日
摘要: 阅读全文
posted @ 2010-04-18 21:22 钱途无梁 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1.frame.html[代码]2.u.html代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<html><head><script>functiontest(){varobjValue=window.pare... 阅读全文
posted @ 2010-04-18 21:13 钱途无梁 阅读(1050) 评论(0) 推荐(0) 编辑
  2010年4月17日
摘要: http://blog.csdn.net/hero82748274/archive/2009/04/18/4091086.aspx 阅读全文
posted @ 2010-04-17 22:09 钱途无梁 阅读(247) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/hero82748274/archive/2009/04/17/4088520.aspx 阅读全文
posted @ 2010-04-17 22:06 钱途无梁 阅读(414) 评论(0) 推荐(0) 编辑
摘要: http://iamzealotwang.javaeye.com/blog/486516 阅读全文
posted @ 2010-04-17 21:59 钱途无梁 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 一下子要找到很多FLEX做的网站可能会比较困难。下面是一些用FLEX开发的网站,对FLEX有兴趣的朋友可以看一下:http://www.mvelopes.com/mvelopes/online_budget.php flex做的分析软件http://www.alex-uhlmann.de/flash/adobe/blog/distortionEffects/effectCube/这玩意,Flex2... 阅读全文
posted @ 2010-04-17 20:00 钱途无梁 阅读(17244) 评论(2) 推荐(2) 编辑
  2010年4月16日
摘要: 默认快捷键为:ctrl+空格键,被输入法占用,使用不起作用,现改为:ctrl+J 阅读全文
posted @ 2010-04-16 17:36 钱途无梁 阅读(791) 评论(0) 推荐(0) 编辑
摘要: 花了3天做的音乐频谱的效果,截图的效果:包括了5个类:MusicControl类,不多说了,用来控制音乐的,包括音乐的载入和播放时的控制等。ID3Control类,用来提取音乐文件的相关信息的类,循环的显示各种信息,提取的中文显示乱码,这里用一个函数进行更正即可: function EncodeUtf8(str:String):String {var oriByteArr:ByteArray = ... 阅读全文
posted @ 2010-04-16 15:45 钱途无梁 阅读(645) 评论(0) 推荐(1) 编辑
摘要: 都是在项目中总结的,经过实践的,在flex2 as3下使用的。as调jsExternalInterface.call("js函数名",参数:数组);(可以接收返回值)js调asas:ExternalInterface.addCallback("js中使用的函数名(字符串)", as中的函数(函数类型));js:SWF名.js中使用的函数名(参数);对象清理:as中如果某个对象不被使用,且没有任何对... 阅读全文
posted @ 2010-04-16 15:41 钱途无梁 阅读(708) 评论(0) 推荐(0) 编辑
摘要: 本例为Flash AS3.0实例教程,在教程中我们将学习运用SoundMixer.computeSpectrum() 方法来构建简单的声音可视化程序(即波形图),希望能给朋友们带来帮助~~AS3.0构建简单的声音可视化程序(波型图):使用 SoundMixer.computeSpectrum() 方法来显示声音波形图:代码Code highlighting produced by Actipro ... 阅读全文
posted @ 2010-04-16 15:38 钱途无梁 阅读(674) 评论(0) 推荐(0) 编辑
摘要: 制作loading最少需要两帧,这是需要注意的地方,了解loading原理的朋友应该知道。第一帧为loading动画。第二帧为你的内容。下面的代码假设flash有两帧:一开始的时候自动停止第一帧,然后进行loading操作,需要显示进度可以在loadProgress里写你需要的操作,加载完后自己跳到第二帧,并停止。注意的是在main函数里,使用了addFrameScript给动画的第二帧添加了st... 阅读全文
posted @ 2010-04-16 15:31 钱途无梁 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 创建文档类(Document class)  现在我们对类已经了一定的了解,接下来,看看如果真正地使用它。有时候我常说基于 AS 3的 SWF 是多么的重要,这是因为 AS 3 引入了一个全新的概念,文档类(document class)。 一个文档类就是一个继承自 Sprite 或 MovieClip 的类,并作为 SWF 的主类。读取 SWF时,这个文档类的构造函数会被自动调用。它就成为了我们... 阅读全文
posted @ 2010-04-16 15:06 钱途无梁 阅读(1329) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatevarnc:NetConnection=null;privatevarns:NetStream=null;publicfunctionmyPlay(url:String):void{nc... 阅读全文
posted @ 2010-04-16 14:52 钱途无梁 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 今天需要用到随机数,我还以为像java有个随机数类,结果在Math类里面,我需要取的是整数,0-15,取10个,不能重复,代码如下:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--varitn:Array=newArray();while(itn.... 阅读全文
posted @ 2010-04-16 14:49 钱途无梁 阅读(796) 评论(0) 推荐(0) 编辑
摘要: http://hi.baidu.com/xwx520/blog/item/0a13ff4b689762fb82025c84.html 阅读全文
posted @ 2010-04-16 14:10 钱途无梁 阅读(427) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 89 下一页