[flexcoders] Re: multiple/seperate stages; mx:HTML and mx:SWFLoader

2009-04-21 Thread zyzzx00_99
Yeah -- sort of figured this one wouldn't get any traction. Better question: Is there a good community for AIR devs out there? --- In flexcoders@yahoogroups.com, zyzzx00_99 jer...@... wrote: Random question: Does anyone know of a component (air or otherwise), aside from htmlLoader

[flexcoders] Re: Reoading a view from a viewstack

2009-04-20 Thread zyzzx00_99
geoff is dead on. There are a probably 100 ways to do what you want done. states/transitions, event listeners, adding and removing the children via actionscript and leaving in your initApp(). But, yeah, the least amnt of code (depending on the framework you're using) would probably be adding

[flexcoders] multiple/seperate stages; mx:HTML and mx:SWFLoader

2009-04-20 Thread zyzzx00_99
Random question: Does anyone know of a component (air or otherwise), aside from htmlLoader or html (or anything that extends/uses flash.html stuff that uses webkit), that would render a swf on a seperate Stage? The HTML component is almost perfect, but known bugs are the real annoyance...

[flexcoders] Re: WindowShade container / Multi-Accordion

2009-04-20 Thread zyzzx00_99
If I wanted to try to solve this one in a hurry (and quickly is always best, right?), I'd write a class that extended container, or maybe even Canvas or VBox, depending on... and use WindowShade components as children. Listen for the resize event in your children (which will be in your

[flexcoders] Re: Stack overflow

2009-04-20 Thread zyzzx00_99
Your method works fine for me. The problem is most likely that you're passing in an XMLNode in to objectToXML and you're getting into a loop inside of encodeValue. Debug and start hitting f5 and f6 down the chain of the framework if you really want to understand it. Otherwise just say

[flexcoders] Re: Stack overflow

2009-04-20 Thread zyzzx00_99
I like how I responded two hours before Tracy and it just now appeared Whatever. The other thing is that you could have a memory reference loop. How are you calling the function? --- In flexcoders@yahoogroups.com, zyzzx00_99 jer...@... wrote: Your method works fine for me

[flexcoders] Re: external swf inside an AIR HTML component right click issues.

2009-01-28 Thread zyzzx00_99
. --- In flexcoders@yahoogroups.com, zyzzx00_99 jer...@... wrote: I have the strangest AIR issue that I've never seen. Right clicking on a TextInput sets focus to the TextInput directly above the component. (There are two 'stages' involved, and it is a javascript + HTML component issue

[flexcoders] external swf inside an AIR HTML component right click issues.

2009-01-27 Thread zyzzx00_99
I have the strangest AIR issue that I've never seen. Right clicking on a TextInput sets focus to the TextInput directly above the component. (There are two 'stages' involved, and it is a javascript + HTML component issue). I'm using SDK 3.0.2.214193 (I'm sure there's an update, but all of our

[flexcoders] Re: NaN and Infinity showing in output - How to modify?

2008-07-31 Thread zyzzx00_99
to possibly help in the vague understanding, the ()?: stuff is an inline if statement. (mynum maxval) ? is like saying If mynum is greater than maxval. : is the else. re your errors: from eyeballing everything, numberformatter.format returns a string (control click into .format in flexbuilder

[flexcoders] Re: Load Complete on tilelist

2008-07-31 Thread zyzzx00_99
Really? Why can't you just use the result event and set result=functionName on HTTPService? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You'l lhave to write that method yourself. Listen for complete events from the image controls

[flexcoders] Re: Overriding function not marked for override?

2008-07-31 Thread zyzzx00_99
If you need to override functions in framework components that are private (or what have you), why not just copy all of the code from that component and make your own? Sure, future functionality might be in-the-air, but for Flex3 stuff certain off-limits stuff is sometimes needed. --- In

[flexcoders] Re: Free Flex Gauge Component

2008-07-29 Thread zyzzx00_99
looks a lot like your Degrafa gauge. We use it at Woodword Governor's internal toolset: http://www.brightpointinc.com/FlexDemos/degrafagauge/degrafagaugesample.html

[flexcoders] Re: numericStepper as an itemRenderer

2008-07-24 Thread zyzzx00_99
oops. I left our international language class in there. Take out the ULang jive inside of the headerText. --- In flexcoders@yahoogroups.com, zyzzx00_99 [EMAIL PROTECTED] wrote: Hey all. I have a numeric stepper and would like to set the max value from another data.field. Certainly

[flexcoders] numericStepper as an itemRenderer

2008-07-24 Thread zyzzx00_99
Hey all. I have a numeric stepper and would like to set the max value from another data.field. Certainly there are dozens of code-around fixes for problems like these, but it seems like this should work: (I'm copying and pasting code form a project I'm working on and with the init function I'm