[flex_india:19676] Re: Doubt

2009-02-25 Thread ramesh1703
Specify percentageWidth, percentageHeight for the box you are adding dynamically. And Remember to specify the width, height for your Application and Canvas On Tue, Feb 24, 2009 at 21:42, karthikeyan cs wrote: > Hai dear friend, > Here the solution for your problem. >

[flex_india:19677] chart issue

2009-02-25 Thread abhishekchess1
hey frnds, plz check my code , and tell me wat to change to increase font of x axis labels , cause it it not readable http://www.adobe.com/2006/mxml"; layout="absolute" width="310" height="250" > @font-face { src: local("Arial"); font-family: EmbeddedArial

[flex_india:19679] Re: How to get the count of Combo box items ??

2009-02-25 Thread rakesh.s.
Hi Dileepen, Thanks for the quick reply. But I didn't see any property like 'length' for 'dataProvider'. All I could see is the following methods while selecting 'comboBoxId.dataProvider' hasOwnProperty() isPrototypeOf() propertyIsEnumerable() setPropertyIsEnumerable() toLocaleString() toString(

[flex_india:19678] datagrid collectionchange

2009-02-25 Thread mandy
Hey guys, I have a datagrid which dataprovider is an arraycollection that is loaded from a PHP page. What i wanna do now is detect the changes in the arraycollection and display it in another datagrid?Is it possible to be done using collectionchange? --~--~-~--~~~---~

[flex_india:19680] Re: datagrid collectionchange

2009-02-25 Thread Ravi
Add the following event listener to your arrayCollection. yourArrayCollection.addEventListener (CollectionEvent.COLLECTION_CHANGE,collectionChangeHandler); -Ravi On Feb 25, 1:32 pm, mandy wrote: > Hey guys, > > I have a datagrid which dataprovider is an arraycollection that is > loaded from a

[flex_india:19681] Re: How to get the count of Combo box items ??

2009-02-25 Thread dhileepen chakravarthy
> > > http://www.adobe.com/2006/mxml"; > layout="absolute" initialize="initApp()"> > > > > > > > > Select > Quality of documents > Software problem >

[flex_india:19682] Re: XMLList as dataprovider

2009-02-25 Thread Ravi
Hi Vivian, Here is a small code for XMLList as a dataprovider for datagrid. http://www.adobe.com/2006/mxml";>

[flex_india:19683] Re: How to give blur effect for the image

2009-02-25 Thread sudhi
Dear Neelima, I dont know the exact solution but There is a property called filters for Sprite/Canvas.. first before it loads apply a blur filter on the image or sprite or canvas then as the time runs the blurring effect should be reduced... Hope it may help you ... Regards Sudhi --~--~--

[flex_india:19684] Re: Embed swf file in flex project

