RE: [flexcoders] How can I call to opener's function from popup window??

2005-07-07 Thread Tracy Spratt
For this you can use mx.core.Application.application.myFunction(myArg) Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ssalbatore Sent: Wednesday, July 06, 2005 2:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How can I call to

RE: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Abdul Qabiz
Hi, Yeah you can. If it is progressive flv download, then as soon as some video is buffered you can play it. If you are using flashcom, then it would be pure streaming and you can play... I think, you can set the buffer time using: NetStream.setBufferTime(..)

RE: [flexcoders] Flex external desktop application communication

2005-07-07 Thread Abdul Qabiz
Actually using socket loads of things can be done. People talk about Flex and MS Excel communication, someone can write some VBA code(using WinSock) in excel user form and my flex apps can communicate with Excel using XMLSocket. Same can happen for any application... -abdul -Original

RE: [flexcoders] using Repeater

2005-07-07 Thread Abdul Qabiz
Hi Rajesh, id should be string following rules for a variable name(should not start with numbers, should not contain some special chars except $ etc). You can not pass a binding expression there. Why do you want to assign a dynamic id? Since you are using repeater to generate ViewStack, you

RE: [flexcoders] How do I bound XML data into an array that is my data provider for a data grid

2005-07-07 Thread Abdul Qabiz
Hi, Look at the following code: ##employeesModelTest.mxml## mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns=* initialize=onAppInit() mx:Script import ComboBoxCellRenderer; function onAppInit() {

[flexcoders] aboute default mouse moveover style

2005-07-07 Thread Banks
Hi,all, When mouse move over event takes, the control's style changes. My question is: what style does the flash choose. i want to simulate the style of the mouse moveover event occurs. -- Best Regards --Zhu Feng MSN: [EMAIL PROTECTED] -- Flexcoders Mailing List FAQ:

[flexcoders] CheckBox in the DataGrid

2005-07-07 Thread shahnavaza
Hi All, I have a DataGrid with a checkbox rendered successfully using CellRenderer. My first problem is that how do I get the array of all Checked checkboxes on particular button Click. Secondly, I need to unCheck all checked Checkboxes on UnCheck button click. Following is the Snippet. Thanks

[flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Nithya R
pls let know if antialiasing is possible with flex/ thanks nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread ptrisnadi
I tried searching for the answer everywhere (including The Mail Archive) but no success. Basically I want to add 1 or more images to a tilelist from another tilelist in a popup. Both tilelists are populated with correct images based on the XML file. I use addItemAt and it seems to do

Re: [flexcoders] Redirect to next page

2005-07-07 Thread Harinath
Thanks a lot Abdul! Its working ... On 7/6/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Hari, As Sree said, in Flex we think application in terms of Views. In your case, user can submit the data and see the result in the same place. You can send the data using HTTPSerivce, servlet

RE: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Philippe Maegerman
Not sure, but I think the question was about being able to stream a .swf file, via flashcom or not ;)) I don't have an answer but I'd like to know too Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul QabizSent: jeudi 7 juillet 2005

RE: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Abdul Qabiz
I think, you can not stream swf via flashcomm. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Philippe MaegermanSent: Thursday, July 07, 2005 1:36 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Load a large swf (13MB) Not sure, but I think

RE: [flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Abdul Qabiz
Yeah it is possible. You need to embed the font outlines in Flex app for anti-aliasing to occur. Please search the archives, this topic has been discussed recently. If you still have doubts, let us know.. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Bikram Sahu
hi, recently i am facing a problem that i want to upload a file to the server please tell me how can i pass the file to the server in flex. with Regards Bikram Sahu -Original Message-[Bikram Sahu]From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]On Behalf Of

RE: [flexcoders] CheckBox in the DataGrid

2005-07-07 Thread Abdul Qabiz
Hi, You can achieve this by just updating dataProvider and if design of yourCellRenderer in such a way that if dataProvider changes CellRenderer is updated. Say you have a field in dataProvider, which is bound with checkbox's selected property. If you change the dataProvider, CheckBoxes get

Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread Scott Barnes
sorry your message was truncated, could you followup with the code? you can't move one movieclip (ie image) from containerA to containerB, sadly DuplicateMovieClip only allows you to duplicate a movieclip onto the same level as its original source (btw FLASH 8 wishlist feature). The only way is

