Platform.loadMedia()

Availability

Flash Player 7 + TheSpringBox V1

Usage

Platform.loadMedia(title:String, url:String) : Void;
				

Parameters

title - A String representing the title for the Media Window.

url - A String representing the URL of the image to be loaded into the Media Window.

Returns

Nothing.

Description

Method; spawns a application level media window used to display image content too large to display inside a widget. If an instance of the media window already exists when the function is called, the content will be replaced with the content from the url.

Example

This example displays a media window for weather maps.

Platform.loadMedia
("Today's Weather","http://www.weather.com/some/weather/map.jpg");

Platform.loadMedia()

Availability

Flash Player 7 + TheSpringBox V1

Usage

Platform.loadMedia(title:String, url:String) : Void;

Parameters

title - A String representing the title for the Media Window.

url - A String representing the URL of the image to be loaded into the Media Window.

Returns

Nothing.

Description

Method; spawns a application level media window used to display image content too large to display inside a widget. If an instance of the media window already exists when the function is called, the content will be replaced with the content from the url.

Example

This example displays a media window for weather maps.

Platform.loadMedia
("Today's Weather",
"http://www.weather.com/some/weather/map.jpg"
);