HU/loadBrowserURL: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function hu}} {{New feature/item|3.0150|1.5|| This function loads the specified URL. }} ==Syntax== <syntaxhighlight lang="lua">bool loadBrowserURL ( browse...")
 
mNo edit summary
Line 2: Line 2:
{{Client function hu}}
{{Client function hu}}
{{New feature/item|3.0150|1.5||
{{New feature/item|3.0150|1.5||
This function loads the specified URL.
Ez a függvény betölt egy adott URL-t.
}}
}}


==Syntax==
==Szintaxis==
<syntaxhighlight lang="lua">bool loadBrowserURL ( browser webBrowser, string url [, string postData = "", bool urlEncoded = true ] )</syntaxhighlight>
<syntaxhighlight lang="lua">bool loadBrowserURL ( browser webBrowser, string url [, string postData = "", bool urlEncoded = true ] )</syntaxhighlight>
{{OOP||[[Element/Browser|browser]]:loadURL|url|getBrowserURL}}
{{OOP||[[Element/Browser|browser]]:loadURL|url|getBrowserURL}}


===Required arguments===
===Kötelező argumentumok===
*'''webBrowser:''' The [[Element/Browser|browser]] element which will load the URL
*'''webBrowser:''' Az [[Element/Böngésző|browser]] element amely betölti az URL-t
*'''url:''' The url you want to load. It can either contain a remote website ("http://" prefix) or a website stored within a local resource ("http://mta/local/gui.html" for example, see [[Local_Scheme_Handler|Local Scheme Handler]] for details).
*'''url:''' Az URL amit be akarsz tölteni. Ez lehet egy távoli weboldal ("http://" előtag) vagy egy weblap amit a helyi resource-ban tárolnak ("http://mta/local/gui.html" például, lásd [[Local_Scheme_Handler|Local Scheme Handler]] a részletekért).
*'''postData:''' The post data passed to the website. Its content type can be any type (e.g. JSON) if urlEncoded is set to ''false''
*'''postData:''' További adatok amiket a weboldalnak elküld. A tartalma lehet bármilyen (pl. JSON) amennyiben '''urlEncoded''' értéke ''false''
*'''urlEncoded:''' If set to ''true'', it will be available f.e. in PHP's $_POST variable (the content type is: ''application/x-www-form-urlencoded'')
*'''urlEncoded:''' Ha ''true'', elérhető lesz például a PHP $_POST változójában (a tartalom típusa: ''application/x-www-form-urlencoded'')


===Returns===
===Visszaadott érték===
Returns ''true'' if the URL was successfully loaded.
''true'' ha az URL sikeresen be lett töltve.


==Example==
==Példa==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- In order to render the browser on the full screen, we need to know the dimensions.
-- In order to render the browser on the full screen, we need to know the dimensions.
Line 45: Line 45:
</syntaxhighlight>
</syntaxhighlight>


==See also==
==Lásd még==
{{CEF_functions_hu}}
{{CEF_functions_hu}}


[[en:loadBrowserURL]]
[[en:loadBrowserURL]]

Revision as of 10:38, 11 August 2018

Ez a függvény betölt egy adott URL-t.

Szintaxis

bool loadBrowserURL ( browser webBrowser, string url [, string postData = "", bool urlEncoded = true ] )

OOP Syntax Help! I don't understand this!

Method: browser:loadURL(...)
Variable: .url
Counterpart: getBrowserURL


Kötelező argumentumok

  • webBrowser: Az browser element amely betölti az URL-t
  • url: Az URL amit be akarsz tölteni. Ez lehet egy távoli weboldal ("http://" előtag) vagy egy weblap amit a helyi resource-ban tárolnak ("http://mta/local/gui.html" például, lásd Local Scheme Handler a részletekért).
  • postData: További adatok amiket a weboldalnak elküld. A tartalma lehet bármilyen (pl. JSON) amennyiben urlEncoded értéke false
  • urlEncoded: Ha true, elérhető lesz például a PHP $_POST változójában (a tartalom típusa: application/x-www-form-urlencoded)

Visszaadott érték

true ha az URL sikeresen be lett töltve.

Példa

-- In order to render the browser on the full screen, we need to know the dimensions.
local screenWidth, screenHeight = guiGetScreenSize()

-- Let's create a new browser in local mode. We will not be able to load an external URL.
local webBrowser = createBrowser(screenWidth, screenHeight, false, false)
	
-- This is the function to render the browser.
function webBrowserRender()
	-- Render the browser on the full size of the screen.
	dxDrawImage(0, 0, screenWidth, screenHeight, webBrowser, 0, 0, 0, tocolor(255,255,255,255), true)
end

-- The event onClientBrowserCreated will be triggered, after the browser has been initialized.
-- After this event has been triggered, we will be able to load our URL and start drawing.
addEventHandler("onClientBrowserCreated", webBrowser, 
	function()
		-- After the browser has been initialized, we can load our website.
		loadBrowserURL(webBrowser, "https://www.youtube.com/")

		-- Now we can start to render the browser.
		addEventHandler("onClientRender", root, webBrowserRender)
	end
)

Lásd még

GUI Függvények