[flexcoders] Set backgroundColor to RichTextEditor

2008-08-21 Thread kaushal_bshah
I have taken one RichTextEditor component, and there is one button to fill background of RichTextEditor's textArea, using following code mx:RichTextEditor id=rte x=218 y=10 title=Title/ mx:Button x=218 y=318 label=Set Background click=onRTE_Bg()/ private function onRTE_Bg():void{

[flexcoders] Re: Loading style sheets at run time

2008-07-25 Thread kaushal_bshah
Hi Let me clear what is MyTextArea. This component is copied from mx:RichTextEditor/, so that user can format each character of MyTextArea's text. For a testing purpose I have create one more component TempTextArea based on TextArea, and put it inside Card component. And when user change font

[flexcoders] Running Flex application on Mac

2008-07-25 Thread kaushal_bshah
I have create one Flex Application, which runs properly on Windows OS. But same application behaving wrong on Mac. Application loads completely but while interacting sometime user getting improper response. So my question is, does Mac need anything to run flex application properly, or is there

[flexcoders] Loading style sheets at run time

2008-07-24 Thread kaushal_bshah
I have created few fonts css and compiled them into swf to load them at run time. There is one custom component Card, is placed into a Module and this Module is loaded by main application. The Card component contains TextArea, MyTextArea(custom component) and ComboBox (which display font list).

[flexcoders] Re: Loading style sheets at run time

2008-07-24 Thread kaushal_bshah
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaushal_bshah Sent: Thursday, July 24, 2008 3:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Loading style sheets at run time I have created few fonts css and compiled them into swf to load them at run time. There is one custom

[flexcoders] getting incorrect values while using getLineMetrics()

2008-01-03 Thread kaushal_bshah
following e.g. finding x position of word Adobe flex. if container of TextArea is not scaled then its giving correct value but after doing zoomin/zoomout its giving incorrect value Plz help me to figure out this. Thanks Kaushal ?xml version=1.0

[flexcoders] ExternalInterface.addCall

2007-11-08 Thread kaushal_bshah
I am loading one .SWF file into swfLoader, when Flash file is ready to work its callling one method of flex using ExternalInterface.call(), This same method I have registered with ExternalInterface.addCall() into Flex. In my machine, this works successfully in Mozilla Firefox, while in IE6

[flexcoders] Problem with Trace()

2007-11-07 Thread kaushal_bshah
I am using Trace() method at few place in my flex application. When I run this application from Mozilla it produces all trace messages successfully to flashlog.txt file, but same will not happen from IE6. I want this same from IE6, how i can solve this. Plz help me.