Re: [flex_india:26596] Re: Why Flexapplication load initally slow

2009-11-12 Thread Ramya Arumugam
Hi Pradep, Where do we apply the -debug=false? Bcz am also facing the same loading issue. Thansk, Ramya On Thu, Nov 12, 2009 at 8:39 AM, pradeep gorijavolu < pradeepflex.gr...@gmail.com> wrote: > hi thanx for all > > i find out one thind to reduce the swf size > > if we put -debug=false we can

Re: [flex_india:26594] Re: Remove Space Between FormItem and Label Object

2009-11-12 Thread Ramya Arumugam
Nov 11, 2009 at 8:28 PM, Ramya Arumugam < > friendramya2...@gmail.com> wrote: > >> Hi, >> >> I would like to remove spaces between objects. For your reference, here I >> have pasted sample coding. >> >> Can anyone look into this code and

[flex_india:26573] Remove Space Between FormItem and Label Object

2009-11-11 Thread Ramya Arumugam
Hi, I would like to remove spaces between objects. For your reference, here I have pasted sample coding. Can anyone look into this code and let me know how to remove space between FormItem and Label Object? http://www.adobe.com/2006/mxml"; layout="absolute" paddingLeft="10"> T

[flex_india:26571] Re: Useful Actionscript and Flex optimization techniques

2009-11-11 Thread Ramya Arumugam
Hi Saravana, Thank you for sharing your knowledge with us. It would be helpfull for everyone, who are all using FLEX. Thanks, Ramya On Wed, Nov 11, 2009 at 8:09 PM, Saravanan wrote: > > HI All, > > I come across this tips of optimizing Actionscript and flex code... > > http://www.insideria.c

[flex_india:26555] Single Quotes in Flex3

2009-11-11 Thread Ramya Arumugam
Hi, I have a textarea to enter data with special characters. It takes more time to save the entered data into database as i'm doing the single quotes validation in backend i.e java code section. So, I would like to know how to do the single quotes in mxml section. Kindly share your knowledge.

[flex_india:25842] Call A Function when the value of the TextInput change

2009-10-12 Thread Ramya Arumugam
Hi All, I wanna call method in every 5 seconds, once the value of TextInput object get changed. Is any property there to use other than ValueCommit property? Thanks, Ramya --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

[flex_india:25790] Re: How to find the Network Disconnect?

2009-10-09 Thread Ramya Arumugam
; for your request to the server (although not > foolproof, it will work most of the times) > > Regards, > Venkat > > On Oct 9, 6:19 pm, prajnith K wrote: > > > > http://www.adobe.com/2006/mxml"; > > creationComplete="init()"> > >

[flex_india:25789] Re: How to find the Network Disconnect?

2009-10-09 Thread Ramya Arumugam
2009 at 6:49 PM, prajnith K wrote: > > http://www.adobe.com/2006/mxml"; > creationComplete="init()"> > > > > > > Prajnith > > > > On Fri, Oct 9, 2009 at 5:49 PM, Ramya Arumugam > wrote: > >> Hi All,

[flex_india:25775] How to find the Network Disconnect?

2009-10-09 Thread Ramya Arumugam
Hi All, Hope all are doing good. Am using HTTPService in out application to connect server . Is any method there to find the network disconnect in flex? Thanks, Ramya --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[flex_india:25495] Re: Database Interaction with Flex

2009-09-25 Thread Ramya Arumugam
Thank you for your reply. On Fri, Sep 25, 2009 at 2:28 PM, Mohamed Abdulla wrote: > > Hey there is no way the database can be connected to Flex or intimate > > so u have send a parameter saying that the database is disconnected > > or use some technique on the server side and send data to the fle

[flex_india:24803] Print pdf file in Flex

2009-08-26 Thread Ramya Arumugam
Hi All, I have placed a pdf file under a folder in Linux server and my .swf file also deploy in the same server.. My question is how do we pass this pdf path to take printout in flex? Please help me out Thanks, Ramya --~--~-~--~~~---~--~~ You received this m

[flex_india:24797] Re: I want to store an image on the server

2009-08-26 Thread Ramya Arumugam
Hi, We did the same concept in flex using JSP not PHP. Anyway we pasted the .mxml and .jsp file coding for your reference. Hope this will give good idea to do in php. *.mxml file*

[flex_india:24800] Re: Date comparision

