RE: [flexcoders] Question about Data Service Assemblers

2006-07-29 Thread Jeff Vroom












Hi Brennan,



You only need to implement the methods in
your Assembler which are used by clients. If your client code is not
independently calling fill on the employees DataService, you dont need
to implement any fill methods. Similarly if you are not creating or deleting
employees, you dont need a create or delete method for items of that
type. 



Jeff











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dreuimar
Sent: Friday, July 28, 2006 7:21
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Question
about Data Service Assemblers











If I have a one-to-many relationship between a VO
like:

public class company
{
public var id : int;
public var name : String;
public var employees : ArrayCollection;
}

one-to-many property=employees destination=employee
lazy=true/

And the employees are lazy loaded, how should I construct my employee
assembler? I know that with a one-to-one it calls getItem(), but is
this calling a fill()? And if so, what parameters is it sending?

Thanks,
Brennan






__._,_.___





--
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] Re: WebService Call

2006-07-29 Thread Franck de Bruijn












Have you tried to access the wsdl and call
the webservice operation from another webservice client than Flex?



The tool I always use is: http://www.soapui.org/jnlp/1.5/soapui.jnlp
(this is a webstart link; if you click it, and you have Java installed on your
machine it should start automatically).



Cheers,

Franck











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of richmcgillicuddy
Sent: Friday, July 28, 2006 9:43
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
WebService Call











Yes,

I see the definition but with most XML parse errors (not just flex),
the error messages are difficult to track down. It is telling me that
it cannot add the node . I'll get the exact error message and post
it later tonight. I'd prefer to use a WebService rather than an Service.

Rich

--- In [EMAIL PROTECTED]ups.com,
slangeberg slangeberg@... wrote:

 So when you point your browser to: http://localhost:9126/SOAP
 you are seeing the WSDL definition?
 
 Scott
 
 
 On 7/28/06, richmcgillicuddy [EMAIL PROTECTED] wrote:
 
  Thanks for the pointers, they are really helpful. I have my own app
  server and can tell that the flex application calls it, tries to
  retrieve the wsdl file and then in flex it tells me that there is an
  XML parsing error in the wsdl file. It this point, I am leaning
  towards using simple XML since I can generate that if needed. Other
  than download and testing SOAP wsdl validators and making sure it is
  standard, i think the only other option is the straight XML.
 
  Rich
 
 
  --- In [EMAIL PROTECTED]ups.com
flexcoders%40yahoogroups.com,
  slangeberg slangeberg@ wrote:
  
   Yeah,
  
   Try something more like (I'm not sure what your 'FlexData'
object was
   supposed to refer to... ):
  
   mx:..sometag >wsTest.getData()
  
   mx:WebService
   id=wsTest
   wsdl=http://localhost:9126/SOAP
   fault={trace(-1);}
   result={trace(1);}/
  
   /mx:...sometag
  
  
   On 7/26/06, richmcgillicuddy rich@ wrote:
   
I have a simple web service calling a SOAP web service on
my local
machine. The call looks like:
   
mx:WebService id=wsTest
wsdl=http://localhost:9126/SOAP
load=wsTest.FlexData.getData()
fault=trace(-1); /
   
It seems to hang waiting for localhost and if I let it wait
long
enough, it will give me the following error:
   
ReferenceError: Error #1069: Property getData not found on
mx.rpc.soap.mxml.Operation and there is no default
value.
at Step2/__wsTest_load()
...
   
On the Web Server side, I am looking for client connects
from
flash
and do not seem to get even the client connect. Any ideas?
   
Is there anything that looks odd with the WebService
statement?
   
Rich
   
   
   
  
  
  
   --
  
   : : ) Scott
  
 
  
 
 
 
 
 -- 
 
 : : ) Scott







__._,_.___





--
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] Re: Problem with Flex and CF web service

2006-07-29 Thread Rick Root
howardescholz wrote:
 
 
 Why are you using:
 ws.queryDB.send(RUNDATE,ENTITYID,LASTNAME,
 FIRSTNAME,MINITIAL,PRFSCHCD,PRRECTYP,PRFCLASS);
 ?
 
 why not just
 ws.queryDB(RUNDATE,ENTITYID,LASTNAME,
 FIRSTNAME,MINITIAL,PRFSCHCD,PRRECTYP,PRFCLASS);
 ?


Because in programming, there's always more than one right way to do 
things?  I do this in other web services and it works fine that way.

