How do I get flash to reload the parent HTML page

2019-04-30 03:36发布

I have a flash app (SWF) running Flash 8 embedded in an HTML page. How do I get flash to reload the parent HTML page it is embedded in? I've tried using ExternalInterface to call a JavaScript function to reload the page but that doesn't seem to work. ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­

5条回答
我想做一个坏孩纸
2楼-- · 2019-04-30 04:02

Check the ExternalInterface in Action Script. Using this you can call any JavaScript function in your code:

  if (ExternalInterface.available)
  {
    var result = ExternalInterface.call("reload");
  }

In the Embedding HTML code enter a JavaScript function:

  function reload()
  {
    document.location.reload(true);
    return true;
  }

This has the advantage that you can also check, if the function call succeeded and act accordingly. getUrl along with a call to JavaScript should not be used today anymore. It's an old hack.

查看更多
神经病院院长
3楼-- · 2019-04-30 04:04

Quick and dirty: This will work in most cases (without modifying the HTML page at all):

import flash.external.ExternalInterface;

ExternalInterface.call("history.go", 0);
查看更多
叛逆
4楼-- · 2019-04-30 04:12

Simple one line solution.

ExternalInterface.call("document.location.reload", true);
查看更多
女痞
5楼-- · 2019-04-30 04:17

Try something like this:

getURL("javascript:location.reload(true)");

查看更多
迷人小祖宗
6楼-- · 2019-04-30 04:17

In Flash 10 you can do:

navigateToURL(new URLRequest("path_to_page"), "_self");
查看更多
登录 后发表回答