2009-08-26 Thread Ramya Arumugam
Hi Rajesh, Try the below code for 2 date compare: import mx.utils.ObjectUtil; import mx.controls.Alert; public var test1:Date = new Date(7/26/09); public var test2:Date = new Date(7/21/08); function compareDates(date1:Date, date2:Date):void{ if(ObjectUtil.dateCompare(date1, date2) > -1){ Aler

[flex_india:24792] Re: Datagrid column width

2009-08-26 Thread Ramya Arumugam
Hi, Here is the code to set the datagrid columns width * private* *var* dgData:Array = [{*"col1"*:0,*"col2"*:*"a1"*,*"col3"*:*"b1"* },{*"col1"*:1,*"col2"*:*"a2"*,*"col3"*:*"b2"*} ]; Hope this will helpfull for you. Thanks, Ramya On Wed, Aug 26, 2009 at 4:13 PM, lalji wrot

[flex_india:24721] Call Client Machina's Printer

2009-08-24 Thread Ramya Arumugam
Hi All, Is there any provision in flex to call client machine's printer to take printout? Thanks, Ramya --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email

[flex_india:24609] Re: Length of the Empty DataGrid

2009-08-19 Thread Ramya Arumugam
h > > On Tue, Aug 18, 2009 at 10:20 PM, Ramya Arumugam < > friendramya2...@gmail.com> wrote: > >> Hi, >> >> I got the solution..thanks a lot.. >> >> >> Ramya. >> On Tue, Aug 18, 2009 at 6:32 PM, Ravi Mishra wrote: >> >&

[flex_india:24588] Re: Length of the Empty DataGrid

2009-08-18 Thread Ramya Arumugam
!= null){ > RecLength = dg.dataprovider.length; > } > else{ > RecLength = 0; > } > > Where RecLength is the length of datagrid. > > HTH, > > -Ravi > http://achieveravi.blogspot.com > > On Aug 18, 4:41 pm, Ramya Arumugam wrote: > > Hi All, > > > > Im us

[flex_india:24583] Length of the Empty DataGrid

2009-08-18 Thread Ramya Arumugam
Hi All, Im using datagrid, which has* id as dg* and also have two scenarios: 1) First scenario - data will be populated and displayed it on the datagrid by using dataprovider and am able to get the length of the datagrid by using *dg.dataprovider.length*. 2) Another scenario - data wouldnt be

[flex_india:24271] Radio Button Inside DataGrid

2009-08-05 Thread Ramya Arumugam
Hi, I have placed radiobutton inside the datagrid , which has vertical and ahorizontal scroll bars, using the below code: <*mx:columns*> Also able to click a radiobutton at atime. But, when i use the vertical scroll to move up and down, the selected radiobutton is become unselected and anot

[flex_india:24068] Upload Image File

2009-07-29 Thread Ramya Arumugam
Hi All, Can any one tell us how to upload image file and save it in database? Thanks, Ramya --~--~-~--~~~---~--~~ 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_in

[flex_india:23874] Set Focus on the Pop-Up Window

2009-07-21 Thread Ramya Arumugam
Hi All, I have created two flex pages, one is the main page that has button to open the another felx page. Now, i need to set the focus on the text box which placed on the second flex page. Just let me know how to do this... Thanks, Ramya --~--~-~--~~~---~--~--

[flex_india:23781] Re: Convert swf to mxml

2009-07-16 Thread Ramya Arumugam
compile time (on pre compilation). > > Result: you can see only AS output on decompilation. > Regards, > Devaraj > > On Jul 16, 6:47 pm, Ramya Arumugam wrote: >> Hi All, >> >> I have created a mxml file using Adobe Flex Builder and moved the >> compiled swf f

[flex_india:23777] Convert swf to mxml

2009-07-16 Thread Ramya Arumugam
Hi All, I have created a mxml file using Adobe Flex Builder and moved the compiled swf file into our tomcat sever and other files were storing @ my desktop. Last week, i have formated my deskop and lost all mxml files. I dont have any back ups for the mxml file. Now i need to do some changes on

[flex_india:22754] Focus on the Text box when page loaded

2009-06-04 Thread Ramya Arumugam
Hi All, Normally in HTML, we can set the focus on the text box using onload() method in the tag. I need the same requirement in flex. Provision is there to set focus but user has to click on the any part of the loaded form to trigger the focus method. But i need it when the form loaded. How d

[flex_india:22571] Place Radio Button in the DataGrid

2009-05-28 Thread Ramya Arumugam
Hi Friends, How do we place the radio button in the datagrid using itemrenderer? Can anyone advice me. Thanks, Ramya --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this gro