I'm interested in solutions to the problem, if anyone can think of one.

Besides, I've actually switched to using the mx:request method and 
putting the arguments in there...  Same problem occurs every way I try it.

Rick


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] (another) flex debugger error

2006-07-29 Thread Rick Root
This is frustrating, I'm not having any luck on this list either.  Guess 
I'd better head to the flex support forums, maybe someone can help me 
there...

Rick Root wrote:
 
 I'm trying to debug a problem I'm having (which I've posted about in
 another thread) so I put a breakpoint at my web service call:
 
 ws.queryDB.send()
 
 Then I step into, and the flex debugger window says Source Not Found
 
 This makes it kind of hard for me to debug my problem.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Re: Answer to the most frequent problem...

2006-07-29 Thread Adam Reynolds
Tom,
It's your life. You are more than welcome to choose how you difficult 
you want to make it for yourself...

Tom Chiverton wrote:
 On Friday 28 July 2006 15:48, gotgoose09 wrote:
   
 It's so much easier with Flex Builder though. :) Until something free
 with Flex code completion comes out I'd rather use Flex Builder.
 

 You mean like Eclipse (with WTP and ... someones :-) ... XML schema) ?
 Flex builder isn't an option for me because for no very good reason it only 
 runs on Windows.

   



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] passing VOs using ColdFusion Event gateway Adapter

2006-07-29 Thread Mike Nimer


Seems like it could be a deeper error in the cfml, double check all of the CF logs and see if you can find a better error. 

Also you might want to try sending the object through the flash remoting adapter, to see if you can get either a better message or to confirm that CF doesn't have a problem translating the object type. Flash Remoting and the Event Gateway share the same data type translation layer. 

Also make sure you have the Alias properties in the AS Class and the CFC set correctly and they match exactly.

