Android Object: "Save screenshot" not working
I am attempting to share a screenshot. I am following the example that is included with the android exporter, "TestAndroidPlus.mfa".
It seems the "Save screenshot" action is not working.
This expression is used in the example:
Quote:
PublicStorageDirectory( "Android object", "Pictures" ) + "/" + "myScreenCapture.jpg"
That should save the screenshot to "/mnt/sdcard/Pictures/myScreenCapture.jpg".
But when I browse "My files" on my android device, the image is not there. "Pictures" is not an existing folder, my images are stored in "/mnt/sdcard/Image" so I tried changing the expression to
Quote:
PublicStorageDirectory( "Android object", "Image" ) + "/" + "myScreenCapture.jpg"
The screenshot is not showing up in the "Image" folder either.
I've also tried the expression
Quote:
TempPath$( "Android object" ) + "myScreenCapture.jpg"
That doesn't seem to work either.
Am I doing something wrong here?