从时间轴中的帧获取或加载URL操作

时间:2013-10-04 06:28:25

标签: flash actionscript

我想在时间轴中从一个帧中提取或加载URL动作。 这可能吗?

我试过下面的代码

on enterFrame {

getURL(“http://www.sample.com/”,“_ self”); }

但它不起作用。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

Mabye你可以使用addFrameScript();

我们键入的

addFrameScript(>>>>>frame number of layer<<<<, >>>function name<<<<);

所以我们假设(因为你没有提到帧号)

你想在第2帧加载sample.com,所以我们将在构造函数的主文档类中写这个(这个函数与类名同名):

addFrameScript(1, url);

现在您还需要添加功能,这将打开网址

public function url():void
{
getURL("http://www.sample.com/", "_self"); 
}

如果您感到困惑,那么您可以这样做

enter image description here

然后输入

enter image description here

或者甚至这不起作用试试这个!

var url:String = "http://www.sample.com/";
var request:URLRequest = new URLRequest(url);
try {
  navigateToURL(request, '_self');
} catch (e:Error) {
  trace("Error occurred!");
}

我也是flash的新手并没有测试它,但我确信其中一个可行