Re: [flexcoders] Flex external desktop application communication

2005-07-07 Thread Scott Barnes
That's for sure, as i can just see the Director of Finance @ my work drool at the ability to transmit data from FLEX to his annoying Excel spreedsheet(s) and vice versa. Never thought it was possible, so i'm very keen to see how. On 7/7/05, Alistair McLeod [EMAIL PROTECTED] wrote: Hi

Re: [flexcoders] Re: Dynamically add an MXML to a Panel

2005-07-07 Thread Scott Barnes
On 7/7/05, cazzaran [EMAIL PROTECTED] wrote: You gathered correct. Unfortunately, what I was trying to do was a sort of runtime load of an MXML component, which, in retrospect, I should have known wasn't possible. No, you wouldn't be the first and will not be the last. I remember thinkng along

RE: [flexcoders] Flex external desktop application communication

2005-07-07 Thread Abdul Qabiz
Never thought it was possible, so i'm very keen to see how. Many ways :), some are... - LocalConnection - XMLSocket I wrote a Flash application in past, which used to communicate with MS Outlook and MS Excel. It was kind of experiment after someone on flashcoders asked about it.. If you are

[flexcoders] Camera

2005-07-07 Thread Philippe Maegerman
Is it possible toinstantiate a Video Object in Flex to attach a webcam and stream to flashcom? Philippe Maegerman -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] Flex external desktop application communication

2005-07-07 Thread Theodore E Patrick
The nice aspect of a local server (HTTP/XMLSocket) for integration is that you can interact with Flex applications in the browser cleanly within the security sandbox of the player. So long as the crossdomain.xml files are in place and valid, you can have Flex integrate with a local server without

Re: [flexcoders] Macromedia Flex contracts a plenty!

2005-07-07 Thread Clint Modien
404 for http://www.flexauthority.com from 2 different locations in North America On 7/7/05, Jeff Steiner [EMAIL PROTECTED] wrote: I thought that I would bring up the Flex Jobs topic in the forums of Flex Authority. I am seeing probably 4-5 Flex jobs a week on the major job

Re: [flexcoders] using Repeater

2005-07-07 Thread Clint Modien
very nice and LARGE section in the docs... (thank you flex doc team) http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentationfile=0419.htm p.s. rtfm On 7/7/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi Rajesh,id should be string

[flexcoders] HistoryManger state is undefined on loading

2005-07-07 Thread rockmoyosa
My case: - saveState is executed - On Back loadState is executed. But. Than my state is undefined private var changed:Boolean; public function initHistory():Void { mx.managers.HistoryManager.register(this); storeInternalState(); }

RE: [flexcoders] Camera

2005-07-07 Thread Philippe Maegerman
Thank you very muchAbdul, After a good battle I was arrived to your second proposition, very light and simple. I wanted to go the'deluxe' way and bundle it into a .swc so I could instantiate a video tag and pass arguments like 'height', 'width', 'src' video settings etc ... but coudn't

[flexcoders] Re: HistoryManger state is undefined on loading

2005-07-07 Thread rockmoyosa
I tell what happened. state. objects are now STRINGS(!?) DUMP START this:Object |model = [object Object] (string) |view = false (string) I can overcome the view by: var detailVisible = Boolean(state.view == true); But for model it's a different story. --- In

RE: [flexcoders] Dynamic LineSeries color doesnt work

2005-07-07 Thread Ely Greenfield
What type of chart are you using? Series in a chart get an 'internalStyleName' from the enclosing chart. Each series gets a different internalStyleName. Different chart types have different internal style names for their series. The LineSeries has internalStyleNames that have strokes applied

[flexcoders] MM weblogs moved

2005-07-07 Thread Matt Chotin
Most of the weblogs from Macromedia were moved from www.markme.com to weblogs.macromedia.com. The templates got uglier but the machine is better :-) If you see any problems let us know. Matt -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-07 Thread Matthew Shirey
Thanks for the additional information. Since I do understand a bit of how flash is being used to present these UI elements, I do understand, thanks to you, why there's no parent/child relationship. For me, its just really unfortunate. Because of the difficulty I have had with the scaling of an