---nimer
- Original Message From: nigasak [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, July 28, 2006 4:07:00 PMSubject: [flexcoders] passing VOs using ColdFusion Event gateway Adapter

I am using CF Event Gateway Adapter, having a Producer from a flex App that sends messages to the CF Gateway, and a consumer in another Flex App, that is suscribed to the messages generated by the CF Gateway.Hi, I've been trying to do it without success, I have a RequerimientoVO Object with its data already filled, but when I try to do this:var msg : AsyncMessage = new AsyncMessage( );msg.headers. gatewayid = "RequerimientosGate way";//requerimiento is the VO with datamsg.body = requerimientoservice.send( msg );It doesn't works, and I get this error:"Unable to send message to CF Gateway 'RequerimientosGate way': null"however if I change this line:msg.body = requerimiento;for this one:msg.body = new Object();It works, but data arrives to the CFC gateway without type and I have to fill the object myself before sending:msg.body.codigo = requerimiento.
 codigo;msg.body.nombre = requerimiento. nombre;When the CFC returns data from the Gateway to a consumer in another Flex app, it arrives untyped too :-(

__._,_.___





--
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.



  






__,_._,___


[flexcoders] Re: Developing on Linux?

2006-07-29 Thread csewhiff
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] 
wrote: 
 
  I'm just wondering if anyone is working on any Linux compatible 
  editors or editor plug-ins. 
  
 You mean like Eclipse ? 
 
Part of the reason I'm looking for alternatives is I dislike 
Eclipse. I was hoping to get it working decently in KDevelop or 
something similar. 
 
 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 





[flexcoders] Re: Panel padding

2006-07-29 Thread Devin Holloway

That did it. I should have noticed those attributes in the attributes
category view. Thank you!

--- In flexcoders@yahoogroups.com, Peter Baird [EMAIL PROTECTED] wrote:

 Sorry for jumping on this late...
 
 What you¹re looking for is the following:
 
 borderThicknessRight=²0²
 BorderThicknessLeft=²0²
 BorderThicknessTop=²0²
 BorderThicknessBottom=²0²
 
 I¹ve been meaning to include these styles in the style explorer for
Panel,
 as their omission is an oversight.
 
 -Peter
 
 
 
 / \®   PETER BAIRD
 888/   \888User Experience Consultant
 88/  /  \88Adobe Consulting | Adobe Systems, Inc
 8/  /8\  \8275 Grove St. Newton, MA
 /  /888\  \
   \8\  
 
 
 
 
 On 7/28/06 6:05 PM, bhaq1972 [EMAIL PROTECTED] wrote:
 
   
   
   
  
  okay this is my last suggestion (cant think of anything else). for
  your datagrid add a minWindth=0
  
   sometimes i found that works well with width=100%
  
  --- In flexcoders@yahoogroups.com
mailto:flexcoders%40yahoogroups.com ,
  Devin Holloway devin@
  wrote:
  
   that doesn't work either. it widens the conents inside, but clips
  them
so that the same left/right padding amount exists.  the weird
  thing
   is that the paddingTop behaves as it should, it's just the
  left/right
   padding that's not working
   
   --- In flexcoders@yahoogroups.com
mailto:flexcoders%40yahoogroups.com ,
  bhaq1972 mbhaque@ wrote:
   
what happens if you remove the outer Canvas and make the panel
borderStyle=none and paddingLeft=-10 and paddingRight=-10

--- In flexcoders@yahoogroups.com
mailto:flexcoders%40yahoogroups.com
  , Devin Holloway devin@
wrote:

 still no effect :(
 
 
 --- In flexcoders@yahoogroups.com
  mailto:flexcoders%40yahoogroups.com , bhaq1972 mbhaque@
wrote:
 
  and make the panel borderStyle=none
  
  --- In flexcoders@yahoogroups.com
  mailto:flexcoders%40yahoogroups.com , Tim Hoff TimHoff@
  wrote:
  
   Hi Devin,
   
   Try setting the Panel's borderThickness to 0.
   
   -TH
   
   --- In flexcoders@yahoogroups.com
  mailto:flexcoders%40yahoogroups.com , Devin Holloway
  devin@ 
wrote:
   
I have a panel with a datagrid in it. I don't
want any
  space 
around
the datagrid and the panel sides, but can't seem
to get
  rid 
of it. 
  I
set all the padding option on the panel to 0, and it
  does 
nothing
   
  
 

   
  
  
   
 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 





[flexcoders] php and flex

2006-07-29 Thread arnold_charming
Hi!

I'm using php as my server pages while flex is used for presentation
logic. What bugs me the most is the exchange of data between PHP and
Flex. I always have to generate a XML file and then passed it to Flex.
Can this be done any simplier and faster? How about passing mysql data
results from PHP directly to Flex without the hasle of transforming it
to XML? Is AMFPHP the right tool for this job?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 




[flexcoders] Strange things of creationComplete,preinitialize in application Tab

2006-07-29 Thread junhufr
All, 

have strange things! I've used HTTPService to invoke a remote XML file
and convert to e4x object. I've invoked .send() method in custom
initApp() method. I addressed either creationComplete or
preinitialize in 'Application' Tab. Nothing happened. Then I
declared  both creationComplete,preinitialize in 'Application' Tab,
then I get my XML values sucessfully. Does anyone get same thing? Or
somebody could explain me why? 

Any help is appreciated. 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 




[flexcoders] I am new on Flex 2 but need help!!!

2006-07-29 Thread El Colo
Hi Everybody, I am want to know if my concepts en flex 1.5 can used 
in the same way with flex 2 (obvious than i need learn AS 3.0 and 
begin to migrate the code from AS 2.0) unlike asp.net that I have to 
learn new things and my actual concepts are older ? Please 
respond me 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 




[flexcoders] I am new on Flex 2 but need help!!!

2006-07-29 Thread El Colo
Hi Everybody, I am want to know if my concepts en flex 1.5 can used 
in the same way with flex 2 (obvious than i need learn AS 3.0 and 
begin to migrate the code from AS 2.0) unlike asp.net that I have to 
learn new things and my actual concepts are older ? Please 
respond me 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 





[flexcoders] Re: php and flex

2006-07-29 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, arnold_charming
[EMAIL PROTECTED] wrote:
 Is AMFPHP the right tool for this job?

Yes, it is:

http://www.adobe.com/devnet/flex/articles/flex2_amfphp.html

http://renaun.com/blog/2006/07/25/70/

http://www.narancs.net/flex/ClassMappingExample/ClassMappingExample.html






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Re: Developing on Linux?

2006-07-29 Thread Nick Collins



well, you can use any IDE you want with the SDK, you just won't have all the nice code hinting and completion and such. You could use gEdit if you so chose, but really, it would be a pain in the ass to do so.
On 7/28/06, csewhiff [EMAIL PROTECTED] wrote:













  



--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] 

wrote: 
 
  I'm just wondering if anyone is working on any Linux compatible 
  editors or editor plug-ins. 
  
 You mean like Eclipse ? 
 
Part of the reason I'm looking for alternatives is I dislike 
Eclipse. I was hoping to get it working decently in KDevelop or 
something similar. 
 
 


  















__._,_.___





--
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] How to understand and fix reported errors?

