RE: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-27 Thread Tracy Spratt
Yes.  I typically centralize all of my data within a model.  Using the
singleton pattern makes this very convenient.

 

One more option is to use the AsyncToken to make data available in the
result handler.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Angelo Anolin
Sent: Wednesday, August 26, 2009 2:06 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Function and Web Service ResultHandler
Question

 

  

Hi Tracy,

Thanks for the input.

How can I then pass some objects and variables to the ResultHandler which I
have made some modifications prior to calling the web service operation?

Would my last resort be on declaring variables and objects that would be
visible across the whole application?

Thanks and regards,

Angelo

 

  _  

From: Tracy Spratt tr...@nts3rd.com
To: flexcoders@yahoogroups.com
Sent: Wednesday, 26 August, 2009 12:53:31
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler
Question

  

You will have to initiate your further operations from the result handler.
There is no other way.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009 9:54 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Flex Function and Web Service ResultHandler Question

 

  

Hi FlexCoders,

 

Needing your input on the following:

 

I have created a function for the dragevent of a list.

 

Code is as follows:

 

private function myFunction(evt: DragEvent) :void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus( nameID);
 
 Alert.show(String( _xmlGetStatus) , 'myFunction' );
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}

 

private function getStatusResultHand ler(event: ResultEvent) :void
{
 _xmlGetStatus = XML(event.result) ;
 Alert.show(String( _xmlGetStatus) , 'getStatusResultHan dler');
}

 

The result handler for the GetStatus web service operation populates an XML
variable which I declared on top of the script (i.e. private var
_xmlGetStatus: XML;).

 

When I run my application, myFunction executes but the alert that is shown
first is the one in the function myFunction, instead of the one in the
result handler.

 

I need to use the values in the XML variable _xmlGetStatus for further
operations in function myFunction, but then the value is not populated right
away.

 

Any way to handle this?

 

Thanks and regards,

Angelo

 

 





RE: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-27 Thread Tracy Spratt
It is simply a different way of thinking.  Whatever you need to do, you can
do within the constraints of the async/non-blocking coding paradigm.

 

This is a hurdle that almost all new Flex developers must get over.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Angelo Anolin
Sent: Wednesday, August 26, 2009 10:09 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Function and Web Service ResultHandler
Question

 

  

Hi Tracy,

You mentioned that this is the only way...

But doesn't this kind of programming limits what the developer could
actually do?

I mean for example, you have coded in the dragDrop event of a list control.
In the said event, you need to get some data through a web service.  The
whole operation is dependent on the event handler for the dragdrop.  If you
would only be allowed to process the operations further in the result
handler of the web service, how could you then utilize the event which was
the parameter in your dragdrop event?

I think this question also goes the same for the Alert.show function where
the result handler deviates from the function/event with which it was
executed.  If the continuation of execution would be on the Alert handler,
it would be quite tedious on the part of the developer to be able to gather
the variables/objects/handlers from the original function/event.

I am pretty sure Adobe / Flex team has thought about this but I may be doing
things wrong.  So I would appreciate everyone's input.  I am in a bind right
now cause this limitation(?) hampers me from being a lot more productive
with Flex.

Thanks.

Angelo

 

  _  

From: Tracy Spratt tr...@nts3rd.com
To: flexcoders@yahoogroups.com
Sent: Wednesday, 26 August, 2009 12:55:18
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler
Question

  

You will have to initiate your further operations from the result handler.
There is no other way.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009 9:54 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Flex Function and Web Service ResultHandler Question

 

  

Hi FlexCoders,

 

Needing your input on the following:

 

I have created a function for the dragevent of a list.

 

Code is as follows:

 

private function myFunction(evt: DragEvent) :void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus( nameID);
 
 Alert.show(String( _xmlGetStatus) , 'myFunction' );
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}

 

