[flexcoders] Use FileReference to get a directory rather than a file?

2008-03-04 Thread Josh Santangelo
I'm working on an application which includes an option to let the user select a directory to which files should be downloaded. I'm aware of FileReference.browse, and I can use that to let people select a file -- but I don't want a file, I want a folder. I'm thinking something like in a web browser

[flexcoders] WrapPanel?

2008-01-22 Thread Josh Santangelo
I'm looking for a Flex container that behaves similar to WPF's WrapPanel. http://msdn2.microsoft.com/en-us/library/system.windows.controls.wrappanel.aspx Positions child elements in sequential position from left to right, breaking content to the next line at the edge of the containing box.

Re: [flexcoders] How can we post code without Yahoo groups messing the format?

2006-06-21 Thread Josh Santangelo
Paste it elsewhere? http://pastie.caboo.se/ -josh On Jun 21, 2006, at 6:36p, Tracy Spratt wrote: It seems to double space code examples and otherwise bother formatting. Yahoo! Groups Sponsor ~-- Check out the new improvements in Yahoo!

Re: [flexcoders] How to programmatically open a Tree item? (f2b3 bug?)

2006-06-08 Thread Josh Santangelo
I've used this code to open and select arbitrary nodes in the V2 tree component. Might be portable to Flex, or not. private function displayAndOpenNode(component:Tree, label:String, node:XMLNode) { if(node == undefined) {

[flexcoders] probably-stupid AS3 question

2006-05-19 Thread Josh Santangelo
I'm new here, as will be made clear by the beginner-level of my question... I have a TitleWindow component in SellerEdit.mxml: mx:TitleWindow ... mx:Script ![CDATA[ public var seller:Object; ]] /mx:Script /mx:TitleWindow And from my application, I create it: __editWindow =