Re: [flexcoders] Automatically flip through 3 charts

2011-09-07 Thread Srinivas Sandur Madhu Murthy
Rishi did you understand what Wesley's question was? Anyways, I guess wesley wants the view stack to show those charts one after the other every 5 seconds automatically! if this is correct then Wesley, you could change the viewstack's selectedIndex every 5 seconds once to other one. Below is a

[flexcoders] Re: Using RemoteClass meta tag

2011-09-07 Thread bhaq1972
I'm doing the same thing as you, I don't even cast my object and it still works. I did do a simple test using [RemoteClass] but I can't remember it sorry. I just saw it as different approaches in achieving the same end result. --- In flexcoders@yahoogroups.com, Nick Middleweek nick@... wrote:

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Nick Middleweek
Douglas, Thanks... So as a rule of thumb, add all children that I know I need up front and show/ hide them using visibility in e.g. onMouseOver/ Out. Or set a dirty flag and then invalidateDisplayList(), then from within updateDisplayList(), check the dirty flags and addChild( x ) in there...

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Nick Middleweek
Alex, Just checking/ thinking... But if I go down the visibility route and addChild( x ) up front in createChildren() would I be consuming more initial memory than if I addChild( x ) as and when I needed it? In my case, I have 15 columns, using the same renderer and 40 rows so that's 600 extra

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread ganaraj p r
With toggling the visibility property you are creating 1 Button per Item Renderer. When you are creating an object each time a user's mouse is over it, and then deleting it when its out, you are creating 'n' number of objects and deleting them , the new objects need to be garbage collected. The

[flexcoders] Re: mx:HTML to display PDF

2011-09-07 Thread markflex2007
May be I need use swc in sdk4.5.1. I want to copy the swc that have mx:HTML to sdk3.2. Can you help me to know which swc I need to copy. Thanks Mark

[flexcoders] Re: mx:HTML to display PDF

2011-09-07 Thread markflex2007
I do the following test HTML.pdfCapability it return 0 when using FB4.5.1 .it return 3202 when using Fx3.why --- In flexcoders@yahoogroups.com, markflex2007 markflex2007@... wrote: May be I need use swc in sdk4.5.1. I want to copy the swc that have mx:HTML to sdk3.2. Can you help me to

[flexcoders] Re: Scrolling a Dynamic Window

2011-09-07 Thread happy dog owner
Boy, this is sure hard to find any information on! Nothing I've tried seems to work and when I google for TitleWindow Resize I just get lots of custom versions of the TitleWindow with resize handles, which is definitely not what I want. I need it to automatically size as the content inside of

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Alex Harui
Yes, it is a set of trade-offs. Deferring until you know you need it is best for memory and startup time, but you have to pay for the adding later. You can cache the button so you don’t always create a new one. You can even share a button between all renderers if you want. On 9/7/11 5:42

[flexcoders] Re: Scrolling a Dynamic Window

2011-09-07 Thread happy dog owner
Yeah, I finally got this figured out! I had to set an explicit height on my scroller component, once I did that it seemed to handle the dynamic content properly. --- Mary Jo --- In flexcoders@yahoogroups.com, happy dog owner maryjo@ wrote: I have a TitleWindow popup with a form

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Nick Middleweek
Alex, That's a good idea... What's your thoughts on approach to implement a shared Button? Would you create it at the parent view level and inject into the IR's using some kind of IFactory or perhaps attach it to the data property? Cheers, Nick On 7 September 2011 17:27, Alex Harui

[flexcoders] Flash Builder 4.5 / Code Folding OsX

2011-09-07 Thread Karim Beyrouti
This one has been bugging me for a while, and did not find anything on google: can't get the shortcut to fold all code and comments to work on OsX ( CDM-SHIFT+/ ). anyone else with the same problem ? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Douglas Knudsen
also keep in mind virtualization use in Lists. Just one more cog in The Wheel That Depends Douglas Knudsen http://www.cubicleman.com this is my signature, like it? On Wed, Sep 7, 2011 at 3:21 PM, Nick Middleweek n...@middleweek.co.ukwrote: ** Alex, That's a good idea... What's your

[flexcoders] Animating an arrow into a target

2011-09-07 Thread valdhor
I have a project where I need to show the progress of a, well, project. The project has seven specific stages that it must pass through. What I would like to do is have an animated arrow move from left to right across the screen until it hits a target on the right side. At any time a user can

[flexcoders] flex time-out Issue...????

2011-09-07 Thread Varun
Hi, I actually want to increase the flex timeout from 15sec to max 60sec. I have tried the following ways. 1)By adding -default-script-timelimit 1000 60 in the Aditional compiler arguments of the project properties - no result. 2)By adding the !-- default-script-limits: default script

[flexcoders] Flex time out issue

2011-09-07 Thread Varun

[flexcoders] Regarding a book

2011-09-07 Thread Adarsh
Hi all i am very new to flex please suggest me which book to follow and which one is best for me...

[flexcoders] License question - recompile old SDK with one piece of new SDK

2011-09-07 Thread mbkairyt
I posted this on the Flex SDK forum but it looks like there's not much activity there, so I am re-posting here for a possible solution. This is a question about the legal obligations under the MPL 1.1, under which the 3.5.0.12683 and 3.6.0.16995 have been released. We just migrated to the 3.5

[flexcoders] Deploying Red5 media server on hosting server

2011-09-07 Thread mulchand12345
Hello All, I have just completed a application which usages the streaming capabilities of Red5 media server. To test this application I had deployed the red5 WAR file on the local tomcat server. Now since the application is ready, I have to host it on a hosting server. But as it requires

Re: [flexcoders] What is the a correct lifecycle phase to add new child components?

2011-09-07 Thread Alex Harui
I think I’d just hack it in. You can probably hang it off of the DG when not used and grab it from there when needed. The parent of the blue focus rectangle is shared among all Flex components in an app. On 9/7/11 12:21 PM, Nick Middleweek n...@middleweek.co.uk wrote: Alex, That's a

Re: [flexcoders] flex time-out Issue...????

2011-09-07 Thread Rishi Tandon
http://www.flashdevelop.org/community/viewtopic.php?f=9t=2881 Sent from my iPhone On Sep 7, 2011, at 9:06 AM, Varun varun8...@gmail.com wrote: Hi, I actually want to increase the flex timeout from 15sec to max 60sec. I have tried the following ways. 1)By adding -default-script-timelimit

Re: [flexcoders] Regarding a book

2011-09-07 Thread Rishi Tandon
Go through the video tutorial first and then live documentIon by adobe is the complete and best learning material. Also install tour de flex for quick demos. Sent from my iPhone On Sep 7, 2011, at 5:59 PM, Adarsh adarsh...@gmail.com wrote: Hi all i am very new to flex please suggest me which