Re: Setting the exact location of the export
Code: Select all
FileContentManagerCode: Select all
String savedName;
savedName = "Our_home";
// Use native file dialog under Mac OS X
/* if (OperatingSystem.isMacOSX()) {
savedName = showFileDialog(parentView, dialogTitle, contentType, name, true);
} else {
savedName = showFileChooser(parentView, dialogTitle, contentType, name, true);
}*/