private function getStatusResultHand ler(event: ResultEvent) :void
{
 _xmlGetStatus = XML(event.result) ;
 Alert.show(String( _xmlGetStatus) , 'getStatusResultHan dler');
}

 

The result handler for the GetStatus web service operation populates an XML
variable which I declared on top of the script (i.e. private var
_xmlGetStatus: XML;).

 

When I run my application, myFunction executes but the alert that is shown
first is the one in the function myFunction, instead of the one in the
result handler.

 

I need to use the values in the XML variable _xmlGetStatus for further
operations in function myFunction, but then the value is not populated right
away.

 

Any way to handle this?

 

Thanks and regards,

Angelo

 

 





Re: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-27 Thread Angelo Anolin
Hi Tracy,

Thanks for the insight.

I think this is one big hurdle (and one which would prevent some developers 
from embracing Flex).

I am already getting used to Flex, but only for those which comprises of only 
single transactional call to the database.

I still can't think of a way like to get through this:

myFunction(evt:dragDrop)
{
  // Check if data passes validation.  If not, confirm from user if proceed
  Alert.show('Proceed?', '', Alert.Yes | Alert.No, alertHandler);
  
  // If Yes was pressed, then should do something here, else call the 
preventDefault
}


But since after the alert, the conditional script is executed on the alert 
Handler event, how would I be able to reference or make a call for 
evt.preventDefault which is only visible in the myFunction?

*Sigh*

I need to get over / hurdle this... 

Regards,

Angelo



From: Tracy Spratt tr...@nts3rd.com
To: flexcoders@yahoogroups.com
Sent: Thursday, 27 August, 2009 14:45:16
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler Question

  
It is simply a different way of thinking. 
Whatever you need to do, you can do within the constraints of the 
async/non-blocking
coding paradigm.
 
This is a hurdle that almost all new Flex
developers must get over.
 
Tracy Spratt,
Lariat Services, development services
available


 
From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On 
Behalf Of Angelo Anolin
Sent: Wednesday, August 26, 2009
10:09 AM
To: flexcod...@yahoogro ups.com
Subject: Re: [flexcoders] Flex
Function and Web Service ResultHandler Question
 
  
Hi Tracy,

You mentioned that this is the only way...

But doesn't this kind of programming limits what the developer could actually
do?

I mean for example, you have coded in the dragDrop event of a list
control.  In the said event, you need to get some data through a web
service.  The whole operation is dependent on the event handler for the
dragdrop.  If you would only be allowed to process the operations further
in the result handler of the web service, how could you then utilize the event
which was the parameter in your dragdrop event?

I think this question also goes the same for the Alert.show function where the
result handler deviates from the function/event with which it was
executed.  If the continuation of execution would be on the Alert handler,
it would be quite tedious on the part of the developer to be able to gather the
variables/objects/ handlers from the original function/event.

I am pretty sure Adobe / Flex team has thought about this but I may be doing
things wrong.  So I would appreciate everyone's input.  I am in a
bind right now cause this limitation(? ) hampers me from being a lot more
productive with Flex.

Thanks.

Angelo
 


 
From:Tracy Spratt
tr...@nts3rd. com
To: flexcod...@yahoogro ups.com
Sent: Wednesday, 26 August, 2009
12:55:18
Subject: RE: [flexcoders] Flex
Function and Web Service ResultHandler Question

  
You will have to initiate your “further
operations” from the result
handler.  There is no other way.
 
Tracy Spratt,
Lariat Services, development services available


 
From:flexcod...@yahoogro ups.com [mailto:
flexcod...@yahoogro ups.com ] On Behalf Of Angelo
Anolin
Sent: Tuesday, August 25, 2009
9:54 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Flex
Function and Web Service ResultHandler Question
 
  
Hi
FlexCoders,
 
Needing
your input on the following:
 
I
have created a function for the dragevent of a list.
 
Code
is as follows:
 
