[flex_india:22413] Re: Problem with canvas background image

2009-05-22 Thread sajith
Hi sankar, I think if you use tht canvas height and width as percentage , it will be k.. On May 22, 6:24 am, HISSAM hissam.sher...@gmail.com wrote: try embedding the image in a class then use it as a background image might help. Also, get image of the maximum height n width n then apply as

[flex_india:22411] Check box renderer

2009-05-22 Thread Dinesh Patil
Hi All, I have a datagrid first column cell contains check box renderer that is independent from data record, other columns represent data record. When i checked check box from first column and delete correponding record from datagrid it is deleting successfully. But it is selecting another

[flex_india:22412] Re: Problem with canvas background image

2009-05-22 Thread sajith ravi
Hi sankar, I think if you use tht canvas height and width as percentage , it will be k.. 2009/5/22 sankar swaroop sankaras...@gmail.com Hi friends, I had designed a page which contains a bannar and below a tab navigator. Here to put bannar image i used canvas and i set bannar image as

[flex_india:22414] Flex deployment Problem.

2009-05-22 Thread Santosh
Hi All, I have deployed flex application on jboss server on test machine. It works fine. Same deployment is done on production machine. But I am getting error on production machine. (chanel connection failed. Error in netConnection.call failed. ) 1. Production machine has only port no 80 open.

[flex_india:22415] Re: Flex deployment Problem.

2009-05-22 Thread Vinod M Jacob
Are you using remoting ? Also is JBoss installed in the default port 8080 ? On May 22, 10:50 am, Santosh santoshdhamdh...@gmail.com wrote: Hi All, I have deployed flex application on jboss server on test machine. It works fine. Same deployment is done on production machine. But I am getting

[flex_india:22416] Re: Check box renderer

2009-05-22 Thread Vinod M Jacob
Did you mean after deleting the row the other checkBox which were unselected gets selected? OR does it happen on scrolling down ? On May 22, 9:15 am, Dinesh Patil dineshpati...@gmail.com wrote: Hi All, I have a datagrid first column cell contains check box renderer that is independent from

[flex_india:22417] Re: Scrolling Datagrid?

2009-05-22 Thread Vinod M Jacob
In your itemRenderer, override the set data() method. Inside the method, put super.data = value. I think it will work... On May 21, 4:59 pm, Karthik K cse.k.kart...@gmail.com wrote: hi guys I have one doubt When i scroll my datagrid which contains huge data e.g 20 rows when i drag

[flex_india:22422] how to maintain the scroll position and the Page number in Datagrid

2009-05-22 Thread nikhil
Hello, I have one datagrid with paging. now if i change in one row of the datagrid it need to refresh and should maintain the scroll position of grid. so please give me some idea to how to maintain the scroll position and page in the datagrid. thanks in advance nikhil

[flex_india:22423] HTTPService Fault Handling

2009-05-22 Thread Parag
Hi All, We are using HTTPService to send request to a Servlet. We get the response in the result handler. Whenever a fault occurs on the Servlet, the control goes to the fault handler. But, we do not get the error message that is thrown on the Servlet. Servlet throws the error back to Client. It

[flex_india:22420] Re: Check box renderer

2009-05-22 Thread chandu y
Hi, Here is the solution: in the renderer use this code: mx:CheckBox id=chk click=xxx(event) horizontalCenter=0 selected={ data.isChecked}/ isChecked is a Boolean variable in the data. when ever you selecting the checkbox, make the variable true and by unselecting make it false. So, the

[flex_india:22419] Re: Flex deployment Problem.

2009-05-22 Thread Santosh
HiVinod, I am using remoting jBoss is installed on 80 port. One thing, When I hit http://serverName/config/messagebroker/amf, I get 404 error (The requested resource (/config/messagebroker/amf) is not available.) Let me know your comments. ~ Santosh On May 22, 1:56 pm, Vinod M Jacob

[flex_india:22421] Re: Problem with canvas background image

2009-05-22 Thread chandu y
Hi, try using , backgroundSize=100% Thanks, Chandu On Fri, May 22, 2009 at 9:30 AM, sajith ravi sajithr...@gmail.com wrote: Hi sankar, I think if you use tht canvas height and width as percentage , it will be k.. 2009/5/22 sankar swaroop sankaras...@gmail.com Hi friends, I had

[flex_india:22418] Error #2038

2009-05-22 Thread priya
Hi to all, I have try to upload video on server using flex and php.But after some times, i found error #2038. Anyone help me? Priyanka --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community

[flex_india:22424] API for zip and unzip files