2009-02-25 Thread Ravi
your code should be: [Embed (source="RootInCenterCircleLayoutDemo.swf")] public var CircleLayoutDemo:Class and use CircleLayoutDemo as a source for SWF loader or Image. -Ravi On Feb 25, 10:03 am, Asha wrote: > Hi All, > I tried embeding swf file in flex project as below: > function init(){ >

[flex_india:19685] Re: XMLList as dataprovider

2009-02-25 Thread Vivian Richard
Thanks Ravi! Let me educate myself from it... On Wed, Feb 25, 2009 at 1:32 AM, Ravi wrote: > > Hi Vivian, > > Here is a small code for XMLList as a dataprovider for datagrid. > > http://www.adobe.com/2006/mxml";> >     >         >             >                 >                 >    

[flex_india:19686] Re: XMLList as dataprovider

2009-02-25 Thread Vivian Richard
Great But I got a question even though this code works perfect, my understanding is that since you are putting the dataprovider as "capitals[0].Capitals.capital" the datagrid will only show the first element of the XMLList. But how come it is also showing the next item and as I

[flex_india:19687] Re: XMLList as dataprovider

2009-02-25 Thread Ravi
capitals[0].Capitals.capital will bring all the descendents(as XMLList) which have name as "capital". This is how the XMLList work. If you want to restrict it to just one node then you can use capitals [0].Capitals[0].capital or capitals[0].Capitals[1].capital. -Ravi On Feb 25, 3:05 pm, Vivian R

[flex_india:19688] Re: chart issue

2009-02-25 Thread GnanaPrakasam T
use labelRenderer attribute to change the properties of axis labels to change the axis label font size define one renderer that extends label in that renderer ,using setstyle method change the proprties within use set data() derived function Gnanz.../ http://gnanz-flexworld.blogspot.com abhis

[flex_india:19689] Fwd: [flex_india:19687] Re: XMLList as dataprovider

2009-02-25 Thread sri . mummani
Hi All, can any one have idea about how to design context-sensitive help for an application in flex(please provide me samples) thanks, srini --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" g

[flex_india:19692] Ediable Combobox with Datagrid as itemrenderer

2009-02-25 Thread jatin
hi, i want to have a editable combo box with datagrid as item renderer. now the problem is when user type any thing in the editable combo box the datagrid needs to be filtered accordingly. i cant create any sort of link between the CB and the rendered DG. can any one provide me the solution or any

[flex_india:19691] Doubt in Tree

2009-02-25 Thread vnatrajanmca
Hi dudes, how to focus the parent node from child node here Adobe is my parent node , flex,air,photoshop and coldfusion is my child node am doing performing some operations in child node after i want to focus Adobe (Parent node). how to do it Thanks in Advance Regarsd Natarajan V --~

[flex_india:19690] Flash swf into flex application

2009-02-25 Thread saravanan
Hi, I am newbee to flex. I need to use a flash .swf file into flex application. Below is the HTML code. it is working fine. var so = new SWFObject( "1296/folio.swf", "mymovie"); so.useExpressInstall("expressinstall.swf"); so.addParam("quality", "high"); so.addParam("salign", "t"); so.addVaria

[flex_india:19693] Re: How to get the count of Combo box items ??

2009-02-25 Thread rakesh.s.
Thanks a lot Dhileepen.. that really worked.. Appreciating your time and effort. Regards, Rakesh Sivan. On Feb 25, 4:28 am, dhileepen chakravarthy wrote: > > > > http://www.adobe.com/2006/mxml"; > > layout="absolute" initialize="initApp()"> > >     > >         > >     > > >     > >     >

[flex_india:19694] Dynamic way of adding the data to the datagrid

2009-02-25 Thread swathi
Hello All, I am hanging near a piece of code , want some suggestions :( I created a data grid using flex2.0 , added columns to it dynamically by passing the header text as the parameter to the following function. private function addDataGridColumn(dataField:String):void {

[flex_india:19695] Re: Dynamic way of adding the data to the datagrid

2009-02-25 Thread GnanaPrakasam T
Hi Swathi For his you have to define the datafield also when creating new column, For this if you have change your columnData Array as Arraycollection and add datas with the labels what you have specifies as datafield for coloumn private function addDataGridColumn(dataField:String):void {

[flex_india:19696] Re: Fwd: [flex_india:19687] Re: XMLList as dataprovider

2009-02-25 Thread Vivian Richard
Hi Srin, please start a new thread for your request. Also title it appropriately so that the readers will get an idea about your inquiry. Since you posted your inquiry in this thread, most of the readers will think that we are discussing about XMLList. Regards On Wed, Feb

[flex_india:19697] Re: XMLList as dataprovider

2009-02-25 Thread Vivian Richard
By the way thanks a lot Ravi for taking your time and very clearly answering my request. You ROCK man! On Wed, Feb 25, 2009 at 2:20 AM, Ravi wrote: > > capitals[0].Capitals.capital will bring all the descendents(as > XMLList) which have name as "capital". This is how the XMLList work

[flex_india:19698] Re: Dynamic way of adding the data to the datagrid

2009-02-25 Thread swathi
Thanks Prakash for the quick reply , but i want to add data dynamically , no hardcoding can be done i am reading a text file from a server , formating it , taking the headers , and passing them to the columns . here in the below code the result strarr is an array resultstrarr = recordstring

[flex_india:19699] Bitwise Copy in flex

2009-02-25 Thread akshay
Hi all, I wanted to know that is there a bitwise copy in flex (like in JAVA) ?? Thanks in advance, Regards, Akshay --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this

[flex_india:19700] Re: Flash swf into flex application

2009-02-25 Thread Saravanan
Hi try to use SWFLoader in flex to load flash swf in flex... -sara On Feb 25, 3:45 pm, saravanan wrote: > Hi, > >  I am newbee to flex. I need to use a flash .swf file into flex > application. Below is the HTML code. it is working fine. > > > > var so = new SWFObject( "1296/folio.swf", "mymov

[flex_india:19701] Re: How to give blur effect for the image

2009-02-25 Thread Saravanan
Load the thmbnail in one container and strech it to height and width of orginal image and load the orginal image after that and once loading is complete remove the thumb image.. -sara designscripting.com On Feb 25, 2:44 pm, sudhi wrote: > Dear Neelima, > > I dont know the exact solution but > >

[flex_india:19702] Issue with CheckBox

2009-02-25 Thread Sankar
Hi All, In my application am using the [b]List Control[/b] and the [b] itemRenderer[/b] to display the data which comes from the [b]DataBase[/ b].On [b]creationComplete[/b] of my parent component(List component exists here),am calling a method which gets the data from the database and i have

[flex_india:19703] numeric validator prob

2009-02-25 Thread sam
Hi I am trying to set number validator for many textInputs present in one form. I am unable to do so. My code is: http://www.adobe.com/2006/mxml"; layout="absolute">

[flex_india:19704] Access HTTPS page from Flex using HTTPService

2009-02-25 Thread GnanaPrakasam T
Hi All, How to access HTTPS pages using HTTPservice. Thanks in ADvance Gnanz.../ http://gnanz-flexworld.blogspot.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this gro

[flex_india:19705] Re: numeric validator prob

2009-02-25 Thread GnanaPrakasam T
Hi Sam, Define your validator initially and just assign the source component and call validate . this will work http://www.adobe.com/2006/mxml"; *creationComplete="init()"* layout="absolute"> > > > > > >restrict="012345678910 .

[flex_india:19706] Sorting data in list

2009-02-25 Thread Asim
Hi all I need to have alphabetical sorting enabled for a list that takes data from an arrayCollection. This is my code http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="disable()"> {fnameInpu

[flex_india:19707] security error accessing url

2009-02-25 Thread sankar swaroop
[RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Destination: DefaultHTTP"] at mx.rpc::AbstractInvoker/ http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C :\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:220] at

[flex_india:19708] Re: How to give blur effect for the image

2009-02-25 Thread subeesh a
Hi, You can find an example here http://subeesh.wordpress.com/2008/10/20/flickr-photo-search-in-flex/ -- Subeesh http://subeesh.co.nr --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To

[flex_india:19709] Re: numeric validator prob

2009-02-25 Thread sam
thanx...i gt it 4 the textInputs. i am stuck wit combo Boxes with same problem of tabbing n normal mouse eventscan u help me plz? http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="validateText()">

[flex_india:19710] How to create XML document in flex

2009-02-25 Thread akshay
Hi all, I am developing one application in which i want to create XML document where i want to save display object.. Can u tell me that how can i do it ?? Is there any API to create document ?? --~--~-~--~~~---~--~~ You received this message because you a

[flex_india:19711] Re: security error accessing url

2009-02-25 Thread Ravi
Hi Sankar, I think the JSP you are accessing is deployed on remote server. I mean the flex application is not on the same server as the JSP is. To remove this error you will have to use crossdomain file and you have to put this crossdomain file on the root of the server where you have deployed th

[flex_india:19716] Refresh the program except array

2009-02-25 Thread mandy
Hey, I have a program which will reload the application on timerevent. However, I do not want know refresh a particular array. Can it be done? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Comm

[flex_india:19717] Exception when using excell sheet

2009-02-25 Thread dhineshbhara...@gmail.com
Hi All, I am using as3xls-1.0.swc to get data from excel sheet.It worked fine.Now if i add data to new cell or edit any data its giving exception like: Error: Error #2030: End of file was encountered. at flash.utils::ByteArray/readUnsignedShort() at com.as3xls.biff::Record/readU

[flex_india:19713] Gradient effect

2009-02-25 Thread bogi raju
Hello Friends, we can apply gradient effect to "" Can we apply the same gradient effect to all the tags. container, vbox, hbox,... etc Thanks & Regards Raju Bogi. --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[flex_india:19712] Re: How to get the count of Combo box items ??

2009-02-25 Thread Christian Camilo Arias Vergara
Hi List I need yto show a Dialog Box, progress bar or information box, when I send a data to server with remote objects. Anyone knows something about this?? Please Heeelp :S Christian --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[flex_india:19714] Re: datagrid collectionchange

2009-02-25 Thread mandy lee
Thanks for the reply. What I reli wanna know now is my arraycollection will only change data after refresh. so does the method can help? By the way, what is the class shudi import? On 2/25/09, Ravi wrote: > > > Add the following event listener to your arrayCollection. > > yourArrayCollection.addE

[flex_india:19715] Multiline Labels in Tab navigator ??

2009-02-25 Thread rakesh.s.
Hi All, Is there any way to display multiline labels in Tab navigator. I have created a Tab navigator, and added 2 tabs having 'VBox' and 'Canvas' as containers. But for both lengthy strings show (...) at the end, where the complete string is visible through tooltip. Is there any work around for

[flex_india:19718] Re: How to create XML document in flex

2009-02-25 Thread akshay
Hi all, Pl reply to this post.. Thanks Akshay On Feb 26, 10:10 am, akshay wrote: > Hi all, >            I am developing one application in which i want to create > XML document where i want to save display object.. > Can u tell me that how can i do it ?? Is there any API to create > docu

[flex_india:19719] Could not resolve

2009-02-25 Thread malavika
Hi All, I'm using Advacned Datagrid in my Flex Application, and later on deploying the appl in Tomcat, but when i try to run the application it's giving error as "Could not resolve to a component implementation". As ADG is not part of SDK, I tried bu putting "datavisualization.swc" and

[flex_india:19721] compression

2009-02-25 Thread Flex Baby
Hey i have 1 map appli datagrid.i want to load points in map & also load details in Datagrid. it loads,but very late to lpad. any method to display the data(any compressed format) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

[flex_india:19720] urgent

2009-02-25 Thread Flex Baby
Hey,i want to display data from server to datagrid.it is too late to loads. so any method to reduce the loading time. urgent --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to t

[flex_india:19722] Opportunity for Flex Developer with Fortune 500 MNC, Noida

2009-02-25 Thread shikha
POSITION TITLE – FLEX DEVELOPER JOB LOCATION: NOIDA Job Description: The person is expected to Analyze, design, code, & perform unit testing Flex/Java based agile development environment. REQUIREMENT DISCRIPTION: • 3-4 years of IT experience with minimum 1.5 years in J2EE based projects. • Shoul

[flex_india:19723] Re: Reading Excel file from flex-3

2009-02-25 Thread Dinesh Kumar
Hi Rahul, I am facing the problemif you got the soution please help me... Thanks, DineshKumar.T On Fri, Jan 9, 2009 at 1:01 PM, Rahul wrote: > > Hi All, > Can any one help me out in Reading Excel file in Flex-3 > > I tried following code with as3xls liabrary. > > it is sending me error.. >