private
function myFunction(evt: DragEvent) :void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus( nameID);
 
 Alert.show(String( _xmlGetStatus) , 'myFunction' );
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}
 
private
function getStatusResultHand ler(event: ResultEvent) :void
{
 _xmlGetStatus = XML(event.result) ;
 Alert.show(String( _xmlGetStatus) , 'getStatusResultHan dler');
}
 
The
result handler for the GetStatus web service operation populates an XML
variable which I declared on top of the script (i.e. private var _xmlGetStatus:
XML;).
 
When
I run my application, myFunction executes but the alert that is shown first is
the one in the function myFunction, instead of the one in the result handler.
 
I
need to use the values in the XML variable _xmlGetStatus for further operations
in function myFunction, but then the value is not populated right away.
 
Any
way to handle this?
 
Thanks
and regards,
Angelo
 
 
   


  

RE: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-27 Thread Tracy Spratt
Apply event.prevent default always, store any necessary information in a
model, then in the result handler, update the dataProvider or not.

 

Sure, there are always trade-offs.  You could develop in C++ and you would
not have this problem.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Angelo Anolin
Sent: Thursday, August 27, 2009 4:51 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Function and Web Service ResultHandler
Question

 

  

Hi Tracy,

Thanks for the insight.

I think this is one big hurdle (and one which would prevent some developers
from embracing Flex).

I am already getting used to Flex, but only for those which comprises of
only single transactional call to the database.

I still can't think of a way like to get through this:

myFunction(evt:dragDrop)
{
  // Check if data passes validation.  If not, confirm from user if proceed
  Alert.show('Proceed?', '', Alert.Yes | Alert.No, alertHandler);
  
  // If Yes was pressed, then should do something here, else call the
preventDefault
}


But since after the alert, the conditional script is executed on the alert
Handler event, how would I be able to reference or make a call for
evt.preventDefault which is only visible in the myFunction?

*Sigh*

I need to get over / hurdle this... 

Regards,

Angelo

  _  

From: Tracy Spratt tr...@nts3rd.com
To: flexcoders@yahoogroups.com
Sent: Thursday, 27 August, 2009 14:45:16
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler
Question

  

It is simply a different way of thinking.  Whatever you need to do, you can
do within the constraints of the async/non-blocking coding paradigm.

 

This is a hurdle that almost all new Flex developers must get over.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On
Behalf Of Angelo Anolin
Sent: Wednesday, August 26, 2009 10:09 AM
To: flexcod...@yahoogro ups.com
Subject: Re: [flexcoders] Flex Function and Web Service ResultHandler
Question

 

  

Hi Tracy,

You mentioned that this is the only way...

But doesn't this kind of programming limits what the developer could
actually do?

I mean for example, you have coded in the dragDrop event of a list control.
In the said event, you need to get some data through a web service.  The
whole operation is dependent on the event handler for the dragdrop.  If you
would only be allowed to process the operations further in the result
handler of the web service, how could you then utilize the event which was
the parameter in your dragdrop event?

I think this question also goes the same for the Alert.show function where
the result handler deviates from the function/event with which it was
executed.  If the continuation of execution would be on the Alert handler,
it would be quite tedious on the part of the developer to be able to gather
the variables/objects/ handlers from the original function/event.

I am pretty sure Adobe / Flex team has thought about this but I may be doing
things wrong.  So I would appreciate everyone's input.  I am in a bind right
now cause this limitation(? ) hampers me from being a lot more productive
with Flex.

Thanks.

Angelo

 

  _  

From: Tracy Spratt tr...@nts3rd. com
To: flexcod...@yahoogro ups.com
Sent: Wednesday, 26 August, 2009 12:55:18
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler
Question

  

You will have to initiate your further operations from the result handler.
There is no other way.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009 9:54 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Flex Function and Web Service ResultHandler Question

 

  

Hi FlexCoders,

 

Needing your input on the following:

 

I have created a function for the dragevent of a list.

 

