FlashIDE色彩效果面板的秘密

2012年12月15日 没有评论

美术喜欢调整MC(MovieClip)的属性面板里的色彩效果选项来修改MC的效果.其实Flash IDE里色彩效果面板的所有调整都可以通过 ColorTransform 类实现同样的效果.这样我们就能动态显示美术调好的效果。
阅读全文...

jsfl 在Flash CS5中选择图形

2010年7月25日 没有评论

在Flash IDE里做一些重复劳动用jsfl是个很好的解决办法,这里有中文帮助
当然也可以配合Flash的历史面板来学习(Ctrl+F10 或者 Window=>Other Panels=>History)
不过这个也不是全都能用的,在不同的Flash 版本上也会出现不同的灵异事件。

fl.getDocumentDOM().selection 选择图形

先在flash里画一个简单图形(选中后会出现类似下图的网状遮罩)

flash-shape.jpg

// 选中舞台上所有对象
fl.getDocumentDOM().selectAll();
// 获取选中对象数组
var arr = fl.getDocumentDOM().selection;
// 取消选择
fl.getDocumentDOM().selectNone();
// 设置选中对象为刚获取的对象数组,
// 但是这个操作在Flash CS5里会忽略 简单图形(Shape,不是组,也不是绘制对象)
// 在Flash CS4里却没有这样的问题
fl.getDocumentDOM().selection = arr;
标签: ,

Flash CS4 优化补丁

2009年6月6日 没有评论

连接地址:http://www.adobe.com/support/flash/downloads.html
Adobe Flash CS4 Professional Update (10.0.2) 05/13/2009 This update for Flash CS4 Professional (10.0.2) addresses issues related to compiling large projects. Specifically, it addresses stability and performance issues related to large animation files, such as timeline scrubbing and looping and nested movie clips, as well as text handling. For more details, read the technote. For more about this update from Richard Galvan, product manager for Adobe Flash Professional, visit Richard Galvan's blog. Download the Adobe Flash CS4 Professional update (10.0.2) for all languages:

标签: ,

Flash 关于Java运行时环境初始化时出现错误

2009年6月6日 没有评论

本文转自:http://qzone.qq.com/blog/10505516-1233999141

Flash CS3运行时会提示 Java运行时环境初始化时出现错误 这个是由于缺少JAVA引起的。

解决方法:

  1. 登陆Java下载站点:http://www.java.com/zh_TW/download/index.jsp
  2. 点击“免费Java下载”,跳转到下载页面。解除IE浏览器的Active控件阻挡功能。
  3. 此时会弹出安装Java控件的安全警告。点击“安装”,等待片刻会弹出安装画面,点“下一步”开始安装。耐心等待片刻,Java提示安装完成。进入安装目录,C:\\Program Files\Java\Jre6,将其中的文件复制,在Flash目录下新建一个名为“JVM”的文件夹,将复制的内容全部复制到这个目录。

现在再启动Flash CS4,点击动作面板,动作面板已经可以正常打开了

flash cs4 fl包路径

2009年6月6日 3 条评论

缓动相关
Adobe Flash CS4\Common\Configuration\ActionScript 3.0\projects\Flash\src\

UI组件
Adobe Flash CS4\Common\Configuration\Component Source\ActionScript 3.0\User Interface\

video
Adobe Flash CS4\Common\Configuration\Component Source\ActionScript 3.0\FLVPlayback\

标签: , , ,
回到顶部