[flexcoders] Typecast a generic Object into a VO

2006-10-23 Thread mdoberenz
I'm pretty sure this is possible, but I can't get it to work. I'm wanting to typecast a generic object that gets returned by a WebService call into a VO, but I'm having some issues. Say I have a VO of the following: public class TestVO{ [Bindable] public var i_test:int; [Bindable] publ

[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread mdoberenz
You'll want to do this... public function removeMe(event:CloseEvent):void { PopUpManager.removePopUp(event.currentTarget as DisplayObject); } Should work... By the way, I'd suggest not using a TitleWindow, but instead, use a Panel. I noticed that I can move the TitleWindow around wher

[flexcoders] mx.managers::HistoryManager$/save -- null has no properties

2006-04-18 Thread mdoberenz
I've been having some issues lately with the HistoryManager object lately. I'm using some TabNavigators to display different pieces of information. Some of the tabs have objects inside them that are created using AS, and they're based on custom components that I've made. Sometimes when I try

[flexcoders] Re: Updating and Retriving Data From XML File FLEX 2

2006-04-17 Thread mdoberenz
--- In flexcoders@yahoogroups.com, Faisal Abid <[EMAIL PROTECTED]> wrote: > > Tracy Spratt wrote: > > In case you missed it, I posted a sample done in 1.5 that may help. It > > is under the subject, "1.5 Sample App to read,edit and save XML file" > > > > Tracy > > > > -Original Message-

[flexcoders] Re: Updating and Retriving Data From XML File FLEX 2

2006-04-17 Thread mdoberenz
--- In flexcoders@yahoogroups.com, Faisal Abid <[EMAIL PROTECTED]> wrote: > > Does anyone know how to retrive and update data from an XML file in Flex 2?? > You can retrieve data from an XML file using a HTTPService object. However, I'm not sure if it's as easy to update an XML file. I'm plan