For the complete documentation index, see llms.txt. This page is also available as Markdown.

iframeNew

⚠️ Not implemented in the current OSL CLI.

Description

iframeNew creates a new iframe that embeds the web page at the given URL and returns an iframe id. That id is passed to the other iframe methods to control the embed.

Parameters

iframeNew takes no parameters; it is called on the URL string to load.

Usage

frame = "https://example.com".iframeNew()
// creates an iframe for the page and returns its id

frame.iframeResize(640, 480)
frame.iframeGoto(0, 0)
frame.iframeShow()

Last updated