Link to home
Start Free TrialLog in
Avatar of precision
precision

asked on

FlashVars Browser Issue

Here is my code that works just fine in Internet Explorer, my data gets forwarded to the php file:

on (release) {
     getURL("learnmore.php?id="+_root.id+"&wa="+_root.wa+"&ww="+_root.ww, "_self");
}


In FireFox browser, I lose the data?????  HELP
Avatar of CyanBlue
CyanBlue
Flag of United States of America image

Howdy...

I don't know why it wouldn't work...  But can you try this code instead???

on (release)
{
      var _lv = new LoadVars();
      _lv.id = _root.id;
      _lv.wa = _root.wa;
      _lv.ww = _root.ww;
      _lv.onLoad = function () {}
      _lv.sendAndLoad("learnmore.php");
}

CyanBlue
Avatar of precision
precision

ASKER

I was looking in google, embed as well as param in html file??
ASKER CERTIFIED SOLUTION
Avatar of blockage1
blockage1

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial