Difference between revisions of "Event.APPLICATION RESIZE"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 7: Line 7:
  
 
=== Examples ===
 
=== Examples ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
stage:addEventListener(Event.APPLICATION_RESIZE,function()
 
stage:addEventListener(Event.APPLICATION_RESIZE,function()
 
local minX, minY, maxX, maxY = application:getLogicalBounds()
 
local minX, minY, maxX, maxY = application:getLogicalBounds()

Revision as of 15:26, 13 July 2023

Available since: Gideros 2015.03.22
Value: applicationResize
Defined by: EventDispatcher

Description

This event is dispatched when app window has changed its size on Desktops.

Examples

<syntaxhighlight lang="lua"> stage:addEventListener(Event.APPLICATION_RESIZE,function() local minX, minY, maxX, maxY = application:getLogicalBounds() print("--- RESIZE ---",(minX - maxX) * -1) end) </source>