IE11 and FlashVars.
Hi,
I have a application that uses flashvars to pass parameters to a swf. AS3. This has worked for years. Now, with IE11, the flashvars no longer are visible to the
SWF.
in HTML:
<param name="=FlashVars" value="dataSourceBeanName=tvContext&contextRoot=2Fem&doDbgLog=true&showNavigator=true&noRightClick=false" />
in actionscript:
var p:Object = mx.core.Application.application.parameters;
for (var keyStr:String in p)
{
trace("params[" + keyStr + "] =" + p[keyStr]);
}
produces nothing in IE11, chrome, firefox, safari and older IE is fine. My application is broken in IE11.
I am using the latest version 12 activex plugin.
HELP!
Thanks,
Larry
