theDeSilva.com Andrew de Silva

Embeding Collada files on Flex

August 20th, 2009 · No Comments · Flex

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:···

Creating Hand Cursor for Flex Component

April 6th, 2009 · No Comments · Flex

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:···