Share Event.SHARE IMPORT RESULT
From GiderosMobile
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