[Flashcoders] component rendering delay

2008-01-11 Thread learner
Hi all, My component structure contains following things: HdivideBox List/ VBox TabNavigator /HBox VBox /HdivideBox when i create this component it takes time to render its UI, the reason is mainly because, 1) The list has dataProvider which takes a custom

[Flashcoders] SetStyle with UI component

2008-01-10 Thread learner
Hi all, Can I not use setSytle(verticalAling,middle) setSytle(horizontal,center) with uiComponent things like mycomp extends UIComponent{ function mycomp (){ super(); setSytle(verticalAling,middle) setSytle(horizontal,center) // this does not work :( } } Please help Regards

[Flashcoders] Re: [flexcomponents] SetStyle with UI component

2008-01-10 Thread learner
for laying out its children in the updateDisplayList() call and responding to any alignment or other styles you want to care about -- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *learner *Sent:* Thursday, January 10, 2008 5:23 AM *To:* [EMAIL

[Flashcoders] Re: [flexcomponents] SetStyle with UI component

2008-01-10 Thread learner
thanks got it! On Jan 11, 2008 10:35 AM, Alex Harui [EMAIL PROTECTED] wrote: Yes, but we recommend the use of unscaledWidth instead of width. -- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *learner *Sent:* Thursday, January 10, 2008

[Flashcoders] checking microphone

2007-02-06 Thread learner
Hi All, I am working on some voice recording application in flash. Before recording a audio, I want to give user a chance to check if his microphone is working or not. Please guid me in proper direction. Regards, Mayur ___

[Flashcoders] .net remoting

2006-12-10 Thread learner
Hello all, I am trying to use a remote webservice in .net in my flash application. Can any body please give me link to the tutotrial or tell me how can I use a .net weservice in my flash application using remoting component. Regards PS ___

Re: [Flashcoders] webservice delay

2006-12-07 Thread learner
Sorry for now providing the soruce code Here it is: The animation shows up on the second call to webservice but first call it directlly shows up the result.. public function searchdaigrams() { var wsConn_search = new WebServiceConnector(); wsConn_search.WSDLURL = _global.serviceURL

Re: [Flashcoders] webservice delay

2006-12-07 Thread learner
please note that i have tiggered the webservice call with parameters later in the same function as: wsConn_search.params =[ search parameters ] wsConn_search.trigger(); // sorry for not mentioning in the previos mail Regards PS On 12/7/06, learner [EMAIL PROTECTED] wrote: Sorry for now

[Flashcoders] yet another webservice difficulty

2006-12-07 Thread learner
Hello all, I am facing an issue with webservice. When do ctrl+enter and test the fla, I get the successfull result form webservice and could get all the data. But when I open the independent swf, or open it in browser , Its not working. I am not getting any result from webservice. I do not

[Flashcoders] another webservice difficulty

2006-12-07 Thread learner
Hello all, I am facing an issue with webservice. When do ctrl+enter and test the fla, I get the successfull result form webservice and could get all the data. But when I open the independent swf, or open it in browser , Its not working. I am not getting any result from webservice. I do not

[Flashcoders] webservice delay

2006-12-06 Thread learner
Hello all, Is there any event which tells you that webservice call is in progress.. I want to show the processing animation in the time gap bwteen a call to webservice and the result from the webservice Regards PS ___ Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] webservice delay

2006-12-06 Thread learner
the animation. Jason Merrill Bank of America Learning Organizational Effectiveness -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of learner Sent: Wednesday, December 06, 2006 4:20 AM To: Flashcoders mailing list Subject: [Flashcoders] webservice

[Flashcoders] space in column Names of DataGrid

2006-12-05 Thread learner
Hello all, I am populating a datagrid with a dataprovider array. I added the column Names like Phase Vol. , Figure No. etc. by doing Dg.addColumn (Phase Vol.) Dg.addColumn (Figure No.); now i want to asign a data in it by doing something like this var item_obj:Object = { Phase Vol

Re: [Flashcoders] space in column Names of DataGrid

2006-12-05 Thread learner
)); name_dgc.headerText = Phase Vol.; var score_dgc:DataGridColumn = my_dg.addColumn(new DataGridColumn(figurenumber)); score_dgc.headerText = Figure No.; my_dg.addItem({phasevol:01, figurenumber:30}); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of learner Sent: Tuesday

Re: [Flashcoders] componets below mask

2006-12-04 Thread learner
you to embed fonts, this should fix the problem. On 12/3/06, learner [EMAIL PROTECTED] wrote: Hello all, I have kept few components on the stage, like buttons, label etc. And have assigned a label text and button label to them. But when I keep a mask on them, I can not see the labels

[Flashcoders] components below mask

2006-12-03 Thread learner
Hello all, I have kept few components on the stage, like buttons, label etc. And have assigned a label text and button label to them. But when I keep a mask on them, I can not see the labels there. Also the datagrid's content which is populated with the dataprovider is not visible. I know

[Flashcoders] componets below mask

2006-12-03 Thread learner
Hello all, I have kept few components on the stage, like buttons, label etc. And have assigned a label text and button label to them. But when I keep a mask on them, I can not see the labels there. Also the datagrid's content which is populated with the dataprovider is not visible. I know