Code is as follows:

 

private function myFunction(evt: DragEvent) :void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus( nameID);
 
 Alert.show(String( _xmlGetStatus) , 'myFunction' );
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}

 

private function getStatusResultHand ler(event: ResultEvent) :void
{
 _xmlGetStatus = XML(event.result) ;
 Alert.show(String( _xmlGetStatus) , 'getStatusResultHan dler');
}

 

The result handler for the GetStatus web service operation populates an XML
variable which I declared on top of the script (i.e. private var
_xmlGetStatus: XML;).

 

When I run my application, myFunction executes but the alert that is shown
first is the one in the function myFunction, instead of the one in the
result handler.

 

I need to use

Re: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-26 Thread Angelo Anolin
Hi Tracy,

Thanks for the input.

How can I then pass some objects and variables to the ResultHandler which I 
have made some modifications prior to calling the web service operation?

Would my last resort be on declaring variables and objects that would be 
visible across the whole application?

Thanks and regards,

Angelo





From: Tracy Spratt tr...@nts3rd.com
To: flexcoders@yahoogroups.com
Sent: Wednesday, 26 August, 2009 12:53:31
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler Question

  
You will have to initiate your “further
operations” from the result
handler.  There is no other way.
 
Tracy Spratt,
Lariat Services, development services
available


 
From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On 
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009
9:54 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Flex
Function and Web Service ResultHandler Question
 
  
Hi FlexCoders,
 
Needing your input on the following:
 
I have created a function for the dragevent of a
list.
 
Code is as follows:
 
private function myFunction(evt: DragEvent) :void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus( nameID);
 
 Alert.show(String( _xmlGetStatus) , 'myFunction' );
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}
 
private function getStatusResultHand ler(event: ResultEvent)
:void
{
 _xmlGetStatus = XML(event.result) ;
 Alert.show(String( _xmlGetStatus) , 'getStatusResultHan dler');
}
 
The result handler for the GetStatus web service
operation populates an XML variable which I declared on top of the script (i.e.
private var _xmlGetStatus: XML;).
 
When I run my application, myFunction executes but
the alert that is shown first is the one in the function myFunction, instead of
the one in the result handler.
 
I need to use the values in the XML variable
_xmlGetStatus for further operations in function myFunction, but then the value
is not populated right away.
 
Any way to handle this?
 
Thanks and regards,
Angelo
 
   


  

Re: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-26 Thread Angelo Anolin
Hi Tracy,

You mentioned that this is the only way...

But doesn't this kind of programming limits what the developer could actually 
do?

I mean for example, you have coded in the dragDrop event of a list control.  In 
the said event, you need to get some data through a web service.  The whole 
operation is dependent on the event handler for the dragdrop.  If you would 
only be allowed to process the operations further in the result handler of the 
web service, how could you then utilize the event which was the parameter in 
your dragdrop event?

I think this question also goes the same for the Alert.show function where the 
result handler deviates from the function/event with which it was executed.  If 
the continuation of execution would be on the Alert handler, it would be quite 
tedious on the part of the developer to be able to gather the 
variables/objects/handlers from the original function/event.

I am pretty sure Adobe / Flex team has thought about this but I may be doing 
things wrong.  So I would appreciate everyone's input.  I am in a bind right 
now cause this limitation(?) hampers me from being a lot more productive with 
Flex.

Thanks.

Angelo





From: Tracy Spratt tr...@nts3rd.com
To: flexcoders@yahoogroups.com
Sent: Wednesday, 26 August, 2009 12:55:18
Subject: RE: [flexcoders] Flex Function and Web Service ResultHandler Question

  
You will have to initiate your “further
operations” from the result
handler.  There is no other way.
 
Tracy Spratt,
Lariat Services, development services
available


 
From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On 
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009
9:54 PM
To: flexcod...@yahoogro ups.com
Subject: [flexcoders] Flex
Function and Web Service ResultHandler Question
 
  
Hi FlexCoders,
 
