首頁  >  文章  >  後端開發  >  flash 中如何外部传参

flash 中如何外部传参

WBOY
WBOY原創
2016-06-13 13:39:11718瀏覽

flash 中怎么外部传参?
on (press)
{
  var file = new LoadVars();
  file.load("/my.php");
  file.onLoad = function (Success)
  {
  if (Success)
  {
  trace (file.roulette);
  if (!isNaN(file.roulette))
  {
  start_mc._visible = false;
  p1 = 0;
  p2 = 0;
  r = 0;
  _root.bc2._rotation = 180 - Math.round(Math.random() * 360);
  _root.bc3._rotation = 180 - Math.round(Math.random() * 360);
  s1 = Math.round(Math.random() * 8) + 2;
  s2 = Math.round(Math.random() * 8) + 2;
  roulette = file.roulette;
  rouletteStr = file.rouletteStr;
  trace (rouletteStr);
  trace ("加载成功 ok");
  }
  else
  {
  message._visible = true;
  message.info.htmlText = file.rouletteStr;
  } // end else if
  }
  else
  {
  set(message._visible, true);
  message.info.text = 读取记录错误,请刷新;
  } // end else if
  };
}
  请教一下 有没有看的懂,请问 function (Success) 怎么传给它参数啊? 传给Success (Success是个参数) 急 谢谢回答者!


------解决方案--------------------
用函数!传值 

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn