Garry's Mod Wiki

HTML

Description

The HTML control can be used to display HTML code just like an internet browser. Unlike DHTML, this control cannot accept user input or complex interaction, such as retrieving image data.

Blocked URL Extentions

This means your url cannot end in any of these extensions, e.g.: (http://yourdomain.com/garry.exe)

  • .exe
  • .bat
  • .dll
  • .zip
  • .mp3
  • .swf

Parent

Derives methods, etc not listed on this page from Panel.

Example

Creates an HTML control in the center of screen, and makes it display http://wiki.garrysmod.com/

HTMLTest = vgui.Create( "HTML" ) HTMLTest:SetPos( 50, 50 ) HTMLTest:SetSize( ScrW() - 100, ScrH() - 100 ) HTMLTest:OpenURL( "wiki.garrysmod.com" )