DgsCreateMediaBrowser: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function is for creating a browser(CEF) which is coded to load Video/Audio/Image more convenient. Only Local Mode Available. Available Medi...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
{{Client function}}
{{Client function}}
This function is for creating a browser(CEF) which is coded to load Video/Audio/Image more convenient.
This function is for creating a browser(CEF) which is coded to load Video/Audio/Image more convenient.
Only Local Mode Available.
Only Local Mode Available.
Available Media Format:
Available Media Format:
Video: webm
 
Audio: ogg
*Video: webm
Image: png/gif/jpg ...
 
*Audio: ogg
 
*Image: png/gif/jpg ...


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
element dgsCreateMediaBrowser( float width, float height )
element dgsCreateMediaBrowser( int width, int height, bool transparent )
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===
===Required Arguments===
*'''width:''' A float of the width of the window. This is affected by the ''relative'' argument.
*'''width:''' A integer of the width of the browser.
*'''height:''' A float of the height of the window. This is affected by the ''relative'' argument.
*'''height:''' A integer of the height of the browser.
 
===Optional Arguments===
*'''transparent:''' true if you want the browser transparent, false for opaque.


===Returns===
===Returns===

Latest revision as of 12:35, 11 September 2019

This function is for creating a browser(CEF) which is coded to load Video/Audio/Image more convenient.

Only Local Mode Available.

Available Media Format:

  • Video: webm
  • Audio: ogg
  • Image: png/gif/jpg ...

Syntax

element dgsCreateMediaBrowser( int width, int height, bool transparent )

Required Arguments

  • width: A integer of the width of the browser.
  • height: A integer of the height of the browser.

Optional Arguments

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

Returns

Returns a browser element if it was created successfully, false otherwise.

Example

This example loads a local gif image

loadstring(exports.dgs:dgsImportFunction())()  --Import DGS functions
browser = dgsCreateMediaBrowser(256,256) --Create Multi Media Browser
dgsMediaLoadMedia(browser,"test.gif","IMAGE")  --Load the gif file into multi media browser
image = dgsCreateImage(200,200,200,200,browser,false)  --Apply the browser to a dgs-dximage

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips