I don't understand what you mean, dialog window versus browser window? You want to change the html layout of the dialog or the physical size of the popup window?
In the image dialog window there is the possibility to open the image browser window, right? Well, I want to change the physical size of the dialog window. This can't be done in the config file.
Found it out myself: Look in fckeditorcode_gecko_2.js and fckeditorcode_ie_2.js for lines like: dialog/fck_link.html, dialog/fck_form.html and change the values after it. For the image dialog you have to look for dialog/fck_image.html?ImageButton and change the values after it.
RE: Change dialog size
eg.,
FCKConfig.LinkBrowserWindowWidth = screen.width * 0.5 ; // 70%
FCKConfig.LinkBrowserWindowHeight = screen.height * 0.5 ; // 70%
FCKConfig.ImageBrowserWindowWidth = screen.width * 0.5 ; // 70% ;
FCKConfig.ImageBrowserWindowHeight = screen.height * 0.5 ; // 70% ;
RE: Change dialog size
RE: Change dialog size
RE: Change dialog size
RE: Change dialog size
Anyone who can help?
RE: Change dialog size
Look in fckeditorcode_gecko_2.js and fckeditorcode_ie_2.js for lines like: dialog/fck_link.html, dialog/fck_form.html and change the values after it. For the image dialog you have to look for dialog/fck_image.html?ImageButton and change the values after it.
RE: Change dialog size