Re: [Flashcoders] Advice on creating nodes on elastic

2008-10-03 Thread Weyert de Boer
You can consider using Birdeye. This should everything you want: http://code.google.com/p/birdeye/ Yours, Weyert ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Advice on creating nodes on elastic

2008-10-03 Thread Karim Beyrouti
To: Flash Coders List Subject: [Flashcoders] Advice on creating nodes on elastic Hiya, I want to create something very similar to visualthesaurus.com, dyamically generating nodes with labels that are linked by elastic. I'm thinking of using the APE from cove.org If anyone can point me in the

Re: [Flashcoders] Advice on creating nodes on elastic

2008-10-03 Thread mike cann
IMO you dont need a third party engine for this. Elastic is an easy property to model programatically. var bindX : Number = 100; var bindY : Number = 100; var x : Number = bindX: var y : Number = bindY; var nodeVelX : Number = 3; var nodeVelY : Number = 2; function update() : void { nodeVelX

[Flashcoders] Advice on creating nodes on elastic

2008-10-03 Thread Ali Drongo
Hiya, I want to create something very similar to visualthesaurus.com, dyamically generating nodes with labels that are linked by elastic. I'm thinking of using the APE from cove.org If anyone can point me in the way of any tutorials/alternative approaches or existing source that would be ama