package com.yourmajesty.services { import flash.events.Event; import flash.net.URLLoader; /** * A FormSubmitter that populates the result of the token with the output of the server side script interpreted as XML. * @author Roger Braunstein 2007 */ public class XMLFormSubmitter extends FormSubmitter { override protected function extractFunction(event:Event):* { return XML((event.target as URLLoader).data); } } }