Difference between revisions of "Mediamanager:getFile"

From GiderosMobile
m
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== 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).
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = mediamanager:getFile()
 
(string) = mediamanager:getFile()
 
</source>
 
</source>
Line 14: Line 14:
 
=== Example ===
 
=== Example ===
 
'''Browse your system for a file of any type'''
 
'''Browse your system for a file of any type'''
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
function AnimationScene:browse()
 
function AnimationScene:browse()
 
local function mediareceive(e)
 
local function mediareceive(e)

Revision as of 15:28, 13 July 2023

Available since: Gideros 2016.1
Class: Media

Description

Allows user to select a file from system file (tested on windows 10). <syntaxhighlight lang="lua"> (string) = mediamanager:getFile() </source>

Return values

Returns (string) path to the file

Example

Browse your system for a file of any type <syntaxhighlight lang="lua"> 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 </source>