[flex_india:31734] Re: issue with using web service http://www.aswinanand.com/sendsms.php?wsdl

2010-10-13 Thread Ravi Mishra
If you are getting the response back from webservice to flex then there seems no problem with your flex code. Check on the webservice end. -Ravi Mishra http://achieveravi.blogspot.com On Oct 13, 9:11 am, atul parihar atulparihar...@gmail.com wrote: When i run this application from flex builder

Re: [flex_india:31735] Logging - Log Files - flex

2010-10-13 Thread ramesh1703
http://blog.flexexamples.com/2007/08/26/debugging-flex-applications-with-mmcfg-and-flashlogtxt/ On Tue, Oct 12, 2010 at 22:35, Vatsala Dorairajan vatsala.li...@gmail.comwrote: HI Everyone, Is it possible to generate log files for the trace() statements in Flex like in Java applications? If

[flex_india:31736] Re: Logging - Log Files - flex

2010-10-13 Thread Santosh
Hi Its possible to log messages in flex but client need to have the debugger version of Flash Player . go through this link for more information http://livedocs.adobe.com/flex/3/html/help.html?content=logging_09.html On Oct 13, 8:35 am, Vatsala Dorairajan vatsala.li...@gmail.com wrote: HI

Re: [flex_india:31736] Logging - Log Files - flex

2010-10-13 Thread Ashish Bhatia
(This solution creates a custom logger for all AMF transactions using log4j.): Step 1: Create a java class for Flex logging on server side import flex.messaging.log.LineFormattedTarget; public class FlexLogger extends LineFormattedTarget { private final static Logger logger =

[flex_india:31738] Native Process of AIR

2010-10-13 Thread Satish Gupta
Hi Guys, can we see what processes are going on in task manager via AIR? If any one have any idea about it. Please share it. Thanks, Satish. -- You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this group, send email to

[flex_india:31739] Child sprite event listener problem

2010-10-13 Thread Radu Toev
Hello, I have a class that extends Sprite. In that class I have another sprite (red circle) and other elements(textfield, image etc). In the main class I add the class that extends Sprite and add to the red circle a roll over event listener. The problem is that this doesn't work, so no roll over

Re: [flex_india:31739] Logging - Log Files - flex

2010-10-13 Thread Vatsala Dorairajan
Hi Ashish Thanks for the detailed steps for server logging - will check this out Vatsala On 13-10-2010 14:39, Ashish Bhatia wrote: (This solution creates a custom logger for all AMF transactions using log4j.): Step 1: Create a java class