[flex_india:26154] Re: binding

2009-10-27 Thread explorer
Lead by your advice to use arrayCollection i make correction on code and get it work, it s like this first this is code public function getListaHandler(evt:ResultEvent):void // This function is trigered when I get result from Remote Object { meniji = new ArrayCollect

[flex_india:26153] Re: doubt in following code please do let me clear

2009-10-27 Thread Gerald Anto Fernando
ok Imtiaz what u and sampath told right. i will try this. Thanks Gerald A On Tue, Oct 27, 2009 at 7:51 PM, imtiyaz wrote: > > Hi Gerald, > > Sorry, I have two words on your solution. > > Writing the catch block around your exception is not the good > solution, find and fix why exception occurre

[flex_india:26151] Re: Convert OlapResult provider to ArrayCollection

2009-10-27 Thread mman
Hi again, I got it to work! some strange problems I faced regarding the height of the AdvancedDataGrid. I have overcomed it by using headerHeight property. thanks again mazen On Oct 27, 9:30 am, mman wrote: > Hi all, > I am wondering if someone has already implemented a converter of > OlapResul

[flex_india:26150] Re: Zend AMF returning ArrayCollection

2009-10-27 Thread RonRebennack
Try this... it works with Zend 1.9: $result = mysql_query($sql) or die(mysql_error()); while($row = mysql_fetch_object($result,'VOContato')) { $data[] = $row; } $_result = new Zend_Amf_Value_Messaging_ArrayCollection(); $_result->source = $data; return $_result; On Oct 26, 7:20 pm, Arthur M

[flex_india:26152] print specific area of page

2009-10-27 Thread vandana flex
Hi all, Am having a datgrid and some buttons below datagrid... But i want to print only datagrid with some header and footer... Means omitting buttons.. How to print only datagrid with header and footer.? --~--~-~--~~~---~--~~ You received this messag

[flex_india:26148] Convert OlapResult provider to ArrayCollection

2009-10-27 Thread mman
Hi all, I am wondering if someone has already implemented a converter of OlapResult ( the dataprovider of OlapDataGrid) to ArrayCollection. If something like this exists, or if someone has a way to do, please help:-( Thanks mohman --~--~-~--~~~---~--~~ You rec

[flex_india:26147] Re: Simple Marquee

2009-10-27 Thread sankar swaroop
Hi try this related functions private function complete():void { move_up.xFrom = cs.width - 6; move_up.xTo = 0 - tt.width + 6; move_up.repeatCount = 0; //loop move_up.repeatDelay = 0; //loop ti

[flex_india:26145] Created a custom transform tool in as3.0

2009-10-27 Thread susrut316
I used the senocular transfrom tool and a the rogue development tool as well for one of my projects but none of them served the purpose. I created a custom transform tool using the matrix transform and a bit of trignometry. Check it out http://talkxe.com/?p=63 --~--~-~--~~---

[flex_india:26149] Re: Flex designer to improve an exisistant UI (Urgent)

2009-10-27 Thread jakir qureshi
Hi , Please give me some screen shots so i can proceeed how its works Thanks Jakir Pune On Mon, Oct 26, 2009 at 9:00 PM, Otmane wrote: > > Looking for flex designer , i need some one how can give a beautiful > look to an existing flex applications. > Please let me know. if you are interested

[flex_india:26146] Re: passing ArrayCollection to a new window...

2009-10-27 Thread mman
Thank you all for the suggestions. I find that the suggestion of Vaibhav is interesting. I will try to do something in that direction since the TileWindow and popup manager way is already works for me but with less features. Thanks again. On Oct 24, 5:57 am, xueliang wu wrote: > Hi,everybody >

[flex_india:26143] Converting png format to eps format

2009-10-27 Thread Naresh
Hi friends, I Would like know how can i convert image form PNG to EPS format. Is it possible in flex side? or we need some server side code?. If we require server side code please provide small snippet. Please let me know if anybody know's. Thanks and regards, Naresh. --~--~-~--~~--

[flex_india:26144] database connectivity

2009-10-27 Thread jagdeesh biyani
How to configure for direct database connectivity to sql server 2005 since connectivity is inbuild ability of flex. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group,

[flex_india:26142] Re: ScrollPolicy Problem

2009-10-27 Thread Shreyas
Thank you all for the replies, I did as Gagan said and it solved the problem. On Oct 26, 2:27 pm, GAGAN anand wrote: > Hi Shreyas > > I think u should make the text control width to 100%. It will solve ur > problem. > > Regards > Gagan Deep > > 2009/10/24 itonflex team > > > > > Fix the width o

[flex_india:26141] Re: Use NumericStepper as DataGrid's ItemEditor

2009-10-27 Thread imtiyaz
Hi Liang, I am not able to understand the question, 1) you want to show the numeric stepper when user clicks on the cell and show the selected value? Or 2) you want to show the numeric stepper always in datagrid with selected value of data value ? For the first one the code is here. --

