[flex_india:20693] Re: providing data to datagrid at run time

2009-03-20 Thread Ravi Mishra
Dont declare the dcolumn as a global variable.declare it locally in the function where you are running the for loop and then push this dcolumn to gridcolumns array and then finally assign this array to the columns property of datagrid. BTW what is columns in the for loop? -Ravi On Mar 20, 7

[flex_india:20692] Re: themes in flex

2009-03-20 Thread kalpesh mahida
Hi, Go through this link: http://ntt.cc/2008/05/03/over-15-strongly-recommand-tutorials-you-must-read-for-creating-skins-and-themes-ui-design-in-flex.html Regards, Kalpesh Mahida On Fri, Mar 20, 2009 at 11:09 AM, flex wrote: > > hi all, > can anybody tell me how can we used themes in flex. >

[flex_india:20691] Re: Vertical Scroll Bar

2009-03-20 Thread kalpesh mahida
Also u can give fixed height and width to your outer container with scroll policy having on for that and for inner container you may have scroll policy off. so in that way if your inner container have some children within it, that will force your inner container to be larger than your outer contain

[flex_india:20690] Re: Vertical Scroll Bar

2009-03-20 Thread Vaibhav/Steve
One solution could be that you can scale the content with in your container. Or you can scale your container and put it inside another container. use scaleX / scaleY properties. :Vaibhav On Mar 20, 3:49 pm, Yogesh Gaur wrote: > http://blog.flexexamples.com/2008/08/27/setting-the-horizontal-scro

[flex_india:20689] Re: How can i adjust the label of legend

2009-03-20 Thread Vaibhav/Steve
hi Akshay, I think that, it is because default itemrenderer in legend is Label. Find a way to override it to text, it will wrap the text. Hope it works and tell me also. : Vaibhav On Mar 20, 7:21 pm, akshay wrote: > Hi all, > I am doing graph application in which i am showing legends.. But the

[flex_india:20688] How can i adjust the label of legend

2009-03-20 Thread akshay
Hi all, I am doing graph application in which i am showing legends.. But the problem is that if Legend's label size is larger then it is not displaying properly.. Here is my code ...

[flex_india:20687] Re: providing data to datagrid at run time

2009-03-20 Thread Akhil Agrawal
[Bindable] private var queryResult:ArrayCollection=new ArrayCollection(); [Bindable] private var gridcolumns:Array=new Array(); private var grid:DataGrid=new DataGrid(); [Bindable] private var dcolumn:D

[flex_india:20686] Re: providing data to datagrid at run time

