vote up 2 vote down star

How can I make cookies in my Flash application using ActionScript 2.0?

flag
+1 for a nice question, actually I'd never even thought about getting cookies with Flash. Thanks – Robert Gould Nov 13 '08 at 6:19

3 Answers

vote up 3 vote down

If you just need local storage and don't have a specific need for cookies Flash has it's own flavour of cookies called SharedObjects. They work more or less the same but they're only readable from Flash, they will however save you the bother of interfacing with javascript.

link|flag
Yes for most uses this is the best way to go - they even work cross-browser I think. – Iain Nov 13 '08 at 9:07
vote up 0 vote down

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,expiredays)
{
    var exdate=new Date();
    exdate.setDate(exdate.getDate()+expiredays);
    document.cookie=c_name+ "=" +escape(value)+
    ((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}

// AS2 Function
myBtn_btn.onRelease = function(){
 getURL("javascript:setCookie('my_cookie','my_value','30')");
};

Hope that helps. chews

p.s. that is untested code but it should work :-)

link|flag
vote up 2 vote down

You would need to use JavaScript to work with cookies. You can do so from ActionScript using the ExternalInterface API.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.