CreateBrowser

From Multi Theft Auto: Wiki
Revision as of 19:25, 29 September 2014 by Woovie (talk | contribs)
Jump to navigation Jump to search

This function creates a new web browser element.

Syntax

browser createBrowser ( int width, int height, bool isLocal [, bool transparent = false ] )

Required Arguments

  • width: The browser's native width
  • height: The browser's native height
  • isLocal: See Local vs remote mode

Optional Arguments

  • transparent: true if you want the browser transparent, false for opaque.

Returns

Returns true if the browser element was successfully created, false otherwise. Returns also false, if the user disabled remote pages and isLocal was set to false.

Local Example

--todo

Remote Example

--todo

See Also