[flexcoders] XML Socket Doesn't Work

2005-07-07 Thread cshafer213
Can Anyone Tell Me what is wrong with the following code to connect to an XML socket server? The stat Lable should display either status = Connected or status = Error when the button is clicked, and nothing is happening. Thanks, Chris Shafer, George Weiss Associates ?xml version=1.0

Re: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Matthew Shirey
As I am currently working with this, I can say that dataForFormat(source) will give you a reference to the source object of the drag drop operation. I am not sure about the items one though. I've read mixed documentation, some say its treeItems. Any rate, there's a formats array in the event

Re: [flexcoders] MM weblogs moved

2005-07-07 Thread Dave Carabetta
On 7/7/05, Matt Chotin [EMAIL PROTECTED] wrote: Most of the weblogs from Macromedia were moved from www.markme.com to weblogs.macromedia.com. The templates got uglier but the machine is better :-) If you see any problems let us know. Matt, Do you know when/if the /go/* feed URLs will be

Re: [flexcoders] MM weblogs moved

2005-07-07 Thread John Dowdell
Dave Carabetta wrote: Do you know when/if the /go/* feed URLs will be updated? These are in the pipeline (gotta do it!), but the older machine was physically damaged, while its owners (Mike Chambers Christian Cantrell) are at the FlashForward conference in New York. It will probably take a

[flexcoders] Push/AJAX via a Loader (Re: Flex external desktop application communication)

2005-07-07 Thread Eric Raymond
So a loader can be used to communicate with an HTTP Server in a push model?!!! Is this analagous to the way AJAX web sites push content to the client? This would be an amazing hack! If so, I'm very curious as to how well this works in practice. (I suspect the devil is in the details here.)

RE: [flexcoders] XML Socket Doesn't Work

2005-07-07 Thread Theodore E Patrick
Chris, You need to use Delagate with XMLSocket callbacks. This should work: import mx.utils.Delegate; sock.onClose = Delegate.create( this, sockOnClose ); sock.onConnect = Delegate.create( this, sockOnConnect ); sock.onData = Delegate.create( this, sockOnData );

Re: [flexcoders] MM weblogs moved

2005-07-07 Thread Dave Carabetta
On 7/7/05, John Dowdell [EMAIL PROTECTED] wrote: Dave Carabetta wrote: Do you know when/if the /go/* feed URLs will be updated? These are in the pipeline (gotta do it!), but the older machine was physically damaged, while its owners (Mike Chambers Christian Cantrell) are at the

[flexcoders] Re: HistoryManger state is undefined on loading

2005-07-07 Thread jacksodj
I personnaly have seen really flakey behavior from that history controller. I have posted before, but have not been able to see a good resolution --- In flexcoders@yahoogroups.com, rockmoyosa [EMAIL PROTECTED] wrote: My case: - saveState is executed - On Back loadState is executed.

RE: [flexcoders] Flex over dialup?

2005-07-07 Thread Bob Remeika
Jesse, I appreciate the time for the thorough response. This is something that is useful knowledge not only to us, but to the community as a whole. I will try to keep everybody updated as we discover tips and tricks that will help other developers. Thanks, Bob Remeika -Original

RE: [flexcoders] How do I bound XML data into an array that is my dataprovider for a data grid

2005-07-07 Thread Tracy Spratt
Are you using editField() to update the dataProvider in the //TODO: section? Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, July 07, 2005 12:29 PM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Control Bar Background Color

2005-07-07 Thread jwc_wensan
Good Afternoon: In my code I have changed the headerColor of the Panel and want to change the ControlBar background color to match. I changed the background color to match, but it did not work. I then read this from livedocs: The mx:ControlBar container inherits all the properties of

RE: [flexcoders] Push/AJAX via a Loader (Re: Flex external desktop application communication)

2005-07-07 Thread Theodore E Patrick
So a loader can be used to communicate with an HTTP Server in a push model?!!! Is this analagous to the way AJAX web sites push content to the client? Loader is for SWF/Image but there are ton of various ways to exchange data in Flash. The Flash Player has supported data exchange since

[flexcoders] CheckCellRenderer

2005-07-07 Thread terry_hrtn
I'm using the CheckCellRenderer from the samples on a datagrid that is inside of a title window. The problem I'm having is when I check the top item the item in the grid that is not being displayed at the moment is also checked. Any ideas? -- Flexcoders Mailing List FAQ:

[flexcoders] getDropParent() when the branch is closed.

2005-07-07 Thread Jeff Krueger
All, I am trying to drag an item from a grid and drop it on a tree control. I have found that the getDropParent seems to be the best bet when trying to find where to add a new child node to. The only problem I am having is if the user chooses to drop the item on a branch that is

Re: [flexcoders] Flex over dialup?

2005-07-07 Thread JesterXL
Anything to help a fish; we studied your company's book back in college. - Original Message - From: Bob Remeika [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, July 07, 2005 2:28 PM Subject: RE: [flexcoders] Flex over dialup? Jesse, I appreciate the time for the

[flexcoders] data binding remoting data . . .

2005-07-07 Thread chris.alvarado
good afternoon everyone, so im finally diving into Flex and im really liking it so far. ive found some pretty good examples of working with data from remoting (specifically Coldfusion). however i havent found any examples of how to bind data to something like a combobox. in Flash with remoting

Re: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Sean McKibben
So, what I've ended up using is the dataForFormat(source) when the dragSource is a tree, which gets a reference to the tree. Once you have that, the actual items being dragged will be the selectedNode or the selectedNodes, depending on whether or not the tree allows multiple selection. So

[flexcoders] Re: Control Bar Background Color

2005-07-07 Thread Andrew Spaulding
I assume you used the headerColors attribute on the panel to change the header colours. The Panel component also has a footerColors style. The footerColors style is an array of two colours used to the draw footer background (the area for the ControlBar). use it like this: mx:Panel width=100%

Re: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread John Dowdell
Clint Modien wrote: Can I start playing the movie before it's loaded? The question is actually harder to answer than it might seem, because SWF has added more capabilities and content types since it started. Here's a good intro to the basic streaming nature of a SWF file, written towards

Re: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Clint Modien
found the answer... has to be an flv... the 13MB swf would have to completely download before it would start playing... http://www.macromedia.com/devnet/mx/flash/articles/video_primer_03.html On 7/7/05, John Dowdell [EMAIL PROTECTED] wrote: Clint Modien wrote: Can I start playing the movie

Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread P Trisnadi
Thanks for your interest and notice, Scott. To recap: I have a TileList that shows images and their names, read from an XML file and rendered by a CellRenderer. When the [Add Photo] button is clicked, a createPopUp is called. This PopUp also has a TileList that reads another XML file with the same

[flexcoders] Re: XML Socket Doesn't Work

2005-07-07 Thread cshafer213
--- In flexcoders@yahoogroups.com, Theodore E Patrick [EMAIL PROTECTED] wrote: Thanks for responding and putting me on the right track. I changed my code to add the Delegate as best I could but I still can't get it working: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: using Repeater

2005-07-07 Thread Rajesh Jayabalan
Thanx a lot --- In flexcoders@yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote: very nice and LARGE section in the docs... (thank you flex doc team) http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentationfile=0419.htm

Re: [flexcoders] data binding remoting data . . .

2005-07-07 Thread Tarik Ahmed
Hi Chris. It sounds like you mostly got this working; are you saying you're getting stuck on selectedIndex part of it? But in general ya... I would an mx:RemoteObject, with a method where upon completion have a result=resultHandler(event.result) that assigns the resulting data to a local

RE: [flexcoders] Re: XML Socket Doesn't Work

2005-07-07 Thread Theodore E Patrick
Ah, there are 2 errors is there, socket is a temporary variable within the connect method and null is not a valid value for the server. Think of the mx:Script block as a class (because it is at runtime). I made this mistake first time round the MXML tree. ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: How to compile a transparent application

2005-07-07 Thread mohimbe77
--- In flexcoders@yahoogroups.com, mohimbe77 [EMAIL PROTECTED] wrote: Hi all, I've been developing in Flex for about 6 months and need to be able to compile an MXML application that ends up being transparent when it is placed on an HTML page. I know all about the 'wmode' attributes

[flexcoders] using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Hi all, I posted this about an hour ago but it didnt appear to show up (sorry if you have already received this) I am using a repeater to show a list of search results. Each search result is a container of sorts with a custom header, clicking on the header open and closes the search result

Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread P Trisnadi
Not sure why second message was also truncated. Let's try this again... -- Thanks for your interest and notice, Scott. To recap: I have a TileList that shows images and their names, read from an XML file and rendered by a CellRenderer. When the [Add Photo] button is clicked, a createPopUp

[flexcoders] using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Hi all, I am currently using a repeater to display a list of search results, each of them being a container of sorts with a custom header with extra controls. Click on the header open and closes the result, a long with a few other bits and pieces. One thing I have found is that with a larger

RE: [flexcoders] using a repeater with large data sets

2005-07-07 Thread Tracy Spratt
One possibility with the repeater is to set the number of items that are rendered, then, instead of scrolling, use page-up, page-down buttons. A repeater with around a hundred moderately complex items is horribly slow. Show only 10, and recycleChildren and things improve dramatically. This is

[flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Good idea Trac! I'll use the count and startingIndex properties to manage the paging locally ;) Kind regards, Andrew Spaulding www.flexdaddy.info --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: One possibility with the repeater is to set the number of items that are

Re: [flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Alex Cruikshank
Hi Andrew, If you're using remoting, I'd make sure your performance problems aren't with the serialization/deserialization of the results before you invest much time in optimizing the display. I've done some research into this

RE: [flexcoders] aboute default mouse moveover style

2005-07-07 Thread Matt Chotin
Generally this is the focusIn skin that youre seeing on a lot of the components. In the lists youd be looking at the rollover styles. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Banks Sent: Thursday, July 07, 2005 1:02 AM To:

RE: [flexcoders] aboute default mouse moveover style

2005-07-07 Thread Matt Chotin
Sorry, meant the focus skins (youll see them on UIComponent) From: Matt Chotin Sent: Thursday, July 07, 2005 9:45 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] aboute default mouse moveover style Generally this is the focusIn skin that youre seeing on a

RE: [flexcoders] Re: HistoryManger state is undefined on loading

2005-07-07 Thread Matt Chotin
Yes, I think all history manager information is stored as strings so type is not going to be maintained and youll need to deal with that in your loadState method. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of rockmoyosa Sent:

RE: [flexcoders] CheckCellRenderer

2005-07-07 Thread Matt Chotin
What do you meant the item in the grid that is not being displayed. As in an item you didnt have selected updated as well? Perhaps youre updating the wrong entry in the data provider? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of terry_hrtn

RE: [flexcoders] getDropParent() when the branch is closed.

2005-07-07 Thread Matt Chotin
Maybe you could add a itemRollOver handler on the Tree so that when you are dragging (indicated by dragEnter I guess) and you encounter a branch you could make sure the branch gets opened? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On

RE: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Matt Chotin
We mention the formats in the List section of the drag and drop chapter I think. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sean McKibben Sent: Thursday, July 07, 2005 3:46 PM To: flexcoders@yahoogroups.com Subject: Re:

RE: [flexcoders] aboute default mouse moveover style

2005-07-07 Thread Matt Chotin
Actually, I might have been looking at Flex 2.0 docs here J highlightColor is used when a component has focus, not sure if mouseOver will cause highlight too (I think it does). From: Matt Chotin Sent: Thursday, July 07, 2005 9:45 PM To: Matt Chotin; flexcoders@yahoogroups.com

RE: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread Matt Chotin
Youre using the List addItemAt method instead of the DataProvider addItemsAt method. I think you want to use _root.modelImage2.photo.addItemsAt(0, tilelistAllImage.selectedItems); as the body of your addLibrary method, no need for the for loop. Matt From:

RE: [flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Matt Chotin
My blog post from way back has an example of that control (well the files that come with the example) http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets.cfm Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andrew

[flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Ah ofcourse, the 'PageSelector' component you wrote. I remember reading the articles a long time back when you first wrote them, but in this scenario I wasn't interested in server side paging. I'll check out the component, thanks, Andrew www.flexdaddy.info --- In