Web browser window operations

日本語のページ

This page explains how to operate the web browser pop-up window itself.

Preparing a Web Page

Pages displayed in a web browser are created using HTML and style sheets.
These files are placed in the Tsumicky installation folder.
Sample HTML files are included in the "html" folder in the Tsumicky installation folder.

Opening a Window

To open a web browser window, use the "Browser Window" block.
As parameters, specify the URL of the page to be displayed in the window and the window width and height.
The URL is specified relative to the Tsumicky page address.

Open browser window

To control the opened window, assign the return value of the "Browser Window" block to a variable.
For example, to assign it to the variable "win," follow the steps below.

  1. Create a variable "win" in the "Variables" group.
  2. Drag the "Set Variable to XX" block in the "Variables" group and select "win" from the variable name dropdown.
  3. Drag the "Open Browser Window" block to "Set to XX."

Open a web browser window and assign it to the variable "win"

An example of opening a web browser window can be downloaded from here.

Navigate to a Page

To navigate to a different page in an already open web browser window, use the "navigate to URL XX in window XX" block.

Navigate to specified URL

For example, let's say you've assigned the web browser window to the variable win and want to display the page html/hello.html in that window.
In this case, follow the steps below.

  1. Drag the "navigate to URL in window XX" block.
  2. Select the variable win in the "in window XX" dropdown.
  3. Enter the URL "html/hello.html" in the "navigate to URL in XX" parameter.

Page navigation

Close Window

To close a web browser window, use the "close window XX" block.
In the "XX" dropdown, select the variable to which you assigned the web browser window.

Close browser window