at Object$/Object::_hasOwnProperty()
at Object/http://adobe.com/AS3/2006/builtin::hasOwnProperty()
at Object$/Object::_hasOwnProperty()
..... at Object$/Object::_hasOwnProperty() is repeated many times.....
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal">
<mx:Script>
<![CDATA[
import flash.system.Security;
Security.allowDomain("www.xyz.com");
]]>
</mx:Script>
<mx:Image source="http://www.xyz.com/test/Loadee.swf" x="300" y="350" showBusyCursor="true"/>
</mx:Application>
mxml for the called swf (Loadee.swf)
==============================
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" width="270" height="54" creationComplete="
getState.send();">
<mx:Text text="Initial Text" x="300" y="300" id="thisText"/>
<mx:HTTPService url="" href="http://www.xyz.com/ServersideScript.do">http://www.xyz.com/ServersideScript.do
" id="getState" result="chgState()"/>
<mx:Script>
<![CDATA[
function chgState() {
// ideally do something with the HTTP response here,
thisText.text=
"HTTP call succeeded";
}
]]>
</mx:Script>
</mx:Application>
Any inputs here will be greatly helpful.
Thanks,
Joseph
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
| Software development tool | Software development | Software development services |
| Home design software | Software development company |
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
__,_._,___