2009-03-20 Thread Ravi Mishra
Can you pls send your complete code.as I am not able to understand what is gridColumns? GridColumns should be an Array and you should loop through each property of a row like this for each(var str:string in rowObject){ // your code of creating and pushing the columns in GridColumns array }

[flex_india:20685] providing data to datagrid at run time

2009-03-20 Thread Akhil Agrawal
Hi all, I have many rows in a arraycollection in tha form {'Category ID':'null', 'Software Feature ID':'null', 'Event Date':'Tue Mar 17 11:40:13 IST 2009', 'Event Type ID':'2102006'} where category id and other are columns and creating datagridcolumn like this dcolumn=new DataGridColumn(colName.

[flex_india:20684] Flex with Java struts...!!!

2009-03-20 Thread Jagadish M
Hi all..!!! Can any one share the resources to learn flex with java integration 1. How to write code both java code and flex code by using single IDE like eclipse or Flex builder. 2. Remotobject concepts (calling java code with flex component remoteobject.) 3. Integrating flex with struts. Can

[flex_india:20683] Re: Whats the difference?

2009-03-20 Thread Yogesh Gaur
http://www.cs.vu.nl/~eliens/assets/flex3/langref/mx/rpc/http/HTTPService.html both are used for different purposes ... destination may or maynot be used with url ... destination is used to specify which type of http service is to be used to access this url (one u mentioned in the url field) ... a

[flex_india:20682] small doubt

2009-03-20 Thread Flex Baby
hi,we r doing map side codings.we r using ARCGIS. wat the different bw google codes(API) & ARCGIS? wa can use the google codes in our project? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" g

[flex_india:20679] Re: Arraycollection to xml

2009-03-20 Thread Yogesh Gaur
this is has come up before too i guess ... just look at this nice post by Mr Devraj :) http://nsdevaraj.wordpress.com/2008/08/20/arraycollection-xml/ On Mar 20, 9:37 am, vinod kumar wrote: > Hi all, > > I am using advanceddatagrid with treestructure. I used Arraycollection as > Dataprovider for

[flex_india:20681] Flex with Java struts...!!!

2009-03-20 Thread Rajveer Goud.
Hi all..!!! Can any one share the resources to learn flex with java integration 1. How to write code both java code and flex code by using single IDE like eclipse or Flex builder. 2. Remotobject concepts (calling java code with flex component remoteobject.) 3. Integrating flex with struts. Can

[flex_india:20678] Tree Control how to get the path of the selected node

2009-03-20 Thread Bhaskar
Hi All, Could someone tell me how to get the path of a select node from the root in the tree control. I have 5 levels of node in Tree i may selected any level, if i selected 4th level node, i need to get path of that selected node, Regards, Bhaskar --~--~-~--~~~---~

[flex_india:20677] Re: How to make Multiline

2009-03-20 Thread Yogesh Gaur
try the link below .. they use custom item renderer for word wrapping and data grib word wrapping ... i think it will solve ur problem http://blog.flexexamples.com/2007/09/25/creating-a-custom-combobox-item-renderer-in-flex/ http://blog.flexexamples.com/2008/09/14/toggling-word-wrap-on-a-datagri

[flex_india:20680] Re: Vertical Scroll Bar

2009-03-20 Thread Yogesh Gaur
http://blog.flexexamples.com/2008/08/27/setting-the-horizontal-scrollbar-policy-on-a-datagrid-control-in-flex/ On Mar 20, 9:21 am, Rosegarden wrote: > I would like to get rid off the scroll bars i have in my container , > but this time i may not be able to show all contents inside of it. Is >

[flex_india:20676] Re: passing data between components via HTTPService

2009-03-20 Thread ganaraj p r
U need to make two different handlers.. 1) for the login Request .. coming from the login form... 2) for the result coming back from the http service.. U have declared both with the same name.. First of all change that.. U cant directly access the loginUser and pass.. either u have to call _st

[flex_india:20675] Re: How to Prevent Client side caching.

2009-03-20 Thread Neha
Its working with Math.random(); Thanks a lot to all of you On Mar 20, 2:43 pm, Nishant Kyal wrote: > Hi, > You can append "?" + Math.random(); > > This will make the url unique everytime and cause flash player to fetch it > from server instead of cache. > > Regards > Nishantwww.itasveer.c

[flex_india:20674] Re: problem with Advanced DataGrid

2009-03-20 Thread Ravi Mishra
Check your version of sdk.it should be greater than 3.3. It was a bug in initial version of sdks. -Ravi On Mar 20, 9:31 am, vinod kumar wrote: > Hi, > Instead of using httpservice you have to use URLLOADER. > > var loader:URLLoader=new URLLoader(); >             var path  = _serverpath+".ph

[flex_india:20673] Re: SWC creation with Ant scripts

2009-03-20 Thread riaflexible
PLEASE ANY INPUTS FOR THE ABOVE NESSAGE. On Mar 18, 4:35 pm, riaflexible wrote: > Hi , > > Please have a look at the below script , This script generates the > swc , Including the four jpgs which i have mentioned . > > This is fine if know only 4 jpgs we use in SWC . > > If we keep adding jpgs ,

[flex_india:20672] Re: How to Prevent Client side caching.

