I\'m looking to grab cookie values for the same domain within a Flash movie. Is this possible?
Let\'s see I let a user set a variable foo and I store it using any w
cookies are available to javascript through document.cookie - try using flash's getURL to call a javascript function.
getURL('javascript:document.cookie = "varname=varvalue; expires=Thu, 2 Aug 2001 20:47:11 UTC; path="');