Ok, This is pretty much the only code:
var KL:String = new String;
KL = id;
if(KL==''||KL==null) KL="News";
KL=">> "+KL;
In the php file, the SWF is called as such:
embed src=“header/header.swf?id=<?php echo($_GET[‘id’]); ?>”
It can be seen in action here:
http://www.spiralwebs.com/dfunk/distorted/v2/news_main.php?id=News
Great, it works Perfect! (on my beloved Firefox)…
So how can the Same, Exact SWF perform differently on Firefox than on IE?
In Firefox, the middle tracer line shows the entire URL: http://www.spiralwebs.com/dfunk/distorted/v2/header/header.swf?id=News
But IE will only give you up until the ‘?’ : http://www.spiralwebs.com/dfunk/distorted/v2/header/header.swf
Any Clue as to why IE is doing this? because im stumped on this one…
-Chris