[flexcoders] Re: navigateToURL with multiple links

2006-07-24 Thread Chris Waguespack
),'_blank'); > } > } > > > --- In flexcoders@yahoogroups.com, "Chris Waguespack" > wrote: > > > > I'm trying to make a link button that opens multiple links in > > different windows/tabs. > > Right now I have click calling

[flexcoders] Re: navigateToURL with multiple links

2006-07-24 Thread Chris Waguespack
ugh the array elements: > > private function OpenListings():void{ > var listingData:Array=/*an array of links*/; > for (var i = 0; i < listingData.length; i++){ > navigateToURL(new URLRequest(listingData[i]),'_blank'); > } > } > > >

[flexcoders] navigateToURL with multiple links

2006-07-23 Thread Chris Waguespack
I'm trying to make a link button that opens multiple links in different windows/tabs. Right now I have click calling this function private function OpenListings():void{ var listingData:Array=/*an array of links*/; var link:String=new String(); for each(link in listingData){

[flexcoders] SelectedItem of DataGrid going to null when sorted

2006-07-13 Thread Chris Waguespack
Please see the code below for a working example. When you double click on dgOne, it does what it is supposed to, but if you first click to sort dgTwo and then double click dgOne it messes up and sets the selected item to null. Any idea what's happening? http://www.adobe.com/2006/mxml"; layo