OnClientBrowserCreated

From Multi Theft Auto: Wiki
Revision as of 22:18, 2 April 2018 by Myonlake (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This event is triggered when the CEF browser instance has been created. If you want to load a specific website right after creating the browser (using createBrowser or guiCreateBrowser), this event will be the convenient place.

[[{{{image}}}|link=|]] Note: Calling loadBrowserURL right after createBrowser will not work normally due to the nature of the asynchronous browser interface.

Parameters

No parameters.

Source

The browser element.

Example

	addEventHandler("onClientBrowserCreated", resourceRoot,
	    function ()
                -- when the browser is loaded
		loadBrowserURL(source, "http://mtasa.com") -- load MTA:SA site
	    end
	)

See Also