flash中要得到参数code的值,即aaa

解决方案 »

  1.   

    这属于编写flash的知识了……
      

  2.   

    flash晨这样写:
    var myload = new LoadVars();
    myload.sendAndLoad("http://localhost:8080/flash/test.php", myload, "post");
    myload.onLoad = function(success) {
    a.text="登录名:"+this.login;
    b.text="密码:"+this.pass;
    };test.php 里这样写:
    echo "&login="+$login+"&pass="+$pass;
      

  3.   

    document.myFlash.SetVariable("myVar", <?php echo $_GET['URL'];?>);
      

  4.   

    http://www.macromedia.com/support/flash/ts/documents/java_script_comm/javascript_to_flash.zip