Hello,
I have found no way to make the Editor control create 'class' attributes (with <STYLE> tag definitions) instead of creating inline 'style' attributes.
In other words, what I need is, for example, instead of this:
<p style="color:red">red text</p>
to have this:
<style>
.redText { color:red; }
</style>
<p class="redText">red text</p>
The reason I need this is because we're planning to use your control to generate some (limited) HTML to be rendered inside Flash, and Flash doesn't understand inline 'style' attributes, but does understand 'class' attributes/CSS...
Is there no way, or did I miss something?
Thanks in advance,
Dmitri