如何获得/获得在Flash AS3从URL变量变量、如何获得、Flash、URL

由网友(*奇迹少年*)分享简介:所以,我有我需要我的Flash影片从提取变量网址:So I have a URL that I need my Flash movie to extract variables from:例如链接:http://www.example.com/example_xml.php?aID=1234&bID=5678我...

所以,我有我需要我的Flash影片从提取变量网址:

So I have a URL that I need my Flash movie to extract variables from:

例如链接: http://www.example.com/example_xml.php?aID=1234&bID=5678

我需要得到援助和投标数量。

I need to get the aID and the bID numbers.

我能够得到完整的URL转换为字符串通过ExternalInterface的

I'm able to get the full URL into a String via ExternalInterface

var url:String = ExternalInterface.call("window.location.href.toString");
if (url) testField.text = url;

只是不确定如何操作字符串只得到了1234和5678号。

Just unsure as how to manipulate the String to just get the 1234 and 5678 numbers.

鸭preciate任何提示,链接或这方面的帮助!

Appreciate any tips, links or help with this!

推荐答案

创建了一个新的实例的URLVariables

// given search: aID=1234&bID=5678
var search:String = ExternalInterface.call("window.location.search");
var vars:URLVariables = new URLVariables(search);
trace(vars.aID); // 1234
trace(vars.bID); // 5678
阅读全文

相关推荐

最新文章