Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ie problems

Status
Not open for further replies.

0gani

Technical User
Oct 9, 2006
14
SK
This AS2 works great in both IE and firefox

Code:
import flash.external.ExternalInterface;

var cookieValue = ExternalInterface.call("myGetCookie", "yumyum");

hello_txt.text = cookieValue;



This AS3 works great only in firefox but not IE

Code:
import flash.external.ExternalInterface;

var cookieValue:* = ExternalInterface.call("myGetCookie", "yumyum");

hello_txt.text = String(cookieValue);



What's wrong with this? What is it that IE doesnt like about this code in AS3?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top