GetBrowserURL

From Multi Theft Auto: Wiki
Revision as of 17:03, 10 August 2018 by Surge (talk | contribs)
Jump to navigation Jump to search

This function returns the URL of the specified browser.

Syntax

string getBrowserURL ( browser webBrowser )

OOP Syntax Help! I don't understand this!

Method: browser:getURL(...)
Variable: .url
Counterpart: loadBrowserURL


Required Arguments

  • webBrowser: The browser

Returns

Returns the web browser URL.

Example

This example creates a command (/isyoutubeloaded) to check if the browser created have youtube loaded, if it isnt it loads youtube.

Click to collapse [-]
Client
-- In order to render the browser on a corner, we need to get the dimensions of the screen
local screenWidth, screenHeight = guiGetScreenSize( )

-- Let's create a new browser in remote mode
local window = guiCreateWindow( screenWidth/2, 0, screenWidth/2, screenHeight/2, "Web Browser", false )
local browser = guiCreateBrowser( 0, 28, screenWidth/2, screenHeight/2, false, false, false, window )
local theBrowser = guiGetBrowser( browser ) -- Get the browser element from gui-browser

-- Let's create a new command to check if youtube is loaded and load it if isnt
addCommandHandler ( "isyoutubeloaded",
    function ()
		if getBrowserURL(theBrowser) == "" then  -- If the browser didnt load anything yet, load youtube
			outputChatBox("Youtube isn't loaded yet, loading it now....")
			loadBrowserURL( theBrowser, "https://www.youtube.com/" )
		else -- If the browser loaded something
			outputChatBox("Youtube is loaded.")
		end
    end
)

See Also