0
votes
How can I make cookies in my Flash application?
In AS2, I would say just create a javascript function to set the cookie and call it from within flash using a geturl request.
// Javascript Function
function setCookie(c_name,value, …
0
votes
How do I use cookies across two different domains?
You don't, cookies are bound to a domain. There are restrictions on this and it's referred to as cross site scripting.
Now, for some help to your problem.
What you can do is create a script …