2006-07-29 Thread Mike



Anybody? I can't believe that I'm the only "lucky one".Heeelp!!!mike_pq4 [EMAIL PROTECTED] wrote:  I am running a simple app generated by Flex2 Builder using CF Wizard.Trying to login I get this:ReferenceError: Error #1069: Property message not found onmx.messaging.messages.ErrorMessage and there is no default value.at com.cfgenerated.views.login::LoginForm/::serverFault()at
 com.cfgenerated.views.login::LoginForm/___Operation1_fault()atflash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()at flash.events::EventDispatcher/dispatchEvent()atmx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()atmx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()at mx.rpc::Responder/fault()at mx.rpc::AsyncRequest/fault()at::NetConnectionMessageResponder/NetConnectionChannel.as$37:NetConnectionMessageResponder::statusHandler()at mx.messaging::MessageResponder/status()I have no idea why I get it or how to fix it.
 And this is a majorproblem trying to really evaluate the product. I get stuck and thereis no way out.Thanks 
		Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail Beta.
__._,_.___





--
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] How to understand and fix reported errors?

2006-07-29 Thread ryan harlin
I'm having a similar error trying to run one of the
Adobe tutorials using ColdFusion and Flex Data
Servicss (the CRM sample app).  I get the message:

Property employee not found on samples.crm.Company and
there is no default value.

It goes on to list a bunch of info that means nothing
to me.

I've come to realize, in my case, that the message is
either referring to the Company.as file that resides
in a file path samples/crm/Company.as or a coldfusion
cfc file that resides in the coldfusion web root at
wwwroot/sample/crm/Company.cfc

But beyond that I don't know what it wants to see in
the file that it's not seeing.

I hope this, in some way, helps you track down at
least the problem file in your situation.  I'll reply
if I figure anything else on mine out.



--- Mike [EMAIL PROTECTED] wrote:

 Anybody? I can't believe that I'm the only lucky
 one.

   Heeelp!!!
 
 mike_pq4 [EMAIL PROTECTED] wrote:
   I am running a simple app generated by
 Flex2 Builder using CF Wizard.
 Trying to login I get this:
 
 ReferenceError: Error #1069: Property message not
 found on
 mx.messaging.messages.ErrorMessage and there is no
 default value.
 at

com.cfgenerated.views.login::LoginForm/::serverFault()
 at

com.cfgenerated.views.login::LoginForm/___Operation1_fault()
 at

flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
 at flash.events::EventDispatcher/dispatchEvent()
 at

mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
 at

mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()
 at mx.rpc::Responder/fault()
 at mx.rpc::AsyncRequest/fault()
 at

::NetConnectionMessageResponder/NetConnectionChannel.as$37:NetConnectionMessageResponder::statusHandler()
 at mx.messaging::MessageResponder/status()
 
 I have no idea why I get it or how to fix it. And
 this is a major
 problem trying to really evaluate the product. I get
 stuck and there
 is no way out.
 
 Thanks
 
 
 
  
 
   
 -
 Do you Yahoo!?
  Everyone is raving about the  all-new Yahoo! Mail
Beta.


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Re: trees, UpdateDisplayList and keeping a tree open

2006-07-29 Thread Tom Ortega



That's exactly what I'm talking about!Full code examplecan be found here.

http://lordbron.wordpress.com/2006/07/28/flex-20-reopening-a-tree-after-updating-the-dataprovider/


Pretty much, it involves the openItems property, the render event and a boolean value.

It may need some refining, as the example is merely a single branch tree, but at least it's doable and rather simple!

Enjoy!


On 7/28/06, Tracy Spratt [EMAIL PROTECTED] wrote:








Huh, come on Tom, this is a pretty often desired behavior, please post your solution! Do you mean that storing openItems and then re-assigning them in the "render" event restores the whole tree to its open state? 


That's damn big. I never did get something like this working in 1.5.

Tracy






From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Tom OrtegaSent: Friday, July 28, 2006 7:54 PMTo: flexcoders
Subject: [flexcoders] Re: trees, UpdateDisplayList and keeping a tree open





Nevermind, I figured it out! The secret is the render event. =)

