How are you all doing?
I have a question please. Is it possible to know the path of the user pictures folder?
for example: C:\Users\USERNAME\Pictures\
I would like to use the RenderTarget:save(filename,x,y,width,height) function.
Do you think lfs can do it?
Thank you very much for your help.
Comments
does one of these refer to the 'root' directory on an android phone? (where usually apps put their own folder to store public stuff related to the app)
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Dislikes: JuanZambrano
You need to modify the java code (don't worry it's easy):
1- go to gideros installation folder and gmedia plugin:
C:\Program Files (x86)\Gideros\All Plugins\gmedia\bin\Android\src\com\giderosmobile\android\plugins\media
2- open GMedia.java (notepad++) and go to line 141
3- by default the path is: SDCARD/Pictures you can change it!
4- FOLDER NAME: line 143, you can change "/GIDEROS" folder name to something else (your app name)
5- FILE NAME: line 144, you can change "img_" + timeStamp + ".png" to something else
6- SAVE THE JAVA FILE
7- RE-EXPORT YOUR APP
It's quick and dirty but it works. You have to do the change for each of your apps you want to save to android.
https://wiki.giderosmobile.com/index.php/Mediamanager:postPicture
Likes: MoKaLux