I am embedding a standalone flash(activex) module in my program to
show some flash resources.The flash show successfully,but when I try
to pass it some arguments,I got stuck,I am trying following to pass
flashvars to flash but no success:
self.flash.FlashVars="verify=36132562_1062_36132562_1260777876_abbdc24892063719b71b3bd37270a58c"
or
self.flash._set_FlashVars
("verify=36132562_1062_36132562_1260777876_abbdc24892063719b71b3bd37270a58c")
after I set the FlashVars,I try print self.flash.FlashVars,the output
is ok,but the swf just didn't get the correct argument,following is
the swf source to accept the argument:
this.verify = loaderInfo.parameters["verify"];
I am using flash 10 on win xp,and that flash runs ok on the browser
with following embed statement
<embed width="808" height="544"
flashvars="verify=36132562_1062_36132562_1260898771_02d1d850f380e5f21853c4514923243b"
src="
http://some.web.site/garden-113.swf"/>
is there anything I missed or changed?thanks a lot