Needing your input on the following:
 
I have created a function for the dragevent of a
list.
 
Code is as follows:
 
private function myFunction(evt: DragEvent) :void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus( nameID);
 
 Alert.show(String( _xmlGetStatus) , 'myFunction' );
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}
 
private function getStatusResultHand ler(event: ResultEvent)
:void
{
 _xmlGetStatus = XML(event.result) ;
 Alert.show(String( _xmlGetStatus) , 'getStatusResultHan dler');
}
 
The result handler for the GetStatus web service
operation populates an XML variable which I declared on top of the script (i.e.
private var _xmlGetStatus: XML;).
 
When I run my application, myFunction executes but
the alert that is shown first is the one in the function myFunction, instead of
the one in the result handler.
 
I need to use the values in the XML variable
_xmlGetStatus for further operations in function myFunction, but then the value
is not populated right away.
 
Any way to handle this?
 
Thanks and regards,
Angelo
 
   


  

RE: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-25 Thread Tracy Spratt
You will have to initiate your further operations from the result handler.
There is no other way.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009 9:54 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Function and Web Service ResultHandler Question

 

  

Hi FlexCoders,

 

Needing your input on the following:

 

I have created a function for the dragevent of a list.

 

Code is as follows:

 

private function myFunction(evt:DragEvent):void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus(nameID);
 
 Alert.show(String(_xmlGetStatus), 'myFunction');
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}

 

private function getStatusResultHandler(event:ResultEvent) :void
{
 _xmlGetStatus = XML(event.result);
 Alert.show(String(_xmlGetStatus), 'getStatusResultHandler');
}

 

The result handler for the GetStatus web service operation populates an XML
variable which I declared on top of the script (i.e. private var
_xmlGetStatus:XML;).

 

When I run my application, myFunction executes but the alert that is shown
first is the one in the function myFunction, instead of the one in the
result handler.

 

I need to use the values in the XML variable _xmlGetStatus for further
operations in function myFunction, but then the value is not populated right
away.

 

Any way to handle this?

 

Thanks and regards,

Angelo

 





RE: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-25 Thread Tracy Spratt
You will have to initiate your further operations from the result handler.
There is no other way.

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Angelo Anolin
Sent: Tuesday, August 25, 2009 9:54 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Function and Web Service ResultHandler Question

 

  

Hi FlexCoders,

 

Needing your input on the following:

 

I have created a function for the dragevent of a list.

 

Code is as follows:

 

private function myFunction(evt:DragEvent):void
{
 var nameID:String = 'Angelo';
 
 // Call a webservice operation here
 ws.GetStatus(nameID);
 
 Alert.show(String(_xmlGetStatus), 'myFunction');
 
 // I need to use the _xmlGetStatus here...
 // But the _xmlGetStatus is NULL?
 // Although in the Result Handler, it is not NULL.
}

 

private function getStatusResultHandler(event:ResultEvent) :void
{
 _xmlGetStatus = XML(event.result);
 Alert.show(String(_xmlGetStatus), 'getStatusResultHandler');
}

 

The result handler for the GetStatus web service operation populates an XML
variable which I declared on top of the script (i.e. private var
_xmlGetStatus:XML;).

 

When I run my application, myFunction executes but the alert that is shown
first is the one in the function myFunction, instead of the one in the
result handler.

 

I need to use the values in the XML variable _xmlGetStatus for further
operations in function myFunction, but then the value is not populated right
away.

 

Any way to handle this?

 

Thanks and regards,

Angelo

 





Re: [flexcoders] Flex Builder 2 web application use of flash.filesystem.filestream

2007-11-25 Thread Peter Hall
The flash.filesystem.* package is not supported in the browser-based
Flash plugin.

Peter


