TinyMCE:Configuration/focus alert
From Moxiecode Documentation Wiki
[edit]
Option: focus_alert
This option enables you to specify if an "Editor is not focused" alert message should appear, if the user calls tinyMCE.execCommand and hasn't selected a editor instance before. This message will normally not appear unless some integration has been made. Using tinyMCE.execInstanceCommand prevents this from happening, since it auto focuses the editor specified. The default value of this option is true.
[edit]
Example of usage of the focus_alert option:
tinyMCE.init({
...
focus_alert : false
});
