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; }