Difference between revisions of "Mediamanager:getFile"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 24: Line 24:
 
end
 
end
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
=== See also ===
 +
For mobile: '''[[Share:import]]'''
  
 
{{Media}}
 
{{Media}}

Latest revision as of 22:17, 20 February 2025

Available since: Gideros 2016.1
Class: Media

Description

Allows user to select a file from system file (tested on windows 10).

(string) = mediamanager:getFile()

Return values

Returns (string) path to the file

Example

Browse your system for a file of any type

function AnimationScene:browse()
	local function mediareceive(e)
		print(e.path)
		mediamanager:removeEventListener(Event.MEDIA_RECEIVE, mediareceive)
	end
	mediamanager:getFile("*", lfs.currentdir())
	mediamanager:addEventListener(Event.MEDIA_RECEIVE, mediareceive)
end

See also

For mobile: Share:import