Development Blog by Professionals
Flash
CrossDomain Flash
Jul 23rd
Your crossdomain file must be in: https//another_server:4443/crossdomain.xml
and must have:
<?xml version=”1.0″?>
<cross-domain-policy>
<allow-access-from domain=”baddy” />
</cross-domain-policy>
I have a flash swf in one http server : http://server1/……
And I want to use LoadVars.sendAndLoad to one script in one https server: https://server2/script.phpI have created a cross domain file accesible in:
https://server2/crossdomain.xml
with the following:
<?xml version=”1.0″?>
<cross-domain-policy>
<allow-access-from domain=”server1″ secure=”false” />
</cross-domain-policy>but it doesnt work in IE. It seems like a bug. Because when I put the swf in the https sever (Server2) It doesn’t work neither. but I have tested in FireFox and it works. It is very extrange I dont know what to do. I cant Use XML method because the script wich I call have certains call and return standarts that are not XML. (its interface doesnt deppend of me so It have a established way of calling (POST variables))
Do you have any idea???
Introduction to Functions
Jul 8th
At first glance, functions can be mind-boggling. At the same time, however, they are extremely useful. They help programmers around the world to make their code simpler, faster, and more readable and understandable. That is why it’s important for you to come to grips with the multitude of abilities that functions give you. With that said, lets start with a simple example of what a function looks like: More >


