JavaScript
{dialog.object}getCurrentEditorSettings Method
Syntax
{dialog.object}.getCurrentEditorSettings();
Description
Gets the 'settings' object for the currently open Editor. If no Editor is open, returns false;
Example
//var s = {dialog.object}.getCurrentEditorSettings();
if(s) alert(JSON.stringify(s));
else alert('No editor is open');See Also