Share Event.SHARE IMPORT RESULT

From GiderosMobile
Revision as of 20:38, 20 February 2025 by MoKaLux (talk | contribs) (Created page with "'''Available since:''' Gideros 2024.1<br/> '''Value:''' fileshareImportResult<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: fileshareImportResult
Defined by: Share

Description

This Event is dispatched after some data were received.

Example

require "Share"

local share = Share.new()

share:import("*/*" ,"jpg") -- MIME type, extension

local function decodeFileData(e)
	print("share:import callback:", e and e.status, e and e.mime, e and e.name)
	if e and e.status and e.status > 0 then
		print("Got Data:", #e.data)
	else
		print("Import failed")
	end
	share:removeEventListener(Event.SHARE_IMPORT_RESULT, decodeFileData)
end
share:addEventListener(Event.SHARE_IMPORT_RESULT, decodeFileData)

Event properties

name: (string) the result file name
mime: (string) the result MIME type
data: (varies) the result data (String or data)
status: (number) the result status, 1 = success