Ich habe ein kleines Plugin für tinyMCE geschrieben und hatte das Problem, dass das Popup Fenster nicht ausreichte, die Scrollbars allerdings fehlten. Nach kurzer Recherche das Ergebnis:
ed.addCommand("mceimageEditor", function() {
Screenw = Math.round(screen.width * 8/10);
Screenh = Math.round(screen.height * 8/10);
ed.windowManager.open({
file: url + "/imageEditor.php?eid=1",
width: Screenw,
height: Screenh,
scrollbars: "yes"
});
});