HU/createBrowser: Difference between revisions
Jump to navigation
Jump to search
Line 50: | Line 50: | ||
==Távoli példa== | ==Távoli példa== | ||
Ez a példa megmutatja, hogyan hozhat létre teljes képernyős webböngészőt (helyi html-fájlt mutatva) bemeneti kezelés nélkül | Ez a példa megmutatja, hogyan hozhat létre teljes képernyős webböngészőt (helyi html-fájlt mutatva) bemeneti kezelés nélkül.<br> | ||
Remember, that youtube.com is on the global whitelist. If you want to load a domain/page that is not on the global whitelist, you have to request it with [[requestBrowserDomains|requestBrowserDomains]]. | Remember, that youtube.com is on the global whitelist. If you want to load a domain/page that is not on the global whitelist, you have to request it with [[requestBrowserDomains|requestBrowserDomains]]. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> |
Revision as of 18:40, 29 July 2018
Ez a funkció létrehoz egy új böngésző elemet.
Szintaxis
element createBrowser ( int width, int height, bool isLocal [, bool transparent = false ] )
OOP Syntax Help! I don't understand this!
- Method: Browser(...)
Kötelező argumentumok
- width: A böngésző natív szélessége
- height: A böngésző natív magassága
- isLocal: Sets whether the browser can only show local content or content from the internet (see examples for more information)
Tetszőleges argumentumok
- transparent: true, ha a böngészőt átlátszóvá szeretné tenni, false átlátszatlan.
Visszaadott érték
Visszaadja a böngésző textúráját, ha sikeresen létre lett hozva, egyébként false. Akkor is false értéket ad vissza, ha a felhasználó letiltotta a távoli oldalakat, és az isLocal-t false-ra állította.
Közeli példa
Ez a példa megmutatja, hogyan hozhat létre teljes képernyős webböngészőt (helyi html-fájlt mutatva) bemeneti kezelés nélkül.
--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, true, 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 file. loadBrowserURL(webBrowser, "http://mta/local/html/site.html") --Now we can start to render the browser. addEventHandler("onClientRender", root, webBrowserRender) end )
Távoli példa
Ez a példa megmutatja, hogyan hozhat létre teljes képernyős webböngészőt (helyi html-fájlt mutatva) bemeneti kezelés nélkül.
Remember, that youtube.com is on the global whitelist. If you want to load a domain/page that is not on the global whitelist, you have to request it with requestBrowserDomains.
--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 remote mode. local webBrowser = createBrowser(screenWidth, screenHeight, false, false) --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 www.youtube.com loadBrowserURL(webBrowser, "http://www.youtube.com") --Now we can start to render the browser. addEventHandler("onClientRender", root, webBrowserRender) end )
Lásd még
- canBrowserNavigateBack
- canBrowserNavigateForward
- createBrowser
- executeBrowserJavascript
- focusBrowser
- getBrowserProperty
- getBrowserSettings
- getBrowserSource
- getBrowserTitle
- getBrowserURL
- injectBrowserMouseDown
- injectBrowserMouseMove
- injectBrowserMouseUp
- injectBrowserMouseWheel
- isBrowserDomainBlocked
- isBrowserFocused
- isBrowserLoading
- isBrowserRenderingPaused
- loadBrowserURL
- navigateBrowserBack
- navigateBrowserForward
- reloadBrowserPage
- requestBrowserDomains
- resizeBrowser
- setBrowserAjaxHandler
- setBrowserProperty
- setBrowserRenderingPaused
- setBrowserVolume
- toggleBrowserDevTools
Fordította
- Surge