On Nov 24, 2007 12:08 PM, eogreen71 [EMAIL PROTECTED] wrote:






 Does anyone know how to get a Flex Builder 2 web application to use
  (have compile and runtime access to) flash.filesystem.filestream?

  It works for me in Flex Builder 3 with an AIR application, but, I
  can't get the Flex Builder 2 non-AIR application to run correctly.

  I am getting: Verify: Error #1404: Class flash.filesystem.FileStream
  could not be found at runtime in my browser's flash9 player.

  Any advice is greatly appreciated.

  


RE: [flexcoders] Flex 1.x web-service and out-parameters

2005-11-11 Thread Mink, Joseph





You will probably need to copy your "out parameters" to 
variables defined in the script section of your MXML 
document.


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of knly 
browneSent: Friday, November 11, 2005 10:01 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex 1.x web-service 
and out-parameters
If i call a web-service that has out parameters..how do i access 
those out parameters when the web-service call returnes.Thanks-- Kenlie BrowneSoftware Developer 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Flex on the Web

2005-05-20 Thread Rich Tretola
http://www.everythingflex.com/blog/1/2005/05/SherminWilliams.cfm

Rich

On 5/19/05, Michel Jansen [EMAIL PROTECTED] wrote:
 LS,
 
 I am looking for Flex application on the Web. Can anynone send me some
 URL's where i can find them? It looks like most of the RIA's in
 production on the Web are build with Flash, BackBase and/or Laszlo.
 
 Please enlighten me...
 
 Michel
 
 
 
 Yahoo! Groups Links
 
 
 
 
 
 



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex on the Web

2005-05-19 Thread Jeff Tapper
There are several listed on cflex.net.

At 07:06 AM 5/19/2005, you wrote:
LS,

I am looking for Flex application on the Web. Can anynone send me some
URL's where i can find them? It looks like most of the RIA's in
production on the Web are build with Flash, BackBase and/or Laszlo.

Please enlighten me...

Michel


--
Yahoo! Groups Links
* To visit your group on the web, go to:
* 
 http://groups.yahoo.com/group/flexcoders/http://groups.yahoo.com/group/flexcoders/
  

*
* To unsubscribe from this group, send an email to:
* 
 mailto:[EMAIL PROTECTED][EMAIL PROTECTED] 

*
* Your use of Yahoo! Groups is subject to the 
 http://docs.yahoo.com/info/terms/Yahoo! Terms of Service.



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex on the Web

2005-05-19 Thread Allen Manning





Hello Michel,

The examples on the Macromedia Flex Development centre is a 
start:
http://www.macromedia.com/devnet/flex/example_apps.html

HTH,
Allen

  
  

  


  

  Allen 
Manning, Technical Director 

  Prismix 
Ltd t: +44 (0)870 749 1100 f: +44 
(0)870 749 1200 w: www.prismix.com 









From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Michel 
JansenSent: 19 May 2005 12:07To: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex on the 
Web
LS,I am looking for Flex application on the Web. Can 
anynone send me some URL's where i can find them? It looks like most of the 
RIA's in production on the Web are build with Flash, BackBase and/or 
Laszlo.Please enlighten me...Michel







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [flexcoders] Flex on the Web

2005-05-19 Thread Michel Jansen
Allen Manning wrote:

 Hello Michel,
  
 The examples on the Macromedia Flex Development centre is a start:
  
 http://www.macromedia.com/devnet/flex/example_apps.html

Thanx. But i am looking for the spectaculars! I thought that Flex 
enabled the next generation WebApplications but what i have seen up 
until now isn't that innovating ;-(( Or do the creatives still have 
to find this technology.. Or is the price too high??

