I'm in the same boat. Short of rewriting the Javascript that represents the preview function, you can't. You can however write an external plugin to pull the content into an external template. I'm working on that myself, if/when i get it working I can send it on to you.
RE: code to launch preview window
RE: code to launch preview window
so it must be easy to obtain the code ro do this?
RE: code to launch preview window
RE: code to launch preview window
https://sourceforge.net/forum/forum.php ... _id=257180
RE: code to launch preview window
Somthing like???
<html>
<head>
<script type="text/javascript">
function extPreview( editorInstance ) {
FCKeditorAPI.GetInstance('YOURINSTANCE').Commands.GetCommand('Preview').Execute();
}
</script>
<body>
<button id="preview" type="button"> preview</button>
</body>
<html>
RE: code to launch preview window
John
RE: code to launch preview window
http://sourceforge.net/tracker/index.ph ... tid=737639