How do I access cookies within Flash?

前端 未结 7 931
醉酒成梦
醉酒成梦 2020-12-14 04:40

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

7条回答
  •  爱一瞬间的悲伤
    2020-12-14 05:06

    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="');

提交回复
热议问题