[flexcoders] Re: Simple Layout Question

2009-12-01 Thread rinogo2
Thanks so much for your help, James! I had never seen the constraint column/row approach before, so this is super cool. Also, it seems strange to me that the only way to get the 'indent' to be present before the buttons (when inside of the vbox) is with a spacer. Is this the recommended

[flexcoders] Dynamically-Sized ItemRenderers

2010-01-28 Thread rinogo2
Hello! I'm having a hard time figuring out how to dynamically size ItemRenderers in my app. Screenshot: http://img215.imageshack.us/img215/5694/picasathumbslider.jpg This screenshot is from Picasa (not my app), but it demonstrates what I'm trying to do. The thumbnails along the top of the

[flexcoders] How greedy/lazy is the GC?

2010-05-26 Thread rinogo2
Hi, all! I've noticed some odd behavior with my flex/flash applications - it seems that as program execution continues, the flash runtime requires increasingly more memory, even if memory leaks are theoretically eliminated. An example in one of my applications can be observed here:

[flexcoders] Modify binding event

2010-06-09 Thread rinogo2
Hello, all! I have a NumericStepper bound to my data model. I'd like the model to be updated *while* NumericStepper changes (e.g. while the user clicks and holds the 'up' button) instead of only making the change once the stepper loses focus. I have a feeling this requires some use of the

[flexcoders] Re: Modify binding event

2010-06-09 Thread rinogo2
input box and types in a value. The model is only updated once the value is committed (e.g. enter is pressed or the stepper loses focus). However, I'd like the model to be updated on every keypress. Thoughts? Thanks, -Rich --- In flexcoders@yahoogroups.com, rinogo2 warpr...@... wrote: Hello