Is there any comprehensive reference or guide for the APIs used in the GUI composer? Code such as:
var fileInfo = getFileInfo();
var options = getOptions();
var callback = function ( errorInfo)
{
showError( errorInfo);
};
TI.File.save( graph_data, fileInfo, options, callback);
particularly the last line, isnt exaplained anywhere, and i cant find a reference to the TI api anywhere. Does such a thing exist?
Failing that, is there a version of TI.file.save that appends to a file rather than creating a new one?