[flexcoders] What book in Flex  would you guys recommend for a newbie ?

2010-03-18 Thread Mykola Dzyuba
I would recommend Adobe Flex 4 docs. It has the latest info on Flex 4.  
It is easy to read and review and run examples online.

http://help.adobe.com/en_US/Flex/4.0/UsingSDK/index.html

- Mykola



Re: [flexcoders] Flex builder automation?

2010-02-12 Thread Mykola Dzyuba
Hi Nick,

Yes, it is possible. What is the goal of the automation?

If you want just a clean build done automatically, the ANT build would  
be a good option.

If you want to automate Flash Builder UI, you can develop an Eclipse  
plugin that would do that. Or you can use Eclipse UI automation tools  
like WindowTester and create a script for that.

- Mykola



On Feb 11, 2010, at 12:58 AM, Nick Middleweek wrote:

 Hello,

 Is it possible to setup an automation task to do this...


   • Open Project Properties of a Flex Library Project
   • Deselect all items in the Classes tab
   • Reselect all items in the Classes tab
   • Deselect assets in the Classes tab
   • Reselect all but 'com' in the Assets tab
   • Click ok so the library gets rebuilt
   • Run a Project Clean

 Thanks,
 Nick


 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
flexcoders-dig...@yahoogroups.com 
flexcoders-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
flexcoders-unsubscr...@yahoogroups.com

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



[flexcoders] Re:Help binding an XML file from a webservice?

2008-03-21 Thread Mykola Dzyuba

Hi,

Your code looks mostly right. Just a couple of updates. You need to  
define namespaces as you see in your SOAP response. Also, it might be  
different in your case, but I think event.result in e4x mode is  
XMLList, not XML. Can you add this line to your handleGetSpecies  
method to see the actual type?


trace(result type:  + (typeof event.result));

Somebody asked a similar question a couple of days ago. You might  
want to check this post:


http://tech.groups.yahoo.com/group/flexcoders/message/106748

- Mykola



[flexcoders] Re:How to make Web Service

2008-03-21 Thread Mykola Dzyuba
I think if you can verify that you can open your wsdl http:// 
server:port/wsdl/WS.wsdl?wsdl in a browser and
remove wsdl from mx:WebService tag because you already specified  
destination and set proxy to true, your could should work:


mx:WebService id=srv destination=ws-catalog
 useProxy=true showBusyCursor=true /

- Mykola



[flexcoders] Re:How to Read SOAP attachments in Flex?

2008-03-21 Thread Mykola Dzyuba
I don't think SOAP attachments are supported in Flex at the moment.  
Here is some more info with a workaround option of encoding a binary  
data into a string:


http://bugs.adobe.com/jira/browse/SDK-13381

- Mykola