ActionScript 3 按F5键重新加载Firefox

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 按F5键重新加载Firefox相关的知识,希望对你有一定的参考价值。

//Place this in the import section.
import flash.external.ExternalInterface;

//Place this some where in your code where you can access the stage object.
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyHandlerfunction);


private function keyHandlerfunction(e:KeyboardEvent):void 
{
	if (e.keyCode == 116) { 
		ExternalInterface.call("window.location.reload()");
	}
}

以上是关于ActionScript 3 按F5键重新加载Firefox的主要内容,如果未能解决你的问题,请参考以下文章

如何检测 Actionscript 3 中是不是按下了删除键?

Asp.net MVC 5 视图在使用 F5 重新加载页面之前不呈现

怎样局部刷新网页?

新浪微博老说CSS加载失败,请你尝试按ctrl+F5刷新页面。

F5刷新与Ctrl+F5强制刷新的区别

ACTIONSCRIPT 2:按一个键后执行一次动作