<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Setting the letter spacing in the RichTextEditor control in Flex</title>
	<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/</link>
	<description>A bunch of examples for Adobe Flex and ActionScript</description>
	<pubDate>Fri, 05 Dec 2008 01:58:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Zmei</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16863</link>
		<author>Zmei</author>
		<pubDate>Mon, 24 Nov 2008 00:52:47 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16863</guid>
		<description>oh well ... I guess I was wrong after all :)</description>
		<content:encoded><![CDATA[<p>oh well &#8230; I guess I was wrong after all :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zmei</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16862</link>
		<author>Zmei</author>
		<pubDate>Mon, 24 Nov 2008 00:47:58 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16862</guid>
		<description>Ok I just figured it out ... just use CSS :)



.paragraphtext {
    		fontFamily: Georgia;
    		fontSize: 12;
    		color: #000000;  
    		lineHeight: 14pt;
    	}



and then apply this style to your text (ex: )

Cheers!</description>
		<content:encoded><![CDATA[<p>Ok I just figured it out &#8230; just use CSS :)</p>
<p>.paragraphtext {<br />
    		fontFamily: Georgia;<br />
    		fontSize: 12;<br />
    		color: #000000;<br />
    		lineHeight: 14pt;<br />
    	}</p>
<p>and then apply this style to your text (ex: )</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zmei</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16861</link>
		<author>Zmei</author>
		<pubDate>Mon, 24 Nov 2008 00:42:46 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16861</guid>
		<description>Yeah I was wondering about line spacing too. Can't figure out how to change that. Anyone?</description>
		<content:encoded><![CDATA[<p>Yeah I was wondering about line spacing too. Can&#8217;t figure out how to change that. Anyone?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcio</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16751</link>
		<author>Marcio</author>
		<pubDate>Mon, 17 Nov 2008 18:26:33 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-16751</guid>
		<description>How to apply line Spacing

I switch the code 

from

import mx.events.SliderEvent;

private function slider_change(evt:SliderEvent):void {
var cssStyle:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".myTextAreaStyleName");
cssStyle.setStyle("letterSpacing", evt.value);
}


to

import mx.events.SliderEvent;

private function slider_change(evt:SliderEvent):void {
var cssStyle:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".myTextAreaStyleName");
cssStyle.setStyle("lineSpacing", evt.value);
}

But not have effect</description>
		<content:encoded><![CDATA[<p>How to apply line Spacing</p>
<p>I switch the code </p>
<p>from</p>
<p>import mx.events.SliderEvent;</p>
<p>private function slider_change(evt:SliderEvent):void {<br />
var cssStyle:CSSStyleDeclaration = StyleManager.getStyleDeclaration(&#8221;.myTextAreaStyleName&#8221;);<br />
cssStyle.setStyle(&#8221;letterSpacing&#8221;, evt.value);<br />
}</p>
<p>to</p>
<p>import mx.events.SliderEvent;</p>
<p>private function slider_change(evt:SliderEvent):void {<br />
var cssStyle:CSSStyleDeclaration = StyleManager.getStyleDeclaration(&#8221;.myTextAreaStyleName&#8221;);<br />
cssStyle.setStyle(&#8221;lineSpacing&#8221;, evt.value);<br />
}</p>
<p>But not have effect</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12357</link>
		<author>Ivan</author>
		<pubDate>Tue, 29 Apr 2008 09:19:13 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12357</guid>
		<description>If I trying to change sont size, and after that change spacing
then font size changes to its initial size.

p.s. sorry for for English, my native language is php :)</description>
		<content:encoded><![CDATA[<p>If I trying to change sont size, and after that change spacing<br />
then font size changes to its initial size.</p>
<p>p.s. sorry for for English, my native language is php :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12272</link>
		<author>peterd</author>
		<pubDate>Thu, 24 Apr 2008 23:54:03 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12272</guid>
		<description>&lt;a href="http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12266" rel="nofollow"&gt;Marcio&lt;/a&gt;,

Does this answer your question, &lt;a href="http://blog.flexexamples.com/2008/04/24/condensing-html-white-space-in-the-richtexteditor-control-in-flex/" rel="nofollow"&gt;&lt;u&gt;"Condensing HTML white space in the RichTextEditor control in Flex"&lt;/u&gt;&lt;/a&gt;?

Peter</description>
		<content:encoded><![CDATA[<p><a href="http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12266" rel="nofollow">Marcio</a>,</p>
<p>Does this answer your question, <a href="http://blog.flexexamples.com/2008/04/24/condensing-html-white-space-in-the-richtexteditor-control-in-flex/" rel="nofollow"><u>&#8220;Condensing HTML white space in the RichTextEditor control in Flex&#8221;</u></a>?</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcio</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12266</link>
		<author>Marcio</author>
		<pubDate>Thu, 24 Apr 2008 17:18:22 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12266</guid>
		<description>?

How to condense white space around HTML tags or TXT using the Flex RichTextEditor control

?</description>
		<content:encoded><![CDATA[<p>?</p>
<p>How to condense white space around HTML tags or TXT using the Flex RichTextEditor control</p>
<p>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12244</link>
		<author>Anonymous</author>
		<pubDate>Thu, 24 Apr 2008 00:05:20 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12244</guid>
		<description>not so rich ;) it doesnt do hold-delete on the keyboard</description>
		<content:encoded><![CDATA[<p>not so rich ;) it doesnt do hold-delete on the keyboard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus Busse</title>
		<link>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12230</link>
		<author>Klaus Busse</author>
		<pubDate>Wed, 23 Apr 2008 08:24:16 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2008/04/22/setting-the-letter-spacing-in-the-richtexteditor-control-in-flex/#comment-12230</guid>
		<description>Nice example, however I'm wondering why it takes so long to load. Has letter spacing relevant impact on rendering time?

Thanks

Klaus</description>
		<content:encoded><![CDATA[<p>Nice example, however I&#8217;m wondering why it takes so long to load. Has letter spacing relevant impact on rendering time?</p>
<p>Thanks</p>
<p>Klaus</p>
]]></content:encoded>
	</item>
</channel>
</rss>
