Get your own copy
Don't hesitate! Just download and test it all by yourself for free!
This option should contain a semicolon separated list of link target names and target titles linked by an equal sign. The titles are the ones that get presented to the user in the link target drop down list and the target names are the targets that get inserted as a 'target' attribute.
tinyMCE.init({
...
theme_advanced_link_targets : "someframe=Some frame,otherframe=Some other frame"
});
Search documentation.
brett.henderson
The list is actually comma separated and the format is display_name=target_value. So the example should be
theme_advanced_link_targets : "Some frame=someframe,Some other frame=otherframe"