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

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

Reply via email to