Re: [flexcoders] Repeater Question

2008-05-30 Thread Sherif Abdou
why not just a for loop? for(var i:int=0;icount;i++) { }; - Original Message From: Abu Hamdan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 7:43:15 PM Subject: [flexcoders] Repeater Question can a repeater be used without a dataprovider, i want to repeat

RE: [flexcoders] Repeater Question

2008-05-30 Thread Gordon Smith
No. You can use startingIndex and count to specify just a range within a dataProvider, but you have to have a dataProvider. Try Repeater dataProvider={new Array(10)}/ Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com

Re: [flexcoders] Repeater Question

2008-05-30 Thread Sherif Abdou
mx:Repeater dataProvider={new Array(10)} id=repeat mx:Panel width=100 height=100 x={repeat.currentIndex *100}/ /mx:Repeater - Original Message From: Gordon Smith [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 9:00:37 PM Subject: RE: [flexcoders

Re: [flexcoders] Repeater question

2007-11-21 Thread Paul Andrews
- Original Message - From: kpjj31 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 21, 2007 8:35 AM Subject: [flexcoders] Repeater question When using the repeater, is it possible to set the index or currentItem. What would the point be for doing that?

RE: [flexcoders] Repeater Question

2005-08-17 Thread Battershall, Jeff
Title: Message Agha, This is from the Flex docs: You cannot use a Repeater object to iterate through a two-dimensional Array object that is programmatically generated. This is because the elements of an Array object do not trigger changeEvent events, and therefore cannot function as

RE: [flexcoders] Repeater Question

2005-08-17 Thread Tracy Spratt
@yahoogroups.com Subject: RE: [flexcoders] Repeater Question Agha, This is from the Flex docs: You cannot use a Repeater object to iterate through a two-dimensional Array object that is programmatically generated. This is because the elements of an Array object do not trigger

RE: [flexcoders] Repeater Question

2005-08-17 Thread Mehdi, Agha
@yahoogroups.com Subject: RE: [flexcoders] Repeater Question Agha, This is from the Flex docs: You cannot use a Repeater object to iterate through a two-dimensional Array object that is programmatically generated. This is because the elements of an Array object do not trigger