更改SWF游戏的运行环境需要做哪些更改?
Whats changes are needed when change the run enviroment of SWF game?
我想将 Flash 游戏的运行环境从 Web 更改为桌面(Windows)。
游戏向后端服务器发送和接收。
就像现在一样:
var varURL:URLRequest = new URLRequest("../../index.php");
运行 来自 Windows 应用程序,应将其更改为完整的 URL?
它应该更改为完全限定的 URL,您的脚本驻留在您的服务器上;例如
var varURL:URLRequest = new URLRequest("https://example.com/game-directory/index.php");
请注意,您可能需要检查所使用的 cross-domain policy on the website where your scripts are hosted, and consider the transport protocols,因为某些操作系统可能不允许。
我想将 Flash 游戏的运行环境从 Web 更改为桌面(Windows)。 游戏向后端服务器发送和接收。 就像现在一样: var varURL:URLRequest = new URLRequest("../../index.php");
运行 来自 Windows 应用程序,应将其更改为完整的 URL?
它应该更改为完全限定的 URL,您的脚本驻留在您的服务器上;例如
var varURL:URLRequest = new URLRequest("https://example.com/game-directory/index.php");
请注意,您可能需要检查所使用的 cross-domain policy on the website where your scripts are hosted, and consider the transport protocols,因为某些操作系统可能不允许。