"save as" possibl?

The following will work for both OS X and Windows…

local platformName = system.getInfo("platformName") if (platformName == "Win") then system.openURL(system.pathForFile(nil, system.DocumentsDirectory)) elseif (platformName == "Mac OS X") then system.openURL("file://" .. system.pathForFile(nil, system.DocumentsDirectory)) end