Difference between revisions of "Mediamanager:getFile"
From GiderosMobile
|  (Created page with "__NOTOC__ '''Available since:''' Gideros 2016.1<br/> '''Supported platforms:''' File:Platform mac.pngFile:Platform pc.png<br/> '''Class:''' Media<br/>  === Descrip...") | |||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| __NOTOC__ | __NOTOC__ | ||
| '''Available since:''' Gideros 2016.1<br/> | '''Available since:''' Gideros 2016.1<br/> | ||
| − | |||
| '''Class:''' [[Media]]<br/> | '''Class:''' [[Media]]<br/> | ||
| === Description === | === Description === | ||
| Allows user to select a file from system file (tested on windows 10). | Allows user to select a file from system file (tested on windows 10). | ||
| − | < | + | <syntaxhighlight lang="lua"> | 
| (string) = mediamanager:getFile() | (string) = mediamanager:getFile() | ||
| − | </ | + | </syntaxhighlight> | 
| === Return values === | === Return values === | ||
| Line 15: | Line 14: | ||
| === Example === | === Example === | ||
| '''Browse your system for a file of any type''' | '''Browse your system for a file of any type''' | ||
| − | < | + | <syntaxhighlight lang="lua"> | 
| function AnimationScene:browse() | function AnimationScene:browse() | ||
| 	local function mediareceive(e) | 	local function mediareceive(e) | ||
| Line 24: | Line 23: | ||
| 	mediamanager:addEventListener(Event.MEDIA_RECEIVE, mediareceive) | 	mediamanager:addEventListener(Event.MEDIA_RECEIVE, mediareceive) | ||
| end | end | ||
| − | </ | + | </syntaxhighlight> | 
| + | |||
| + | === See also === | ||
| + | For mobile: '''[[Share:import]]''' | ||
| {{Media}} | {{Media}} | ||
Latest revision as of 21: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
- X Media:copy
- X Media:crop
- X Media:drawFill
- X Media:drawImage
- X Media:drawLine
- X Media:drawText
- X Media:flipHorizontal
- X Media:flipVertical
- X Media:floodFill
- X Media:getHeight
- X Media:getPath
- X Media:getPixel
- X Media:getRotation
- X Media:getWidth
- X Media:resize
- X Media:resizeHeight
- X Media:resizeWidth
- X Media:save
- X Media:setPixel
- X Media:setRotation
- X Media:trim
