Option: external_link_list_url

This option enables you to have a external list of links this list of links can be generated by a server side page and then inserted into the link dialog windows of TinyMCE. The links can be to internal site documents or external URLs.

Example of usage of the external_link_list_url option:

tinyMCE.init({
	...
	external_link_list_url : "myexternallist.js"
});

Example of a external link list file: (myexternallist.js)

var tinyMCELinkList = new Array(
	// Name, URL
	["Moxiecode", "http://www.moxiecode.com"],
	["Freshmeat", "http://www.freshmeat.com"],
	["Sourceforge", "http://www.sourceforge.com"]
);