Michel

  
 HTH,
 Allen

  
 *Allen Manning*, Technical Director
 Prismix Ltd *t:* +44 (0)870 749 1100 *f:* +44 (0)870 749 1200 *w:* 
 www.prismix.com http://www.prismix.com

  
  
  
  
  

 
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
 *On Behalf Of *Michel Jansen
 *Sent:* 19 May 2005 12:07
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Flex on the Web

 LS,

 I am looking for Flex application on the Web. Can anynone send me some
 URL's where i can find them? It looks like most of the RIA's in
 production on the Web are build with Flash, BackBase and/or Laszlo.

 Please enlighten me...

 Michel

 
 *Yahoo! Groups Links*

 * To visit your group on the web, go to:
   http://groups.yahoo.com/group/flexcoders/

 * To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]

 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.





 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex on the Web

2005-05-19 Thread Battershall, Jeff
Dow Jones is using embedded Flex in public facing contexts, and more to
come.

http://www.djindexes.com/mdsidx/portfolio/index.cfm?event=showPortfolioG
lobalRelativeRisk

Jeff Battershall
Application Architect
Dow Jones Indexes
[EMAIL PROTECTED]
(609) 520-5637 (p)
(484) 477-9900 (c)

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Mendels
Sent: Thursday, May 19, 2005 10:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex on the Web


Hi,

A) Many Flex apps are behind the Firewall
B) Many Flex apps are not yet public (the product has only been on the
market for a year, and it takes a while to build great things)
C) Some examples: Go to http://www.sherwin.com/do_it_yourself/ and click
on Color Visualizer.  Go to Intelligent Finance (www.if.com) and click
on Offset Mortgage calculator. Go to 5 by 5 software and check out
Bridgeworx
(http://bwdesigner.5by5software.com/BRIDGEWERX/BRIDGEWERX.mxml)

-David



 -Original Message-
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of Michel Jansen
 Sent: Thursday, May 19, 2005 7:16 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Flex on the Web
 
 Allen Manning wrote:
 
  Hello Michel,
   
  The examples on the Macromedia Flex Development centre is a start:
   
  http://www.macromedia.com/devnet/flex/example_apps.html
 
 Thanx. But i am looking for the spectaculars! I thought that
 Flex enabled the next generation WebApplications but what i 
 have seen up until now isn't that innovating ;-(( Or do 
 the creatives still have to find this technology.. Or is the 
 price too high??
 
 Michel
 
   
  HTH,
  Allen
 
   
  *Allen Manning*, Technical Director
  Prismix Ltd *t:* +44 (0)870 749 1100 *f:* +44 (0)870 749 1200 *w:*
  www.prismix.com http://www.prismix.com
 
   
   
   
   
   
 
  
 --
  --
  *From:* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED]
  *On Behalf Of *Michel Jansen
  *Sent:* 19 May 2005 12:07
  *To:* flexcoders@yahoogroups.com
  *Subject:* [flexcoders] Flex on the Web
 
  LS,
 
  I am looking for Flex application on the Web. Can anynone
 send me some
  URL's where i can find them? It looks like most of the RIA's in
  production on the Web are build with Flash, BackBase and/or Laszlo.
 
  Please enlighten me...
 
  Michel
 
  
 --
  --
  *Yahoo! Groups Links*
 
  * To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
 
  * To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

  mailto:[EMAIL PROTECTED]
 
  * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.
 
 
 
 
 
  
 Yahoo! Groups Links
 
 
 
  
 
 
 


 
Yahoo! Groups Links



 





 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex on the Web

2005-05-19 Thread Kent Henneuse
There is also OFoto which shows a more public consumer app.

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Battershall, Jeff
Sent: Thursday, May 19, 2005 7:40 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex on the Web

Dow Jones is using embedded Flex in public facing contexts, and more to
come.

http://www.djindexes.com/mdsidx/portfolio/index.cfm?event=showPortfolioG
lobalRelativeRisk

Jeff Battershall
Application Architect
Dow Jones Indexes
[EMAIL PROTECTED]
(609) 520-5637 (p)
(484) 477-9900 (c)

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Mendels
Sent: Thursday, May 19, 2005 10:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex on the Web


