Thanks SoftWarewolf. My problem now is that Flash Images Plus is not able to load Facebook profile images because the http://graph.facebook.com/<USER ID>/picture url is a directory that redirects to the actual image. So I'm guessing I'll need to do some local caching of these images, which I would like to avoid. If anyone knows any possible workarounds, I would very much appreciate it. Is there a way to retrieve the url that is redirected to and then get the image from that? :/
EDIT: I found a solution in some PHP code, using the Get object in MMF. Here's the code, for benefit of future searches:
PHP Code:
<?php
$dest = "http://graph.facebook.com/".$_GET['user']."/picture/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $dest);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
$url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
curl_close($ch);
echo($url);
?>