Here’s how to embed collada files into your Flex.
1
2
3
4
5
6
7
[Embed(source="collada.dae", mimeType="application/octet-stream")]
private var Model3D:Class;
var byteArray:ByteArray = new Model3D();
var collada:DAE = new DAE();
collada.load(byteArray, material);
scene.addChild(collada);
[Read more →]
Tags:actionscript·embed collada·Flex·mimetype
In order to change the mouse cursor to a hand cursor when a mouse over a particular component in Flex Component you will need to set useHandCursor = true , however if you set this to true you will not be able to get the hand cursor unless you set another two properties on the [...]
[Read more →]
Tags:actionscript·Flex·hand cursor·mouse cursor