March 2010
3 posts
Blender 2.5 alpha 2 - Collada export bug
Blender 2.5 is a great application to create 3D stuff. Best of all: its free! Even better: Blender 2.5 alpha 2 seems to have a much enhanced Collada importer/exporter. Blender versions before 2.5 used a python script for import and export. That script was okay, but failed on more complex scenes using rigs / animations. I believe Blender now uses Collada DOM or OpenCOLLADA. But after trying the...
Mar 27th
getDefinitionByName error: "Variable ... is not...
I wrote this post mainly as a reminder for myself, but it might be useful for anybody dealing with the same issue. In ActionScript3 you can get a class by its name like this: import flash.utils.getDefinitionByName; ... var myClass = getDefinitionByName("MyClass") as Class; When you only use the name of the class, you will get an error: “Variable … is not defined”, because the...
Mar 14th
Ant script to build Flex Library project
Ever wondered how to create an Ant build script for a Flex Library project? I did, and although it’s very easy (when you know how) it’s very poorly documented. This is the solution Dusan and I found after some trail and error. Save this script as build.xml in the root of your project, run ant and your project will be build.
Mar 5th