2009-03-20 Thread Neha
Hi, random number approach will work when we are clicking on a link and calling a new page. In this scenario we can append random no to the url. But I am running my application and make some changes to the main page and save the data. And when I refresh the page the, it does not display the save

[flex_india:20671] Timing issue

2009-03-20 Thread pradeep.pa...@gmail.com
Hi, I have an videchat application where i have some thing like "refresh" button. When the video are subscribed on the either side, on the click of "refresh" button the subscribing videos must be removed and re- subscribe again. When i press refresh, 1. the subscribing video panels on the subscrib

[flex_india:20669] Re: How to Prevent Client side caching.

2009-03-20 Thread Kunal Pagariya
Its a browser problem Change the file name every time so that it will take new file and not the old one. Thanks kunal.pagar...@gmail.com 2009/3/20 kalpesh mahida > Hi, > > Try to append a unique parameter every time to your URL. > > Regards, > Kalpesh Mahida > > 2009/3/20 Neha > > >> It

[flex_india:20670] Re: flex 3D

2009-03-20 Thread ganaraj p r
Its feasible.. because someone has already done it :) Do you want to do exactly as the demo? Yes it should be feasible.. On Fri, Mar 20, 2009 at 9:23 AM, rajlaxmi jalan wrote: > hi > that works fine but that does not suffice my requirements, can the demo > that i mailed be coded. Does that look

[flex_india:20668] Re: How to Prevent Client side caching.

2009-03-20 Thread shariff
hi neha go through this link hope it solves u r problem http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=performance_118_13.html On Mar 19, 11:56 am, Neha wrote: > Hi, > Please tell me how to prevent client side caching in Flex. >

[flex_india:20667] Re: How to Prevent Client side caching.

2009-03-20 Thread Nishant Kyal
Hi, You can append "?" + Math.random(); This will make the url unique everytime and cause flash player to fetch it from server instead of cache. Regards Nishant www.itasveer.com 2009/3/20 kalpesh mahida > Hi, > > Try to append a unique parameter every time to your URL. > > Regards, > Kalpesh M

[flex_india:20666] Re: How to Prevent Client side caching.

2009-03-20 Thread kalpesh mahida
Hi, Try to append a unique parameter every time to your URL. Regards, Kalpesh Mahida 2009/3/20 Neha > > Its not workingyour help is appreciated... > it is displaying the data from the cachewhen I delete the > Temporary Internet files from the > Tools -> Internet Options then it display

[flex_india:20665] Re: Any body know php IDEs

2009-03-20 Thread kalpesh mahida
Hi, Also we can install FirePHP Add-on of Mozilla Firefox. FirePHP enables you to log to your Firebug Console using a simple PHP method call. All data is sent via response headers and will not interfere with the content on your p

[flex_india:20664] Re: How to Prevent Client side caching.

2009-03-20 Thread Neha
Its not workingyour help is appreciated... it is displaying the data from the cachewhen I delete the Temporary Internet files from the Tools -> Internet Options then it displays the fresh data. Thanks, Neha On Mar 20, 1:10 pm, ganaraj p r wrote: > Im not sure if this prevents the client

[flex_india:20663] Re: how to call .air in java

2009-03-20 Thread prasad
Hi Folks, I already tried one sample , its working great. The steps followed 1) Use socket communication between java and air . 2) Send AIR path to java or hardcode the path in java 3) From java using Runtime.getRuntime().exec("{air file path}"

[flex_india:20662] passing data between components via HTTPService

2009-03-20 Thread 0!
hello. i have a simple flex application which should display two states. one is called '_start' and other is 'main'. basically what i want to do is to display a login screen (username and password) in the '_start' state and after entering details to check for that username in mysql database and i

[flex_india:20661] passing data between components and HTTPService... warning: noob quesion =)

2009-03-20 Thread 0!
hello. i have a simple flex application which should display two states. one is called '_start' and other is 'main'. basically what i want to do is to display a login screen (username and password) in the '_start' state and after entering details to check for that username in mysql database and i

