jp31,
I will try to lend some advice, although I don't and haven't used Drupal, the properties of getting info from PHP to Flash are the same.
This would be a relatively simple implementation of AS/PHP connectivity so using LoadVars would work perfectly (in my experience)
I did a quick google search and found some nice AS Code from '04, to be honest my AS is pretty much google&hack at this point, so I can't verify its quality, but you can find the post here.
You can simply get the Drupal information (i hope simply) and just echo the info straight to the screen:
$info = array();
// grab info to $info from Drupal
// Assuming key is username, value=big.nerd, key=firstname, value=mike
if ($logged_in) $info['loggedin'] = 'true';
$count = 1;
$infoCount = sizeof($info);
foreach ($info as $key => $value) {
echo $key."=".$value.($count < $infoCount ? '&' : '');
$count++;
}
Something like that.
If you can google how to grab drupal info, the info / code I found gives you HOW to get the user ID, but doesn't provide what file(s) you need to include for that.
According to This Website you can use code from any theme page.
I hope that points you in the right direction. best of luck!