過去のナビゲーションリンクのスキップSecure Global Desktop 4.31 管理者ガイド > アプレット > getWebtopFramesetURL (フレームワークアプレット)

getWebtopFramesetURL (フレームワークアプレット)

構文

過去のコマンド構文またはプログラムコードのスキップstring getWebtopFramesetURL()

説明

The getWebtopFramesetURL method is used to get the URL for the webtop frameset. To select the correct theme and locale, call this method after the user has logged in.

If this method is:

過去のコマンド構文またはプログラムコードのスキップ<SCRIPT Language="JavaScript">
function Wait()
{
   setTimeout("DoLogin()", 4000);
}
function DoLogin()
{
   var applet = top.StateFrame.document.applets["Tarantella Framework"];
   status = applet.login("", "");
   if (status == 0)
   {
      frameset = applet.getWebtopFramesetURL();
      applet.showDocument(frameset, "MainFrame");
   }
}

</SCRIPT>

Defines a function that returns the URL of the webtop frameset. It assumes that the Framework applet is in a frame called "StateFrame" (this is its normal location).

関連トピック