2009-05-22 Thread dinesh
Hi All I am a creating an AIR app,where i need to unzip the contents of a zip file and store in some directory. Any one please suggest me nice API to achieve this... Thanks and Regards, DineshKumar.T --~--~-~--~~~---~--~~ You received this message because you

[flex_india:22425] Re: Check box renderer

2009-05-22 Thread Dinesh Patil
Thanks,For response but i do not want to add one field in data. I mean there is no isChecked field in data record. Thanks, Dinesh On Fri, May 22, 2009 at 2:43 PM, chandu y flexcha...@gmail.com wrote: Hi, Here is the solution: in the renderer use this code: mx:CheckBox id=chk

[flex_india:22426] Re: HTTPService Fault Handling

2009-05-22 Thread kalavati singh
Hi, For our project we have designed a User Interface(UI) using Flex .This UI needs to send/receive data to/from embedded web server(Vxworks) .Can you please let me know some of basic protocols that can help for this purpose. Let me know if you need any further inputs on my end Regards

[flex_india:22427] Flex Monkey not able to record when the application is deployed in weblogic

2009-05-22 Thread Santy
Hi All, Can somebody help me out in setting the Flex monkey for web application which is deployed in weblogic. Also i am facing a problem after deploying .swf file it's not working properly. Flex monkey is not able to record the event perform on the flex application. how shoul i go about it ? Do

[flex_india:22428] Re: Error #2038

2009-05-22 Thread Vinod M Jacob
Just check the permission for the file and folder. On May 22, 1:34 pm, priya priya11s...@gmail.com wrote: Hi to all, I have try to upload video on server using flex and php.But after some times, i found error #2038. Anyone help me? Priyanka

[flex_india:22429] Re: how to maintain the scroll position and the Page number in Datagrid

2009-05-22 Thread Vinod M Jacob
You can use scrollToIndex() method.. On May 22, 1:27 pm, nikhil 4ever.nik...@gmail.com wrote: Hello, I have one datagrid with paging. now if i change in one row of the datagrid it need to refresh and should maintain the scroll position of grid. so please give me some idea to how to

[flex_india:22430] Re: HTTPService Fault Handling

2009-05-22 Thread Vinod M Jacob
Use a try catch block in the servlet to catch the exception and check. On May 22, 3:00 pm, kalavati singh kalavati.si...@gmail.com wrote: Hi,    For our project we have designed a User Interface(UI) using Flex .This UI needs to send/receive data to/from embedded web server(Vxworks) .Can you

[flex_india:22431] Re: Flex Monkey not able to record when the application is deployed in weblogic

2009-05-22 Thread Vinod M Jacob
Which Flash Player you are using ? I think it won`t work in 10. On May 22, 2:37 pm, Santy replysant...@gmail.com wrote: Hi All, Can somebody help me out in setting the Flex monkey for web application which is deployed in weblogic. Also i am facing a problem after deploying .swf file it's not

[flex_india:22432] Re: Flex Monkey not able to record when the application is deployed in weblogic

2009-05-22 Thread Santy
I am not sure how to check for flash player version.Please help how to know my flash player version. On May 22, 3:29 pm, Vinod M Jacob flex4...@gmail.com wrote: Which Flash Player you are using ? I think it won`t work in 10. On May 22, 2:37 pm, Santy replysant...@gmail.com wrote: Hi All,

[flex_india:22435] Re: Flex Monkey not able to record when the application is deployed in weblogic

