Re: [flexcoders] Question about action script components

2005-04-07 Thread Ashley Streb
Just import the classes into one another and use them as appropriate... E.g., // class com.acme.Foo import com.acme.Bar; public class Foo { public function doSomething() { var bar:Bar = new Bar(); bar.performFunction(); } } // class com.acme.Bar import com.acme.Foo; public

Re: [flexcoders] Events and Components

2005-04-04 Thread Ashley Streb
You can bind to the result from the GetResults function directly, flex takes care of generating the binding code for you. (no need to dispatch events) E.g., mx:ComboBox dataProvider={this.parent.Webservice1.GetResults.result}/ Or, if you need to invoke a method with the results mx:ComboBox

Re: [flexcoders] remoteObject error handling

2005-04-02 Thread Ashley Streb
There are a variety of ways of handling results (success or failure) from the server. One way to do it is to assign a function that should be called on either success of failure. Here is the definition of a RemoteObject, and the processing of a failure is assigned to a function that is

[flexcoders] Job Opening

2005-04-02 Thread Ashley Streb
Flex/Flash engineer job opening Brightcove, Inc., a young startup lead by former Macromedia CTO Jeremy Allaire is looking for experienced Flash developers seasoned at building Flex applications to join its engineering team. As a member of this team, you will contribute to the development,

Re: [flexcoders] Reloading of Flex WAR

2005-03-31 Thread Ashley Streb
those to true made it possible for us to reload our web-apps. -ashley Ashley Streb wrote: Howdy, I am unable to undeploy a running Flex web-app from Tomcat. When I undeploy it (using the tomcat ant tasks), tomcat leaves behind the following directory structure: WEB-INF/flex/jars

[flexcoders] Filtering Results from a DataProvider

2005-03-31 Thread Ashley Streb
I wrote a custom data provider that will filter results from a wrapped DataProvider. The idea was that you could plug in different filters; filter on partially typed words, location etc. This custom data provider (FilterDataProvider) extends the mx.control.listclasses.DataProvider class.