On 7/28/06, Tom Ortega 
[EMAIL PROTECTED]  wrote:

Hi all,So, I'm trying to figure out how to refesh a tree's DataProvider and keep it open. I thought trapping the trees.opentItems was my answer. I'd trap the value before the refresh, then set it back to that value after the refesh: 
 tempOpen = mainTree.openItems; mainTreeDP = event.result; mainTree.validateNow(); mainTree.openItems = tempOpen;But that didn't work. 
I think the reason why is because the code gets executed before the tree display updates itself.My dilemna now seems twofold:1. I take it there's not a built in way to regress a tree back to it's open states? 
2. How can I know when the update to the display is done, so I can manually traverse the tree and reopen everything?The functionality is there because if you expand every node, the collapse the root, then open the root, everything is still expanded. If I can just figure out how to mimic that in my ActionScript, I'd be set. 
Any ideas?Thanks,

Tom



 

__._,_.___





--
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.



  






__,_._,___



[flexcoders] Re: Weblogic webservice access problem

2006-07-29 Thread jpc14_99
I found help here:

http://www.mail-archive.com/flexcoders@yahoogroups.com/msg34914.html

I'm confused why I'm not using a whitelist definition in the flex-
config like I did with the Beta, but making a crossdomain.xml file and 
opening it up * on my webservices web folder works.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Tomcat 5.5/Flex Data Services/OutOfMemoryError

2006-07-29 Thread Clint Modien



I think the default allocation for Tomcat is something small like 128Megs...Assuming your running windows... crack open the tomcat service manager and you'll see an area where you can edit the JVM settings.
Set the initial memory pool to 300+ Megs and the Max (depending on how much ram you have...) to 512 MegsThat should work for running the samples.On 7/29/06, 
RBullotta [EMAIL PROTECTED] wrote:













  



Here's a weird one - when attempting to run the samples provided with 
FDS Express 2.0, the first sample app I attempt to load (and therefore 
compile) works fine, but subsequent ones crash with a 
java.lang.OutOfMemoryError on the compile.

Any insights welcomed, as something seems desperately wrong...

Thanks!

- Rick


  















__._,_.___





--
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] How to understand and fix reported errors?

2006-07-29 Thread Mike



Hi Ryan,Thanks. I think I got a Little bit closer. I was debugging the application stepping through and at one point I got:  Source not found when trying to step through:  mx.messaging.messages::Acknowledge Message$initThanks  Mikeryan harlin [EMAIL PROTECTED] wrote:  I'm having a similar error trying to run one of theAdobe tutorials using ColdFusion and Flex DataServicss (the CRM sample app). I get the
 message:Property employee not found on samples.crm.Company andthere is no default value.It goes on to list a bunch of info that means nothingto me.I've come to realize, in my case, that the message iseither referring to the Company.as file that residesin a file path samples/crm/Company.as or a coldfusioncfc file that resides in the coldfusion web root atwwwroot/sample/crm/Company.cfcBut beyond that I don't know what it wants to see inthe file that it's not seeing.I hope this, in some way, helps you track down atleast the problem file in your situation. I'll replyif I figure anything else on mine out.--- Mike [EMAIL PROTECTED]com wrote: Anybody? I can't believe that I'm the only "lucky one".  Heeelp!!!  mike_pq4 [EMAIL PROTECTED]com wrote: I am running a simple app generated by Flex2 Builder using CF Wizard. Trying to login I get this:  ReferenceError: Error #1069: Property message not found on mx.messaging.messages.ErrorMessage and there is no default value. atcom.cfgenerated.views.login::LoginForm/::serverFault() atcom.cfgenerated.views.login::LoginForm/___Operation1_fault() atflash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() atmx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent() atmx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler() at mx.rpc::Responder/fault() at mx.rpc::AsyncRequest/fault() at::NetConnectionMessageResponder/NetConnectionChannel.as$37:NetConnectionMessageResponder::statusHandler() at mx.messaging::MessageResponder/status()  I have no idea why I get it or how to fix it. And this is a major problem trying to really evaluate the product. I get stuck and there is no way out.  Thanks  
 - Do you Yahoo!? Everyone is raving about the all-new Yahoo! MailBeta.__Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com  
		Groups are talking. Were listening. Check out the handy changes to Yahoo! Groups. 
__._,_.___





--
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.



  






__,_._,___



[flexcoders] Put a comment on the cell of a datagrid

