[flexcoders] Re: Using Embed with dynamic values possible?

2005-12-13 Thread Darin Kohles
Stacy, yes and no. Just create a new image dynamically when your XML data is returned (no need to use Embed in this case): private function resultHandler(event:ResultEvent):Void { myImage: new Image(); myImage.source=event.result._xml_path_to_image_url;

RE: [flexcoders] Re: Using Embed with dynamic values possible?

2005-12-13 Thread Stacy Young
Embed with dynamic values possible? Stacy, yes and no. Just create a new image dynamically when your XML data is returned (no need to use Embed in this case): private function resultHandler(event:ResultEvent):Void { myImage: new Image(); myImage.source=event.result._xml_path_to_image_url