首先感谢it168的编辑们如此辛劳的工作,这里的内容全部从
http://tech.it168.com/focus/200907/adobetechday/index.shtml
中抄过来的,再次感谢。如果对此有任何疑问…就随便把
大家好,我今天为大家介绍一下Aswing。首先我想问大家一个问题,今天在座的有谁听过Aswing请举手?人很多。有谁用过Aswing来开发项目的呢?人不是很多。我会通过这次演讲为大家带来更多的资料,以及对Aswing更加深刻的讲解。
标签:
adobe,
aswing,
flash player,
Java
很荣幸地得到了天地会和adobe的信赖,得以在7.16这天对aswing进行介绍。这次我讲从总体对aswing进行介绍。关于这次大会的介绍链接:
http://www.adobechinadeveloper.com/developerday/Shanghai/richeng.html
因为是星期四,估计很多朋友都无法参加,我会在演讲结束后把ppt放上来,供大家下载..
标签:
adobe,
aswing,
天地会
首先,我们来审视一下什么人需要使用dropbox。
dropbox是什么?不知道的就先去瞧瞧
http://www.xflex.cn/blog/archive/2009/05/10_tips_to_save_your_time.html
其实dropbox就像一个svn,它也有版本管理,也可以把一个目录共享给人家;
最重要的是,它还带有完善的版本管理,很强悍的访问速度,下载>200K 上传>200K 而且如果服务器已经有存在的文件,你这边就不需要上传了(俗称秒传),这项技术在QQ的超大文件中也有应用;
就是说,如果你以前使用svn来管理自己的文档,代码,现在可以尝试迁移至dropbox,它访问速度相当可以,无需自己搭建svn服务器(当然如果你使用免费的svn服务那无话可说),而且一切都是自动的,不需要自己手动commit和update,一切都是最新的。
我现在主要用在以下三个方面
1.文档的同步和共享
最近adobe tech day的ppt,还有天地会培训的讲义,都是通过它来同步,在公司写一点,在家里写一点,dropbox帮我处理得相当棒。同时共享给协作者,他们要改的话也是很方便的一件事
2.程序的同步
我..把常用的开发工具..eclipse editplus flexsdk flashdeveloper 等等经常用到的都放去dropbox了,90%都是秒传,重装系统什么的,只要再次同步就可以了,程序的设置都保存在自己的文件夹里面,对于我来说实在是太舒坦了
3.代码的同步
其实以前我一直不知道原来dropbox还有版本管理...现在知道了,我决定把我的代码库丢上去,这样也就不会出现家里的代码什么的和公司的不同步的囧况了...
接着下面是推广链接…
https://www.getdropbox.com/referrals/NTExMTE5Mjg5
有需要的人就把它弄去浏览器里面访问,安装客户端就可以了
标签:
adobe,
dropbox,
flash,
FlashDevelop,
天地会
From:
http://blogs.adobe.com/keyframes/2007/10/creating_interactive_video_wit.html

Thanks to all the people who attended my presentations at Max earlier this week! For those of you who weren't there, the project that I presented demonstrates how to combine After Effects and Flash techniques to create a graphically rich video user experience with a dynamically animating heads up display. The final output is a SWF file suitable for a web site.
One of the unique aspects of this example is that the location of the HUD is being dynamically driven by event cue points in the FLV video. The cue point metadata is generated using the motion tracker in After Effects and embedded into the FLV output via the After Effects render queue.
You can watch a recorded version of the presentation to see how the project is built. It's a very thorough demonstration -- about a 40 minutes -- so grab a cup of coffee, a comfy chair, and enjoy the show. It's almost as good as being at Max, except you don't get to hear any of my corny presenter jokes.
You can also download my source files and step-by-step directions to try it out for yourself. (By the way, these two links introduce some new toys that will require the latest Flash player. I'm sharing the video via the Adobe Acrobat Connect which is a great way to collaborate with others online. I posted the files to a new service offered by Adobe called Share. Share was also announced at Max, and allows you to easily share, publish and organize your documents. This is the first time I used the Share beta and it was a piece of cake and incredibly convenient.)
Enjoy!
标签:
adobe,
cue point,
flash player,
metadata
If you encounter problems running the ant builds on vista 64 and see this error in the Flex Builder console:
Error: could not find JRE
Error: could not find Java 2 Runtime Environment.
This may be because you installed the latest 64bit java runtime.
The fix:
- Download the latest x86 version of the Java JRE 1.5 release (1.6+ doesn't seem to work)
- Edit C:\Program Files (x86)\Adobe\Flex Builder 3\sdks\3.2.0\bin\jvm.config
- Set java.home to:
java.home=C:/Program Files (x86)/Java/jre1.5.0_17
Other symptoms that you might encounter include:
Error: could not find a JVM
Error loading: C:/Program Files/Java/jre1.5.0_17\bin\server\jvm.dll
Hope this saves someone some time.
标签:
adobe,
Java,
java runtime,
mxmlc,
x86,
xml
Flash Media Encoder contains a special built-in handler, onFI, that subscribing clients can use in their ActionScript code to access timecode information. The following client-side ActionScript code shows how to get timecode information using the onFI handler. The object ns is the NetStream object. You can get timecode information by accessing the tc member of the info object that is passed as an argument to onFI():
ns.onFI = function(infoObj){
var timecode:String;
for( i in infoObj)
{
if(i == "tc")
timecode = infoObj.tc; //string formatted HH:MM:SS:FF
}
} |
Also see http://74.125.95.104/search?q=cache:rhViejkzZk8J:www.adobe.com/support/documentation/en/flashmediaencoder/2/FME_Timecode_Clientside_Addedum.pdf+%22onFI%22+actionscript&hl=en&ct=clnk&cd=2&gl=us&client=firefox-a
Thanks, Skyler for finding this useful bit of Flash Arcana.
标签:
ActionScript3,
adobe,
Encoder,
flash,
flash media,
Media,
NetrStream
In order to add automation test code into flash projects without affecting them, we can use conditional compilation. It was really new and i think few people know about it.
It’s a very useful option for developing and testing, and easy for us to deploy different edition of product.
标签:
ActionScript3,
adobe,
example,
flash,
news,
practice,
xml