2009-05-22 Thread Santy
Flash player version in 9.0 i think. On May 22, 3:29 pm, Vinod M Jacob flex4...@gmail.com wrote: Which Flash Player you are using ? I think it won`t work in 10. On May 22, 2:37 pm, Santy replysant...@gmail.com wrote: Hi All, Can somebody help me out in setting theFlexmonkeyfor web

[flex_india:22434] Re: how to maintain the scroll position and the Page number in Datagrid

2009-05-22 Thread nikhil
that method i used in the datagrid with no pagination... and scrollToIndex method works on the index value of datagrid not on the number of items in datagrid so my problem is around the pageshow to come back to particular page in which i made changes. On May 22, 3:14 pm, Vinod M

[flex_india:22436] Re: how can i change flex default progressbar , preloader to custom preloader

2009-05-22 Thread Alex
here is a very easy code example , i have implemented in my project at this link : a href='http://askmeflash.com/article_m.php?p=articleid=7'http:// askmeflash.com/article_m.php?p=articleid=7/a --~--~-~--~~~---~--~~ You received this message because you are

[flex_india:22437] Re: Flex Monkey not able to record when the application is deployed in weblogic

2009-05-22 Thread Vinod M. Jacob
Right click mouse to get the context menu and see the flash player version. On 5/22/09, Santy replysant...@gmail.com wrote: I am not sure how to check for flash player version.Please help how to know my flash player version. On May 22, 3:29 pm, Vinod M Jacob flex4...@gmail.com wrote:

[flex_india:22438] Re: how to maintain the scroll position and the Page number in Datagrid

2009-05-22 Thread Vinod M. Jacob
How are you doing the pagination ? Can you paste the sample code here ? On 5/22/09, nikhil 4ever.nik...@gmail.com wrote: that method i used in the datagrid with no pagination... and scrollToIndex method works on the index value of datagrid not on the number of items in datagrid so my

[flex_india:22440] Re: Reg :: Giving Project Title Favicon

2009-05-22 Thread Vinod M. Jacob
You can do that in the html wrapper. On 5/22/09, Navien Amirtharaj navien.amirtha...@gmail.com wrote: Dear Folks, I want to give project title in my Flex Web Application. How can i do that. please give nice examples. and also for favicon which is display in address bar. Note:

[flex_india:22441] Re: how to maintain the scroll position and the Page number in Datagrid

2009-05-22 Thread nikhil
I do not have any specific code of pagination. I have my whole data for datagrid in a XMLList and i am dividing the data into pages on the events. like for btnPrev i am decreasing one counter and for btnNext i am increasing that counter and according to that i m dividing the data for datagrid.

[flex_india:22442] Re: Problem with canvas background image

2009-05-22 Thread sankar swaroop
Thanks friends it worked. backgroundSize=100% On Fri, May 22, 2009 at 2:32 PM, chandu y flexcha...@gmail.com wrote: Hi, try using , backgroundSize=100% Thanks, Chandu On Fri, May 22, 2009 at 9:30 AM, sajith ravi sajithr...@gmail.com wrote: Hi sankar, I think if you use tht canvas 

[flex_india:22443] Re: HTTPService Fault Handling

2009-05-22 Thread Utkarsh kaushal
Looks like you are planning to consume webservices thru UI. If yes, There are two ways either use mx:webservice/ tag in mxml or invoke it thru action script classes If no, can you please elaborate your requirement. Thanks. On Fri, May 22, 2009 at 5:00 AM, kalavati singh

[flex_india:22448] Re: Flex 3 Logging

2009-05-22 Thread Utkarsh kaushal
I do not think its possible as flash movie runs in local environment.. I am not sure. Does any one has more information on this. I think its one of the basic need for supporting web-based application. On Wed, Apr 15, 2009 at 12:43 PM, Veena veenachezhia...@gmail.com wrote: Hi All - Is

[flex_india:22444] Re: Accessing data across various mxml files.

2009-05-22 Thread Utkarsh kaushal
You can also create action script classes (Model objects) and use it in your mxml On Wed, May 20, 2009 at 2:01 AM, Kunal Pagariya kunal.pagar...@gmail.comwrote: Hi Try to make separate mxml component and use custom event. A journey of a thousand miles Begins with a single step.

[flex_india:22446] NEED more than 15 menu item in Context Menu ????

2009-05-22 Thread Dharmendra Chouhan
Hi, I really need to have more than 15 menu item displayed on Context Menu. I desperately need some workaround or ideas to achieve this My client has invested thousands of dollar in Flex Project, he definitely need more than 15 menu item.If this project failed , client will NEVER think to invest

[flex_india:22447] session.getAttribute(somekey) returning NULL in SessionDestroyed

2009-05-22 Thread Dharmendra Chouhan
Hi all, session.getAttribute(somekey) is returning null in SessionDestroyed () method of flex listener. Below are the steps I am following 1) I am adding flexLister in contextInitialized method of ServletContextListener FlexSession.addSessionCreateListener(myListener) 2) In

[flex_india:22445] Re: Security sandbox violation

2009-05-22 Thread Utkarsh kaushal
Where have you placed your crossdomain.xml? 2009/5/19 Endel Guimarães Silva endel...@gmail.com I had this error once, too. But that time, it was caused by a malformed XML. Check this out too On Tue, May 19, 2009 at 4:35 AM, natarajan santosh vnatrajan...@gmail.com wrote: Hi Here am

[flex_india:22449] dynamically change the size of tilewidth and tileheight

2009-05-22 Thread Gerald Anto
Hello friends, i set my mx:tile control to occupy 4 children in its space(initially i set tilewidth and tile height associated to the parent space) ex tileWidth=myTileList.width/2 tileHeight=myTileList/2. when ever i click a button a new child will be added to myTileList. when it reaches more