Event.APPLICATION RESIZE

From GiderosMobile
Revision as of 01:44, 10 December 2019 by MoKaLux (talk | contribs) (added oleg's example)

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

stage:addEventListener(Event.APPLICATION_RESIZE, function()
	print("--- RESIZE ---")
end)