TinyMCE:API/tinymce.Editor/settings
From Moxiecode Documentation Wiki
[edit]
Property: settings
[edit]
Summary
This property is the collection of settings for the editor instance. This collection gets filled with different values depending on what you added during the init init and what TinyMCE uses for defaults. Any setting that was set during init or set by default in TinyMCE can be accessed here. Note that changing a setting's value here will not neccessarily cause TinyMCE to change its behavior automatically.
[edit]
Examples
// Get the value of the theme setting
tinyMCE.activeEditor.windowManager.alert("You are using the " + tinyMCE.activeEditor.settings.theme + " theme");
