views:

13

answers:

1

Hi

I've got a Flex 3 project. I'm having a problem with XML in Internet Explorer only. Pls see the problem lines below:

_clickURL = [email protected]();
_mediaSource = [email protected]();

These variables are coming up "" in IE. But, they grab the data in Safari and Firefox.

Any suggestions as to what the problem might be? Possible solution?

Thank you.

-Laxmidi

A: 

Okay, I've got it working now. The problem was case sensitivity.

This worked in Safari and Firefox:

_clickURL = [email protected]();
_mediaSource = [email protected]();

This worked in IE:

_clickURL = [email protected]();
_mediaSource = [email protected]();

IE capitalized the HTML tags in the XML.

-Laxmidi

Laxmidi