Share Event.SHARE EXPORT RESULT

From GiderosMobile
Revision as of 20:28, 20 February 2025 by MoKaLux (talk | contribs) (Created page with "'''Available since:''' Gideros 2024.1<br/> '''Value:''' fileshareExportResult<br/> '''Defined by:''' Share<br/> === Description === This Event is dispatched after some da...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2024.1
Value: fileshareExportResult
Defined by: Share

Description

This Event is dispatched after some data were shared.

Example

require "Share"

local share = Share.new()

share:export("Hello Gideros!", "text/plain" , "hello.txt") -- data, MIME type, file name

share:addEventListener(Event.SHARE_EXPORT_RESULT, function(e)
	print("share:export callback:", e and e.status)
end)

Event properties

status: (number) the result status, 1 = success