[flex_india:20660] How to make Multiline

2009-03-20 Thread Rosegarden
Below ones are the code for the "Title" and " looking for" fields. When titles and looking for are too long they are being cut off. I would like to make them multiline. What should i do? You can see from this URL.http://profiles.zolio.com/private/zolio/ e60ed95a5c9925da21bf71f617b056a867f0bb1e#

[flex_india:20659] Whats the difference?

2009-03-20 Thread Rajveer Goud.
Hi all..!!! Can any one help what exactly the difference between HttpService object *url * method and *destination* method. in action script/ mxml. Regards Rajveer. -- http://bujjiaward.blogspot.com/ --~--~-~--~~~---~--~~ You received this message because you ar

[flex_india:20658] change stage size dynamically.

2009-03-20 Thread kunal
hi I want to set Width and Height of Stage dynamically. --~--~-~--~~~---~--~~ 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_india@googlegroups.com To unsubscribe fr

[flex_india:20656] Arraycollection to xml

2009-03-20 Thread vinod kumar
Hi all, I am using advanceddatagrid with treestructure. I used Arraycollection as Dataprovider for advanceddatagrid.Now i want to convert the Arraycollection to xml for storing it to database with php as backend. How is it possible. Please help me --~--~-~--~~~---~--~-

[flex_india:20648] need optimized solution for setting the value in comboBox

