Hi all,
First off is there a way to load the .png files like avatars?
I know you can with .jpg but really need to retain the transparency of the .png also the imgs will be link to rather than on my local machine. I thought maybe running a php script to copy the img from www.somewhere.com/img.png and save it to my folder so my swf could actually use them in the movie then.
this is what I have so far any help would be appreciated.
Thanks
<?php
$filedest= “C:\Inetpub\wwwroot”
$file = fopen (“http://www.blahblah.com/img.png”, “r”);
copy($file,$filedest);
?>