Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

OpenPage()

Anchor
OpenPage
OpenPage

OpenPage

Displays the page during the project runtime.

Subroutine

Command

OpenPage (“Page name”)

Script

OpenPage “Page name”

Description

This command opens the page window which is saved as “Page name”.

Example

Enter the command to display the“Page1” window.
OpenPage (“Page1”)

Open the GOOGLE main window.

OpenPage("http://www.google.com")

Display the GOOGLE main window at (top: 100, left: 200, width: 800, height: 600).

OpenPage("http://www.google.com,position:100,200,800,600")

OpenPageEx()

Anchor
OpenPageEx
OpenPageEx

OpenPageEx

Opens the item registered on the specified page, replacing it with the specified tag.

Subroutine

Command

OpenPageEx(“Page Name”,”Tag Name List”)

ScriptOpenPageEx “Page Name”,”Tag Name List”

Not available in the Script.

Description

Opens the item registered on the specified page, replacing it with the specified tag.

When editing a page, replace the items specified by $1, $2... Replace the items specified by $n with the tag names specified in the “Tag Name List”. Tag names are separated by commas (,).

Example

Replace the $1 and $2 items on Page1 with tags “AA” and “BB”, respectively, to display them on the current screen.

OpenPageEx(“Page1”,”AA,BB”)

ReplacePage

OpenPagePos()

Anchor

ReplacePage

OpenPagePos

ReplacePage

OpenPagePos

ReplacePage

Replaces certain pages which is specified by the operator

OpenPagePos

Opens the specified page at the (X, Y) coordinates with the given width and height.

Subroutine

Command

ReplacePage

OpenPagePos(“Page

name 1”, “Page name 2”

Name”, ”X, Y, width, height”)

Script

ReplacePage “Page name 1”, “Page name 2”

Description

This command is used to replace “Page name 1“ window with “Page name 2” window.
The size and position of the new page are set automatically as same as those of the old page.
If you enter an asterisk (“*”) instead of “Page name 1”, all windows will be closed at once, and the “Page name 2” window will be opened.

Example

Enter the command to replace the “Page A” window with “Page B” window

Not available in the Script.

Description

Opens the specified page at the (X, Y) coordinates with the given width and height.

Example

Opens Page1 at the (500, 500) coordinates with a size of 1920 × 1080.

OpenPagePos(“Page1”, ”500, 500, 1920, 1080”)

ReplacePage()

Anchor
ReplacePage
ReplacePage

ReplacePage

Replaces the current page with the specified page.

Subroutine

Command

ReplacePage (“Page name”)

Script

ReplacePage “Page name”

Description

Replaces the current page with “Page name”.

Example

Replaces the current page with the “Page A” page.
ReplacePage (“Page A”

, “Page B”

)

ReplacePageEx()

Anchor
ReplacePageEx
ReplacePageEx

ReplacePageEx

Replaces the registered items current page with the tags you specify and displays them on the screenspecified page, and replaces the registration entry with the specified tag.

Subroutine

Command

ReplacePageEx("Current Page Name","New Page Name","Tag Name List")

Script

ReplacePageEx "Current Page Name","New Page Name","Tag Name List"

Description

Replaces items registered on a new the current page with the tags you specify and displays them on the screenspecified page, and replaces the registration entry with the specified tag.

When editing a page, replace the items specified by $1, $2... Replace the items specified by $n with the tag names specified in the “Tag Name List”. Tag names are separated by commas (,).

Example

Replace Replaces the $1 and $2 items on Page2 Page1with tags “AA” and “BB”AA” and “BB, respectively, and display them on the screen.

ReplacePageEx(“Page1”,“Page2”,”AA,BB”)

RunApp()

Anchor
RunApp
RunApp

...