Hi,

A) Many Flex apps are behind the Firewall
B) Many Flex apps are not yet public (the product has only been on the
market for a year, and it takes a while to build great things)
C) Some examples: Go to http://www.sherwin.com/do_it_yourself/ and click
on Color Visualizer.  Go to Intelligent Finance (www.if.com) and click
on Offset Mortgage calculator. Go to 5 by 5 software and check out
Bridgeworx
(http://bwdesigner.5by5software.com/BRIDGEWERX/BRIDGEWERX.mxml)

-David



 -Original Message-
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of Michel Jansen
 Sent: Thursday, May 19, 2005 7:16 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Flex on the Web
 
 Allen Manning wrote:
 
  Hello Michel,
   
  The examples on the Macromedia Flex Development centre is a start:
   
  http://www.macromedia.com/devnet/flex/example_apps.html
 
 Thanx. But i am looking for the spectaculars! I thought that
 Flex enabled the next generation WebApplications but what i 
 have seen up until now isn't that innovating ;-(( Or do 
 the creatives still have to find this technology.. Or is the 
 price too high??
 
 Michel
 
   
  HTH,
  Allen
 
   
  *Allen Manning*, Technical Director
  Prismix Ltd *t:* +44 (0)870 749 1100 *f:* +44 (0)870 749 1200 *w:*
  www.prismix.com http://www.prismix.com
 
   
   
   
   
   
 
  
 --
  --
  *From:* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED]
  *On Behalf Of *Michel Jansen
  *Sent:* 19 May 2005 12:07
  *To:* flexcoders@yahoogroups.com
  *Subject:* [flexcoders] Flex on the Web
 
  LS,
 
  I am looking for Flex application on the Web. Can anynone
 send me some
  URL's where i can find them? It looks like most of the RIA's in
  production on the Web are build with Flash, BackBase and/or Laszlo.
 
  Please enlighten me...
 
  Michel
 
  
 --
  --
  *Yahoo! Groups Links*
 
  * To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
 
  * To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

  mailto:[EMAIL PROTECTED]
 
  * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.
 
 
 
 
 
  
 Yahoo! Groups Links
 
 
 
  
 
 
 


 
Yahoo! Groups Links



 





 
Yahoo! Groups Links



 





smime.p7s
Description: S/MIME cryptographic signature


Re: [flexcoders] Flex on the Web

2005-05-19 Thread John Dowdell
Michel Jansen wrote:
 I am looking for Flex application on the Web. Can anynone send me some 
 URL's where i can find them? 

As David noted, the bulk of Flex sales are made for intranet 
applications, and the open World Wide Web is a slightly different audience.

Allen had that good link to the Flex Examples page at DevNet:
http://www.macromedia.com/devnet/flex/example_apps.html

... and Jeff Tapper pointed to the Sample Apps section at cflex.net, 
while Jeff Battershall had that nice example at Dow Jones:
http://cflex.net/
http://www.djindexes.com/mdsidx/portfolio/index.cfm?event=showPortfolioGlobalRelativeRisk


Another resource is the Macromedia Showcase, filtered on Flex:
(URL is too long... try mm.com/showcase, then click Flex)

For up-to-the-minute citations (although mixed with a variety of other 
materials), try searching the Macromedia weblog aggregator with terms 
like flex example:
http://weblogs.macromedia.com/

If you know of a particular type of application that you're seeking 
(banking, business analytics, a particular company, whatever) then there 
are possibilities in a general web search.

But Flex on the Web would only be a small part of Flex in Realworld 
Use... it's a subset of the whole at this time.

jd





-- 
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex on the Web

2005-05-19 Thread John Dowdell
One more recent gallery is in this quarter's Macromedia financial call, 
on slide 34 of the following Breeze presentation:
http://www.macromedia.com/macromedia/ir/macr/web_pres/earnings/q405/

jd




-- 
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/