... Thanks Alex. Actually, the solution turned out to be even more fundamental. Highlighting the character with my mouse cursor showed that the character...
If you are strict about only referring to methods/properties through IUserModel and IChildUserModel and not the concrete classes then I don't see that you have...
If I were using a headerrenderer it might, but I am not. How do I get at the instances of the default renderers or do I have to implement renderers to get a...
I don't know how everyone else here feels, but I HATE the idea of being sold things on this board. I find it is selfish and lowers the tone and value...
... You should probably check the type at runtime e.g... if (user is ChildUserModel1) if (user is IChildUserModel1) ... i think this is a solid approach in...
Johannes Nel
johannes.nel@...
Jan 1, 2008 5:11 pm
97742
Hello, I'm attempting to write a fillFunction for use with a plotChart that color codes dots based upon the value on a third field. For example, a plot chart...
Thanks for the good information! I'll go ahead and give it a shot and add in your suggestions as well. When I said it "becomes" an IChildUserModel class, this...
Aaron Miller
amiller@...
Jan 1, 2008 5:34 pm
97744
A session is established automatically when you make a request to the ASP.NET app on the IIS server, so I am not certain what you mean by "define a session."...
This compiles but when you hit the test button, it says TypeError: Error #1009: Cannot access a property or method of a null object reference. at Main/test() ...
Moderation should have caught this one, someone may have bulk approved and not noticed… From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]...
Just a thought, do you really need all these subclasses? With a bit of creativity, and a little less purity, could you just roll them all into a single class...
Thanks for the clarification on that. I sort of figured it out after I realized that styleName can be either a String or a CSSStyleDeclaration. I've only ever...
Hello, I'm using some images of different sizes to test speed of the internet connection. How can I clear (or prevent cacheing) from cache just that 5 images ?...
Does anyone know of a basic open source video (flv) player for flex? Not like Miro, which scours the net for vidoes etc etc etc. Just something that plays flv...
you forgot to instantiate the object. Change: var test:testClass; to var test:testClass = new testClass(); and it should work. Regards, Frederico Garcia On...
You can look into the VideoDisplay component. It is about as basic as it gets (no controls). However, you could easily create your own controls for it. ... ...
i am facing trobule about selcting framework to be used in flex application shuold i use Flex/Struts or shuold i go for flex with caringorm framework or any...
yourName
parjan@...
Jan 2, 2008 7:05 am
97756
Hi, I have a flex application about 2M in size, I noticed that once downloaded, if i press the "REFRESH" button of the IE. The loading bar appears, and seems...
I have a form I use for login into which my users type their username and password. Does anyone know of a way of using the browser autofill to populate form...
Hi all I'm just relaying this message from http://www.bytearray.org This issue realy needs to bee pointed out for adobe so we can create the best RIA. Here is...
Posted a response to another responder in the thread... I have vastly simplified the application source to focus on the problem and what I find is that my...
You're missing the coordinates of your text boxes. A canvas arranges children by exact coordinates (default 0, 0). Look at the HBox / VBox controls if you want...
Hi, I've got a datagrid with a custom renderer. I'm not editing in the datagrid, but when a row is selected, I populate some TextInputs and ComboBoxes to let...