Resize DHTML (Method): Difference between revisions

no edit summary
No edit summary
No edit summary
Tag: Reverted
Line 1: Line 1:
<onlyinclude>{{Method|name = Resize
<onlyinclude>{{Method|name = Navigate
|arguments = [[Integer]] '''Width''', [[Integer]] '''Height'''
|arguments = [[Content]] <var>URL = about:blank</var>
|description = Changes the size of the window.
|description = Allows the DHTML to load a trusted url. It should be noted that Navigate loads about:blank by default.
|object = HtmlWindow
|object = HtmlWindow
}}</onlyinclude>
}}</onlyinclude>
Line 7: Line 7:
{{clear floats}}
{{clear floats}}


{{Example|This code will create and then spam resize a DHTML window 1000 times:
{{Example|This code will open shirt.png, the default roblox T-Shirt from around 2010:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local HtmlService = game:service("HtmlService")
local HtmlService = game:service("HtmlService")
Line 13: Line 13:


htmlWindow:Show()
htmlWindow:Show()
 
htmlWindow:Navigate("http://roblox.com/images/shirt.png")
for i = 0, 1000 do
htmlWindow:Resize(math.floor(math.random(100, 300)), math.floor(math.random(100, 300)))
end
</syntaxhighlight>}}
</syntaxhighlight>}}