Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

fonts in the advanced editor

Quote Reply
fonts in the advanced editor
Hi,
When I select a part of text in the advanced editor and click on , I cannot select any font (see the attachment). I'm using IE 6.0.

Also, I would to know how I can change the default font in the advanced editor.

Thank you.

François
Quote Reply
Re: [Franco] fonts in the advanced editor In reply to
Hi,

Is this on our forum or on your install? Also, what O/S and service pack are you using?

Cheers,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] fonts in the advanced editor In reply to
Hi Alex,

The problem appears both on your forum and my forum. I'm using Windows Me with IE 6.0.

Thank you.

François
Quote Reply
Re: [Franco] fonts in the advanced editor In reply to
In Reply To:
Also, I would to know how I can change the default font in the advanced editor.[/quote]
If you know the answer, thank you to let me know.
Quote Reply
Re: [Franco] fonts in the advanced editor In reply to
Hi,

It seems to me that there is something wrong with your browser, so the script cannot get a list of system fonts through the classID clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b which is built-in IE6. In this case, you can fix this problem by changing the populateFont function in editor_font.html like:

Code:
if (ie6 && dlg && dlg.fonts.count > 0) {
var fonts = [];
for (var i = 1; i <= dlg.fonts.count; i++) fonts[i - 1] = dlg.fonts(i);
fonts.sort();
for (var i = 0; i < fonts.length; i++) addFont(fontList, fonts);
}
......

In Reply To:
Also, I would to know how I can change the default font in the advanced editor.[/quote]

Simply change the advanced_editor_font global.

Hope that helps.

TheStone.


B.
Quote Reply
Re: [TheStone] fonts in the advanced editor In reply to
Ok, thank you.

In Reply To:

Simply change the advanced_editor_font global. [/quote]

Sorry! BlushCrazy