[flex_india:26140] Re: doubt in following code please do let me clear

2009-10-27 Thread imtiyaz
Hi Gerald, Sorry, I have two words on your solution. Writing the catch block around your exception is not the good solution, find and fix why exception occurrence, if we don't have the way then we need to do so ! 1) Adding a eventlistner to the container is bad practise (in your case) i

[flex_india:26139] Re: doubt in following code please do let me clear

2009-10-27 Thread Gerald Anto Fernando
hi sampath i got it. one member told wrap the code in try catch. now it is working fine thanks, Gerald A On Tue, Oct 27, 2009 at 4:08 PM, Sampath Kumar wrote: > The Panel does not have any label attribute and hence you are getting the > error. An alternate approach would be to add click handler

[flex_india:26138] Re: binding

2009-10-27 Thread explorer
Unfortuntely I recive error msg Implicit coercion of value of type void to an unrelated type Object. where I make mistake. On Oct 27, 11:41 am, Sampath Kumar wrote: > You have to Declare the ArrayCollection outside your function and make it > [Bindable]. If the arraycollection is declared ins

[flex_india:26137] Re: binding

2009-10-27 Thread Sampath Kumar
You have to Declare the ArrayCollection outside your function and make it [Bindable]. If the arraycollection is declared inside of a function it becomes local to that function alone and cannot be used outside the function. I hope I am clear now. Regards Sampath On Tue, Oct 27, 2009 at 4:05 PM, ex

[flex_india:26136] Re: doubt in following code please do let me clear

2009-10-27 Thread Sampath Kumar
The Panel does not have any label attribute and hence you are getting the error. An alternate approach would be to add click handler to the link buttons instead of the panel. Regards Sampath On Tue, Oct 27, 2009 at 3:53 PM, Gerald Anto wrote: > > see this code > > > > http://www.adobe.com/2006

[flex_india:26135] Re: binding

2009-10-27 Thread explorer
I put this [Bindable] > var menikat:ArrayCollection = new ArrayCollection(); > at the beginnig of scritpt part, and this menikat.addItemAt(element,i); for dataProvide of repeater but no result. Where I make mistake, should I exclude from function this part var menikat:Array = new Array; Or

[flex_india:26134] doubt in following code please do let me clear

2009-10-27 Thread Gerald Anto
see this code http://www.adobe.com/2006/mxml"; creationComplete="createLinkHandler();"> The above are code in the following page http://livedocs.adobe.com/flex/3/html/help.html?content=events_08.html#219544 it was working fine but when i c

[flex_india:26133] Re: flex+cairngroom+lcds+java

2009-10-27 Thread vengu
May be these links will help http://techmytongue.blogspot.com/2008/11/set-up-blazeds-on-tomcat-with-eclipse.html http://techmytongue.blogspot.com/2008/12/integrating-spring-with-flex-on-tomcat.html Thanks, Venkat. On Oct 22, 12:09 pm, lakshminarayan k wrote: > hi frnds > > any one plz clarify

[flex_india:26132] Use NumericStepper as DataGrid's ItemEditor

2009-10-27 Thread Liang Ma
Hi guys, I got a issue when useing NumericStepper to edit datagird's cell. >From adobe livedocs illustrated at below URL , when i click the cell the NumericStepper will be invocated and it's text will be fully selected. http://livedocs.adobe.com/flex/3/html/help.html?content=cellrenderer_3.html

[flex_india:26131] Re: binding

2009-10-27 Thread Sampath Kumar
[Bindable] var menikat:ArrayCollection = new ArrayCollection(); menikat.addItemAt(element,i); On Tue, Oct 27, 2009 at 12:08 PM, explorer wrote: > > to try to return ArrayCollection or ... please give me more > information, thank you > > On Oct 27, 6:47 am, Sampath Kumar wrote: > > Hi, > > >