2006-07-29 Thread flxcoder
Hi,

All the cells in my datagrid need to have comments when the user 
mouses over them. Not all cells will have this effect, but some will.

I am completely lost, on where to start emulating this behaviour. Any 
tips/ideas?

Thanks/






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 





[flexcoders] Re: php and flex

2006-07-29 Thread arnold_charming
--- In flexcoders@yahoogroups.com, Stefan Schmalhaus [EMAIL PROTECTED] 
wrote:

 --- In flexcoders@yahoogroups.com, arnold_charming
 arnold_charming@ wrote:
  Is AMFPHP the right tool for this job?
 
 Yes, it is:
 
 http://www.adobe.com/devnet/flex/articles/flex2_amfphp.html
 
 http://renaun.com/blog/2006/07/25/70/
 
 http://www.narancs.net/flex/ClassMappingExample/ClassMappingExample.html


Can I also push data? Because till now I was justing using pull mechanism.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Tomcat 5.5/Flex Data Services/OutOfMemoryError

2006-07-29 Thread Rick Bullotta
Thanks, Clint.  For once, an out of memory error that actually *is* an out of 
memory error! ;-)

- Rick

Sent from my BlackBerry wireless handheld.  

-Original Message-
From: Clint Modien [EMAIL PROTECTED]
Date: Sat, 29 Jul 2006 13:43:41 
To:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Tomcat 5.5/Flex Data Services/OutOfMemoryError

I think the default allocation for Tomcat is something small like 128Megs...

Assuming your running windows... crack open the tomcat service manager and 
you'll see an area where you can edit the JVM settings.

 Set the initial memory pool to 300+ Megs and the Max (depending on how much 
ram you have...) to 512 Megs

That should work for running the samples.



On 7/29/06, RBullotta [EMAIL PROTECTED]: mailto:[EMAIL PROTECTED]  wrote: 
 
 
 
 
 
Here's a weird one - when attempting to run the samples provided with 
 FDS Express 2.0, the first sample app I attempt to load (and therefore 
 compile) works fine, but subsequent ones crash with a 
 java.lang.OutOfMemoryError on the compile.
 
 Any insights welcomed, as something seems desperately wrong...
 
 Thanks!
 
 - Rick
 
 
  
  

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 




[flexcoders] Re: php and flex

2006-07-29 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, arnold_charming
[EMAIL PROTECTED] wrote:
 
 Can I also push data? Because till now I was justing using pull
mechanism.

AMFPHP works in both directions. Please take a look at the AMFPHP
documentation for details:

http://www.amfphp.org/docs/


Stefan







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 




[flexcoders] Avoiding Multiple Browser Windows/Tags -I s it possible?

2006-07-29 Thread yaagcur
Each time I run a project it opens a new tab in Firefox. After a few
of these are lined up, the project takes much longer to run
Is there anyways to get round this in FlexBuilder so that the previous
window is used and I dont have to keep closing tabs?
cheers





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 





[flexcoders] Re: Put a comment on the cell of a datagrid

2006-07-29 Thread Douglas Knudsen
Tooltip?

Dk

On 7/29/06, flxcoder [EMAIL PROTECTED] wrote:
 Hi,

 All the cells in my datagrid need to have comments when the user
 mouses over them. Not all cells will have this effect, but some will.

 I am completely lost, on where to start emulating this behaviour. Any
 tips/ideas?

 Thanks/






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










-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Re: Embbeding a Flash CFReport inside a Flex App

2006-07-29 Thread Nick Collins



Hey guys, I just stumbled across something that may prove very useful here. When I generated a CF CRUD app with the wizard, under com.adobe.ColdFusion.components there is a FlashPaperLoaded component. It doesn't appear to be documented at all, but it loads a FlashPaper SWF perfectly. 
I'm still having trouble getting it to load a dynamically generated FlashPaper report, but like I said, I just stumbled on it and there's like nil documentationt that I can find.
On 7/25/06, nigasak [EMAIL PROTECTED] wrote:













  



Please, Please Could you share the IFrame Solution? 

--- In flexcoders@yahoogroups.com, Scotty Scott [EMAIL PROTECTED] wrote:

 Scaling and some browser problems (at least in b2 and b3).  I forget
which
 what exactly happened for each browser but sometimes the flashpaper
wouldnt
 be able to regain focus after interacting with it(pressing print,
scrolling,
 etc).  Other times it wouldnt allow interactions at all.
 
 I talked with some people at CFUnited and they said something about
