[Flashcoders] Dynamic motion path

2009-10-02 Thread Karl DeSaulniers
Hello list, Is it possible to create a dynamic motion path for a dynamic image? And is there a way to put a tween on it? I am working in AS2, but may be able to convert an AS3 suggestion. Thanks, Karl DeSaulniers Design Drumm http://designdrumm.com

Re: [Flashcoders] Dynamic motion path

2009-10-02 Thread Glen Pike
Hi, You might want to look at something like this: http://www.airtightinteractive.com/news/?p=38 I think I googled dynamic bezier tween... Glen Karl DeSaulniers wrote: Hello list, Is it possible to create a dynamic motion path for a dynamic image? And is there a way to put a tween on it? I

Re: [Flashcoders] [MEMORY LEAK]

2009-10-02 Thread Muzak
I'd say, keep the loader instance (instead of creating a new one each time) and unload the loader content (the swf) using Loader.unloadAndStop. http://kb2.adobe.com/cps/403/kb403670.html http://www.gskinner.com/blog/archives/2008/07/additional_info.html regards, Muzak - Original Message

Re: [Flashcoders] Dynamic motion path

2009-10-02 Thread Muzak
http://www.google.com/search?hl=enq=bezier+curve+tweenaq=foq=aqi= - Original Message - From: Glen Pike g...@engineeredarts.co.uk To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, October 02, 2009 12:11 PM Subject: Re: [Flashcoders] Dynamic motion path Hi, You

Re: [Flashcoders] ASDoc Help

2009-10-02 Thread Samuel Adu
Hey Pedro, Adsoc simply creates XML from your class documentation and then transforms the XML to HTML using XSL. You'll see all of the XSL files in $FLEX_HOME/asdoc/templates - So modifying those will change your output. You can see what the xml looks like by passing the undocumented -keep-xml

Re: [Flashcoders] Dynamic motion path

2009-10-02 Thread Ivan Dembicki
Hello Karl, http://bezier.ru/wp-content/uploads/2008/06/bezier.swf?demo=7 http://code.google.com/p/bezier/ -- iv http://www.bezier.ru http://bezier.googlecode.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] List Comopnent - variable cell heights?

2009-10-02 Thread Allan Evans
I am successfully using a List component and a custom CellRenderer (actually a MovieClip that implements ICellRenderer) to display content. Now I am faced with the possibility of the MC that I use for my CellRenderer having a variable height based on text content. I have not found a way to

RE: [Flashcoders] [MEMORY LEAK]

2009-10-02 Thread TS
Muzak, I've got that already. function timerHandler(event:TimerEvent):void { trace(this.removeChildAt(0)); // remove loaded swf from display list mLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, onCompleteHandler);

Re: [Flashcoders] [MEMORY LEAK]

2009-10-02 Thread Muzak
All you need is: function timerHandler(event:TimerEvent):void { mLoader.unloadAndStop(); startLoad(); trace(timerHandler: + event); } - Original Message - From: TS sunnrun...@gmail.com To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com Sent: Friday, October 02, 2009 9:27 PM

Re: [Flashcoders] shared objects as a sort of scratch disk file

2009-10-02 Thread Ktu
I like the sound of that. It certainly seems like something someone should look into. I'm not great with checking speed in code, but I want to try to look into that. I'm interested in what types of applications would benefit from it. Can you share anything about yours? Ktu [k-two] On Wed, Sep