hi all, i need help in 2 of my problem.
1. i make some project to create flash text page and i use fckeditor as the input text media, unfortunately flash don't work with some fckeditor style element, like strong, style font size, style font face, etc. so i change fckconfig.js :
FCKConfig.FontSizes = '10;12;14;16;18';
'Size' :
{
Element : 'font', Attributes : { 'size' : '#("Size","fontSize")' }
},
some how it works in flash output because the source is in html work like in flash
example:
the source
<p><font size="10">aaaa</font></p>
but
but in the editor area 'aaaaa' and the font size toolbar element it change become very large font >.<
i need help to know what should i do or change to make editor area can read
<p><font size="10">aaaa</font></p>
2. and the next problem is when i input picture and resize it with image manager it's work in the flash output cause the source is:
<img height="17" width="22" src="/userfiles/image/24ys03o1.jpg" alt="" />
but when i manually resize it with drag it's border, it become
<img alt="" src="/userfiles/image/24ys03o1.jpg" style="width: 103px; height: 72px;" />
and the output flash can't read --> style="width: 103px; height: 72px;"
so i need help to know what should i do to change it so when i drag it, the source don't use style but still use height and width like the first.
thx a lot for reading this.
regard
Eko^^
1. i make some project to create flash text page and i use fckeditor as the input text media, unfortunately flash don't work with some fckeditor style element, like strong, style font size, style font face, etc. so i change fckconfig.js :
FCKConfig.FontSizes = '10;12;14;16;18';
'Size' :
{
Element : 'font', Attributes : { 'size' : '#("Size","fontSize")' }
},
some how it works in flash output because the source is in html work like in flash
example:
the source
<p><font size="10">aaaa</font></p>
but
but in the editor area 'aaaaa' and the font size toolbar element it change become very large font >.<
i need help to know what should i do or change to make editor area can read
<p><font size="10">aaaa</font></p>
2. and the next problem is when i input picture and resize it with image manager it's work in the flash output cause the source is:
<img height="17" width="22" src="/userfiles/image/24ys03o1.jpg" alt="" />
but when i manually resize it with drag it's border, it become
<img alt="" src="/userfiles/image/24ys03o1.jpg" style="width: 103px; height: 72px;" />
and the output flash can't read --> style="width: 103px; height: 72px;"
so i need help to know what should i do to change it so when i drag it, the source don't use style but still use height and width like the first.
thx a lot for reading this.
regard
Eko^^
Re: change font size, picture size without style:
Re: change font size, picture size without style:
And I see several folks have been, from searching the forums - and zero responses on it as well.
This is an issue for me because folks use my system to build HTML files, some of which are used to send HTML emails.
And Microsoft Outlook (huge email client market share) chokes on the "style" attribute of img tags - instead displaying the images at their raw width/height values.
The fun bit about this issue is how the w/h values get shuffled around based on what you do.
Insert image using the image browser - you get width/height attributes.
Select image, drag a corner/side - you get the w/h in a style attribute.
Select image, click image icon to pop the image tool - do NOTHING - cancel - and it's back to normal w/h attributes.
Freaking thing is schizophrenic!
Please, someone who is in charge of this part of the code - address this!
Re: change font size, picture size without style:
Re: change font size, picture size without style:
Drop in an image using the image tool - seperate w/h tags.
Choose image and resize using the drag handles - w/h go into "style" tag.
Edit image using image tool, and save, making no changes - seperate w/h tags again, like with FCK 2.6.4 - but the "style" area with w/h values remains as well!