writing
 an AS2 wrapper that would make things work better but I decided to
use an
 IFrame solution.
 
 Scotty
 http://www.franciswscott.com
 
 On 7/24/06, Nick Collins [EMAIL PROTECTED] wrote:
 
I've been able to have it in there using both the image
component or the
  SWFloader by simply specifying the source as my CFR file, since it
returns a
  SWF. The problem I had is with scaling. When you view the CFR in
the browser
  from a CF server, the controls are a toolbar along the top that
stays the
  same size regardless of browser scaling. However when placed into
a flex
  app, the swf is relatively very small, and when you scale it, it
scaled the
  whole thing, making for a very large FlashPaper toolbar.
 
  Maybe this will point you in the right direction if you can figure
out a
  solution to scaling problem. If you do,please share! :-)
 
  Nick
 
 
  On 7/23/06, nigasak [EMAIL PROTECTED] wrote:
  
 Hi everybody, does anyone knows How to include a ColdFusion Flash
   Paper Report inside a Flex App?
  
  
   
 



  















__._,_.___





--
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.



  






__,_._,___



[flexcoders] Re: I am new on Flex 2 but need help!!!

2006-07-29 Thread junhufr
Actually, you should update your knowledge base. Since in Flex 2, it
uses ActionScript 3. Totally new concepts should be acknowledged. 



--- In flexcoders@yahoogroups.com, El Colo [EMAIL PROTECTED] wrote:

 Hi Everybody, I am want to know if my concepts en flex 1.5 can used 
 in the same way with flex 2 (obvious than i need learn AS 3.0 and 
 begin to migrate the code from AS 2.0) unlike asp.net that I have to 
 learn new things and my actual concepts are older ? Please 
 respond me








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Are the contents of a WSDL document accessible?

2006-07-29 Thread JesterXL
Assuming the WSDL is on the same domain so that your SWF has permission (or 
you're using a proxy), hell yeah, she's fair game bro.

You can use the old skool XML or E4X via a URLLoader.

- Original Message - 
From: ben.clinkinbeard [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, July 30, 2006 12:36 AM
Subject: [flexcoders] Are the contents of a WSDL document accessible?


Title pretty much sums it up. Is there any way to access and work with
the actual XML contained in the WSDL document?

Thanks,
Ben
http://www.returnundefined.com/






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








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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] Are the contents of a WSDL document accessible?

2006-07-29 Thread Mike Britton



What language are you using?mx:WebService id=insertBookService  wsdl=http://localhost:8500/remotingExample.cfc?wsdl
 result=handleFormResult(event)  showBusyCursor=true  fault=errorHandler(event)  mx:operation name=addBook   mx:request
bookAuthor{bookAuthor.text}/bookAuthorbookTitle{bookTitle.text}/bookTitlebookGenre{bookGenre.text}/bookGenrebookLink{
bookLink.text}/bookLink   /mx:request  /mx:operation/mx:WebServiceHit me back offlist if you need more sample code. I recommend you check out mx.rpc.soap.WebService
 in Flex Builder help.Mike Britton

__._,_.___





--
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.



  






__,_._,___



[flexcoders] Re: Are the contents of a WSDL document accessible?

2006-07-29 Thread ben.clinkinbeard
Hey guys, thanks for the quick replies. I actually found what I was
looking for in the docs a few minutes after posting (of course). What
I was looking for was how to access the contents of the wsdl once it
has been loaded into your app.

Turns out you can, by capturing the mx.rpc.soap.LoadEvent that is
fired when the wsdl has finished loading. LoadEvent has a 'wsdl'
property that returns a WSDL object (which I so far cannot find in the
docs) and a 'document' property which returns an old school
XMLDocument object.

The reason I was asking is because I am thinking about trying to build
 something like Web Service Studio (http://tinyurl.com/2t8gd) or Soap
UI (http://www.soapui.org/) in Flex. I've only been investigating for
about 15 minutes or so but my initial thoughts? This would be damn
hard :) We'll see how motivated I am to tackle it in the light of day.

Thanks,
Ben
http://www.returnundefined.com/

--- In flexcoders@yahoogroups.com, ben.clinkinbeard
[EMAIL PROTECTED] wrote:

 Title pretty much sums it up. Is there any way to access and work with
 the actual XML contained in the WSDL document?
 
 Thanks,
 Ben
 http://www.returnundefined.com/







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/