[flexcoders] How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
A horizontal direction TileList creates a new row when there are more
items to display after the single row has been filled, but I'm trying
to restrict that behavior and put every items in the single row with
the horizonal scrollbar? 



[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
--- In flexcoders@yahoogroups.com, sher_ali2004 [EMAIL PROTECTED]
wrote:

 You can set the rowCount property to 1 as:
 rowCount=1
 
 Sher Ali
 Flex and Flash Developer
 [EMAIL PROTECTED]
 +92 321 51 89 391

Thanks for replay Sher Ali. However, rowCount dose not work for
TileList when there are more number of items then the display space
that can hold, it will draw the second row instead of maintaining one
row with the horizontal scroll bar.



[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
--- In flexcoders@yahoogroups.com, Kevin [EMAIL PROTECTED] wrote:

 Do you need to use a TileList for this?  Would an HBox with a  
 repeater would work for you?  I guess it all depends if you need the  
 functionality of ListBase.
 
 - Kevin
 
 On Dec 26, 2007, at 2:28 PM, ad9798 wrote:
 
  A horizontal direction TileList creates a new row when there are more
  items to display after the single row has been filled, but I'm trying
  to restrict that behavior and put every items in the single row with
  the horizonal scrollbar?
 
 
 


Thanks Kevin,
I would use HBox but I would like to utilize TileList for easier drag
n' drop support and reordering the item inside of list as well. 



[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
--- In flexcoders@yahoogroups.com, scalenine [EMAIL PROTECTED] wrote:

 I may have missed something, but is there a reason why a
 HorizontalList wouldn't work?
 
 Juan
 
 scalenine.com : degrafa.com
 
 --- In flexcoders@yahoogroups.com, ad9798 young97@ wrote:
 
  --- In flexcoders@yahoogroups.com, Kevin lists@ wrote:
  
   Do you need to use a TileList for this?  Would an HBox with a  
   repeater would work for you?  I guess it all depends if you need
the  
   functionality of ListBase.
   
   - Kevin
   
   On Dec 26, 2007, at 2:28 PM, ad9798 wrote:
   
A horizontal direction TileList creates a new row when there are
 more
items to display after the single row has been filled, but I'm
 trying
to restrict that behavior and put every items in the single
row with
the horizonal scrollbar?
   
   
   
  
  
  Thanks Kevin,
  I would use HBox but I would like to utilize TileList for easier drag
  n' drop support and reordering the item inside of list as well.
 


Thanks Juan,

HorizontalList works. 



[flexcoders] Support movie format other than flv?

2007-05-11 Thread ad9798
Is there way to make Apollo to play movie files other than flv format?
Thinking about creating a simple media player with Apollo and I would
love to make that player support avi or other format. Can we use
DirectShow with actionscript 3.0 in any way?



[flexcoders] Multiple TrackHighLight for a slider without thumbs

2007-02-24 Thread ad9798
I am trying to highlight multiple segments from a HSlider without
multiple thumbs. 

For example, I drag the thumb to a certain position on the slider to
mark and then drag it again to the other place to mark again. After
second mark, the segment between two marks is highlighted. 

Has anybody done this? or knows how to do this? 
Much appreciated. 



[flexcoders] How to clear video image from VideoDisplay?

2007-02-18 Thread ad9798
Video class has method called 'clear()' to clear out the image from
displaying it, but I can't find similar function to clear out image
from VideoDisplay? Any ideas?



[flexcoders] Re: Highlight and select all rows in datagrid by button.

2007-02-11 Thread ad9798
Thank a lot Adam!
Works great!!

--- In flexcoders@yahoogroups.com, Adam Royle [EMAIL PROTECTED] wrote:

 This works for me:
 
 private function selectAll():void
 {
  var a:Array = [], i:Number;
  var num:Number = myDataProvider.length;
  for (i=0;inum;i++) a[i] = i;
  myDataGrid.selectedIndices = a;
 }
 
 
 Cheers,
 Adam
 
 
   - Original Message - 
   From: ad9798 
   To: flexcoders@yahoogroups.com 
   Sent: Sunday, February 11, 2007 11:14 AM
   Subject: [flexcoders] Highlight and select all rows in datagrid by
button.
 
 
   I was able to select one row by doing 
 
   myDataGrid.selectedIndex = 1; == index number of the row.
 
   However, I'm trying to create a button that select all rows in
datagrid.
   I have tried following but no success..
 
   private function selectAll() : void {
   for( var i:int = 0; i  myDataProvider.length; i++ ){
   myDataGrid.selectedIndices[i] = i;
   myDataGrid.selectedItems[i] = myDataProvider[i];
   }
   }
 
   Any idea? any suggestion?





[flexcoders] Highlight and select all rows in datagrid by button.

2007-02-10 Thread ad9798
I was able to select one row by doing 

myDataGrid.selectedIndex = 1; == index number of the row.

However, I'm trying to create a button that select all rows in datagrid.
I have tried following but no success..

private function selectAll() : void {
   for( var i:int = 0; i  myDataProvider.length; i++ ){
  myDataGrid.selectedIndices[i] = i;
  myDataGrid.selectedItems[i] = myDataProvider[i];
   }
}

Any idea? any suggestion? 



[flexcoders] How can set Flex Builder debug message in English?

2007-01-19 Thread ad9798
Flex builder 2 displays error message in Korean in the debug window.
Since I installed Korean input method in Windows XP, I guess Flex
Builder2 automatically detect the setting and translate debug message to
Korean even though English is the primary language in the system
setting. I don't understand Korean debug message. :(
how can I set this to English?