hi jagadish, am having flex builder 3 proffessional.in my console view i cant see output of trace method.still am checking my output with Alert message.its tedious to me.is there any plug-in to install to get trace output. how can i get it.even i debug my application i cant see in the console view?how can i get it? tell me what is the process for that.
Thanks&Regards, Gerald A On Sat, May 30, 2009 at 10:23 PM, Jagadish M <[email protected]> wrote: > Hi, > > You can use the debugger version of Flash Player to capture output from the > global trace() method and write that output to the client log file. You can > use trace() statements in any ActionScript or MXML file in your application. > Because it is a global function, you are not required to import any > ActionScript classes packages to use the trace() method. > ** > *Ex:* > > <mx:Script> > > <?xml version="1.0" encoding="iso-8859-1"?> > > <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> > > <mx:Script> > > import flash.external.*; > > public function callWrapper():void > > { > > var f:String = "changeDocumentTitle"; > > var m:String = ExternalInterface.call(f,"New Title"); > > trace(m); > > } > > </mx:Script> > > <mx:Button label="Change Document Title" click="callWrapper()"/> > </mx:Application> > > > On Fri, May 29, 2009 at 4:46 PM, Gerald Anto > <[email protected]>wrote: > >> >> Hello Friends, >> I need the information about the following, >> >> What is 'trace' statement? >> how to use it? >> where to see log files in flex ? >> >> >> What is label renderer and how to create custom label renderer for >> horizontal axis. >> if possible please give me some examples? >> >> >> -- >> Thanks & Regards, >> >> Jagan Mady's >> >> >> >> >> -- Thanks & Regards, A Gerald --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

