Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过Application.pageTitle属性设置了浏览器的标题。有什么方法可以动态更改 Web 浏览器的标题或 as3?
Application.pageTitle
您可以从 AS3 调用 Javascript 函数来更改标题
//AS3 ExternalInterface.call("changeTitle","title you want"); //javascript function changeTitle(newTitle){ document.title = newTitle; }