2009-03-20 Thread kundan singh
Hi friends , I have comboBox and it is bind to array collection . the data in arraycollection is populating from backends , and I have to set the data on comboBox. for this I have made a change event on array collection , like :- private function fillcombo():void{ populate state(); cmbStat

[flex_india:20652] Re: Execute exe files from Adobe air

2009-03-20 Thread Anil
either post on a blog and paste link here as someone already mentioned...or just give me : anil.kadimise...@gmail.com Thanks in Advance On Mar 19, 9:53 am, nagu wrote: > my mailID is   nagarjuna0...@gmail.com > > On Mar 19, 6:51 pm, nagu wrote: > > > Hi Vicky, > > >    Great work vicky. Please

[flex_india:20653] Re: problem with Advanced DataGrid

2009-03-20 Thread Anil
I use an XMLListCollection for my ADG. while declaring i do it as: public var stockDataListCollection:XMLListCollection=new XMLListCollection(); and not like : >public var ADGData:XMLList; (in ur code) change that and see..it may work On Mar 19, 10:48 am, sankar swaroop wrote: > Hi all, > >

[flex_india:20644] Re: How to Prevent Client side caching.

2009-03-20 Thread ganaraj p r
Go to the javascript file that is created along with the swf and html..It will be called AC_OETags.js In that js file go to this function and make the changes as highlighted. function AC_FL_RunContent(){ var ret = AC_GetArgs ( arguments, ".swf?foo", "movie", "clsid:d27cdb6e-ae6d-11cf-9

[flex_india:20655] Re: problem with Advanced DataGrid

2009-03-20 Thread vinod kumar
Hi, Instead of using httpservice you have to use URLLOADER. var loader:URLLoader=new URLLoader(); var path = _serverpath+".php"; loader.load(new URLRequest(path)); loader.addEventListener(Event.COMPLETE,onUrlLoadComplete); public function onUrlLoadComplete(eve

[flex_india:20646] Re: Any body know php IDEs

2009-03-20 Thread ganaraj p r
Eclipse.. Has a few plugins.. PDT... PHPEclipse.. etc.. I currently use PDT.. Yes you can set break points and do inspect variables.. On Thu, Mar 19, 2009 at 10:06 PM, GnanaPrakasam T wrote: > > > Debugging PHP programs > Hearing this First Time... > As far i know there is no need for comp

[flex_india:20647] Re: Any body know php IDEs

2009-03-20 Thread Devaraj
Hi, http://www.eclipse.org/pdt/ Try this. Regards, Devaraj On Mar 20, 9:34 am, kalpesh mahida wrote: > Hi Sudheer , > > You can check out the server log to know what is happening on the server > when you make a request to server from the flex application also one more > thing you can do is write

[flex_india:20651] Vertical Scroll Bar

2009-03-20 Thread Rosegarden
I would like to get rid off the scroll bars i have in my container , but this time i may not be able to show all contents inside of it. Is there any way to do so to get rid off the scroll bar and to show all the contents. --~--~-~--~~~---~--~~ You received this mes

[flex_india:20657] Re: Any body know php IDEs

2009-03-20 Thread sudheer kumar
HI GnanaPrakasam In my application I am passing uploading file as parameter. I am unable to debug. There some debug IDE are there for php.using them we can debug server side program step by step. On Thu, Mar 19, 2009 at 10:06 PM, GnanaPrakasam T wrote: > > > Debugging PHP programs > H

[flex_india:20649] Re: flex 3D

2009-03-20 Thread rajlaxmi jalan
hi that works fine but that does not suffice my requirements, can the demo that i mailed be coded. Does that look feasible. On Thu, Mar 19, 2009 at 9:31 PM, ganaraj p r wrote: > Well.. Lol .. > Im also trying to figure out exactly the same thing.. Take this code as > your starting point.. It

[flex_india:20645] Re: How to Prevent Client side caching.

2009-03-20 Thread ganaraj p r
Im not sure if this prevents the client from caching ur swf. But it ensures that each time the client connects to ur site.. they will be forced to load the swf from ur site ( and not use the one in cache ) 2009/3/20 ganaraj p r > Go to the javascript file that is created along with the swf and h

[flex_india:20640] change stage size dynamically.

2009-03-20 Thread kunal
Hi I want to change Stage Widht and Height dynamically. please help. Thanks --~--~-~--~~~---~--~~ 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_india@googlegro

[flex_india:20643] Re: Any body know php IDEs

2009-03-20 Thread sudheer kumar
Thanks kalpesh . you idea is relay help me a lot . show details 10:04 AM (1 hour ago) Reply Hi Sudheer , On Fri, Mar 20, 2009 at 11:18 AM, sudheer kumar wrote: > HI GnanaPrakasam > > In my application I am passing uploading file as parameter. I am unable to > debug. There some debug IDE are the

[flex_india:20654] Re: how to acess method of mxml from command in cairngrom

2009-03-20 Thread kundan singh
thanks again my problem is solved. regrads Kundan On Fri, Mar 20, 2009 at 11:06 AM, kundan singh wrote: > thanks friends, > > can I get an example for it. > > thanks in advance > kundan > > On Thu, Mar 19, 2009 at 7:08 PM, Vaibhav/Steve < > seth.vaibhav...@gmail.com> wrote: > >> >> Hi Kundan,

[flex_india:20642] Re: how to acess method of mxml from command in cairngrom

2009-03-20 Thread kundan singh
thanks friends, can I get an example for it. thanks in advance kundan On Thu, Mar 19, 2009 at 7:08 PM, Vaibhav/Steve wrote: > > Hi Kundan, > Gagan's approach is rite. You can also check my previous post which > explains the same concept in detail. > Topic is ways to show popup in Cairngorm. > >

[flex_india:20641] themes in flex

2009-03-20 Thread flex
hi all, can anybody tell me how can we used themes in flex. i want to create 1 theme and want to import it in flex. thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to

[flex_india:20650] Re: Any body know php IDEs

2009-03-20 Thread earl0983
I know that eclipse has a php bundle that includes the php ide for eclipse as well as Zend dubugger/Xdubugger which can be used to debug php applications. Regards, Adam On Mar 19, 12:30 pm, sudheer kumar wrote: > HI, > > I am unable to debug php programs while Running   flex application.  Any