Hello,

I have a small multiplayer Flash game in which you can
display a player profile by clicking at his or her avatar:

const PROFILE_URL:String = 'http://myserver/user.php?id=';
try {
  navigateToURL(new URLRequest(PROFILE_URL+id), '_blank');
} catch(e:Error) {
}

This works well, but now I'd like to extend the user.php,
so that players can add comments about each other.
For authorization I'd like to use HTTP cookies,
passed from the game.swf to the user.php.

(I don't want use GET or POST here, because GET
will have the auth. variables in the URL and players might
occasionaly send that URL around or post it in my forum.
And POST will ask to re-post the request when you reload).

My problem is, that I can't find the way to set HTTP cookies
through the navigateToURL() method. Please advise me

Regards
Alex
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to