<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Flex Examples &#187; lineThrough</title>
	<atom:link href="http://blog.flexexamples.com/tag/linethrough/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Wed, 26 Jan 2011 18:09:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating strikethrough text on a Spark TextInput control in Flex 4</title>
		<link>http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/</link>
		<comments>http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 06:20:13 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[beta1]]></category>
		<category><![CDATA[TextInput (Spark)]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[lineThrough]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/</guid>
		<description><![CDATA[<p>The following example shows how you can create strikethrough text on a Spark TextInput control in Flex 4 by setting the lineThrough style.</p> <p>Full code after the jump.</p> <p></p> &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/ --&#62; &#60;s:Application name=&#34;Spark_TextInput_lineThrough_test&#34; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62; &#160; &#60;s:CheckBox id=&#34;checkBox&#34; label=&#34;lineThrough&#34; selected=&#34;true&#34; left=&#34;10&#34; top=&#34;10&#34; /&#62; &#160; &#60;s:TextInput id=&#34;textInput&#34; text=&#34;The quick brown fox [...]]]></description>
			<content:encoded><![CDATA[<p>The following example shows how you can create strikethrough text on a Spark TextInput control in Flex 4 by setting the <code>lineThrough</code> style.</p>
<p>Full code after the jump.</p>
<p><span id="more-1054"></span></p>
<p class="alert">The following example(s) require Flash Player 10 and the Adobe Flex 4 SDK. To download the Adobe Flash Builder 4 trial, see <a href="http://bit.ly/crThlI">http://www.adobe.com/products/flex/</a>. To download the latest nightly build of the Flex 4 SDK, see <a href="http://bit.ly/Flex4SDK">http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4</a>.<br/><strong>For more information on getting started with Flex 4 and Flash Builder 4, see the official <a href="http://bit.ly/dCkecm">Adobe Flex Team blog</a>.</strong></p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #808080; font-style: italic;">&lt;!-- http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/ --&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Application</span> name=<span style="color: #ff0000;">&quot;Spark_TextInput_lineThrough_test&quot;</span></span>
<span style="color: #000000;">        xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #000000;">        xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #000000;">        xmlns:mx=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/halo&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:CheckBox</span> id=<span style="color: #ff0000;">&quot;checkBox&quot;</span></span>
<span style="color: #000000;">            label=<span style="color: #ff0000;">&quot;lineThrough&quot;</span></span>
<span style="color: #000000;">            selected=<span style="color: #ff0000;">&quot;true&quot;</span></span>
<span style="color: #000000;">            left=<span style="color: #ff0000;">&quot;10&quot;</span></span>
<span style="color: #000000;">            top=<span style="color: #ff0000;">&quot;10&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:TextInput</span> id=<span style="color: #ff0000;">&quot;textInput&quot;</span></span>
<span style="color: #000000;">            text=<span style="color: #ff0000;">&quot;The quick brown fox jumps over the lazy dog.&quot;</span></span>
<span style="color: #000000;">            lineThrough=<span style="color: #ff0000;">&quot;{checkBox.selected}&quot;</span></span>
<span style="color: #000000;">            horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span></span>
<span style="color: #000000;">            verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p class="information"><a href="http://blog.flexexamples.com/wp-content/uploads/spark/Spark_TextInput_lineThrough_test/bin/main.html">View source</a> is enabled in the following example.</p>
<p><iframe src="http://blog.flexexamples.com/wp-content/uploads/spark/Spark_TextInput_lineThrough_test/bin/main.html" width="100%" height="100"></iframe></p>
<p>You can also set the <code>lineThrough</code> style in an external .CSS file or &lt;Style/&gt; block, as seen in the following example:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #808080; font-style: italic;">&lt;!-- http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/ --&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Application</span> name=<span style="color: #ff0000;">&quot;Spark_TextInput_lineThrough_test&quot;</span></span>
<span style="color: #000000;">        xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #000000;">        xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #000000;">        xmlns:mx=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/halo&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;fx:Style</span><span style="color: #7400FF;">&gt;</span></span>
        @namespace s &quot;library://ns.adobe.com/flex/spark&quot;;
&nbsp;
        s|TextInput {
            lineThrough: true;
        }
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/fx:Style</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:TextInput</span> id=<span style="color: #ff0000;">&quot;textInput&quot;</span></span>
<span style="color: #000000;">            text=<span style="color: #ff0000;">&quot;The quick brown fox jumps over the lazy dog.&quot;</span></span>
<span style="color: #000000;">            horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span></span>
<span style="color: #000000;">            verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Or, you can set the <code>lineThrough</code> style using ActionScript, as seen in the following example:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #808080; font-style: italic;">&lt;!-- http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/ --&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Application</span> name=<span style="color: #ff0000;">&quot;Spark_TextInput_lineThrough_test&quot;</span></span>
<span style="color: #000000;">        xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #000000;">        xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #000000;">        xmlns:mx=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/halo&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;fx:Script</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;">&lt;!<span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span></span>
<span style="color: #000000;">            private function checkBox_change<span style="color: #66cc66;">&#40;</span>evt:Event<span style="color: #66cc66;">&#41;</span>:void <span style="color: #66cc66;">&#123;</span></span>
<span style="color: #000000;">                textInput.setStyle<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;lineThrough&quot;</span>, checkBox.selected<span style="color: #66cc66;">&#41;</span>;</span>
<span style="color: #000000;">            <span style="color: #66cc66;">&#125;</span></span>
<span style="color: #000000;">        <span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/fx:Script</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:CheckBox</span> id=<span style="color: #ff0000;">&quot;checkBox&quot;</span></span>
<span style="color: #000000;">            label=<span style="color: #ff0000;">&quot;lineThrough&quot;</span></span>
<span style="color: #000000;">            left=<span style="color: #ff0000;">&quot;10&quot;</span></span>
<span style="color: #000000;">            top=<span style="color: #ff0000;">&quot;10&quot;</span></span>
<span style="color: #000000;">            change=<span style="color: #ff0000;">&quot;checkBox_change(event);&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:TextInput</span> id=<span style="color: #ff0000;">&quot;textInput&quot;</span></span>
<span style="color: #000000;">            text=<span style="color: #ff0000;">&quot;The quick brown fox jumps over the lazy dog.&quot;</span></span>
<span style="color: #000000;">            horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span></span>
<span style="color: #000000;">            verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p class="alert">This entry is based on a beta version of the Flex 4 SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex 4 SDK.</p>
<div class="evernoteSiteMemory"><a href="javascript:" onclick="Evernote.doClip({title: 'Creating strikethrough text on a Spark TextInput control in Flex 4 on FlexExamples.com',url: 'http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/',contentID: 'post-1054',code: 'Pete9667',suggestNotebook: 'FlexExamples',suggestTags: 'Gumbo,lineThrough',providerName: 'FlexExamples.com',styling: 'text' });return false" class="evernoteSiteMemoryLink"><img src="http://static.evernote.com/article-clipper-remember.png" class="evernoteSiteMemoryButton" />
				</a>				<div class="evernoteSiteMemoryClear">&nbsp;</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.flexexamples.com/2009/04/20/creating-strikethrough-text-on-a-spark-textinput-control-in-flex-gumbo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating strikethrough text on a TextGraphic control in Flex Gumbo</title>
		<link>http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/</link>
		<comments>http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 06:39:57 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[beta]]></category>
		<category><![CDATA[TextGraphic]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[lineThrough]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/</guid>
		<description><![CDATA[<p>The following example shows how you can create strikethrough text on a Flex TextGraphic control in Gumbo by setting the lineThrough style.</p> <p>Full code after the jump.</p> <p></p> <p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on [...]]]></description>
			<content:encoded><![CDATA[<p>The following example shows how you can create strikethrough text on a Flex TextGraphic control in Gumbo by setting the <code>lineThrough</code> style.</p>
<p>Full code after the jump.</p>
<p><span id="more-841"></span></p>
<p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on downloading and installing the Gumbo SDK into Flex Builder 3, see <a href="http://blog.flexexamples.com/2008/08/02/using-the-beta-gumbo-sdk-in-flex-builder-3/">&#8220;Using the beta Gumbo SDK in Flex Builder 3&#8243;</a>.</p>
<p class="download"><a href="http://blog.flexexamples.com/wp-content/uploads/TextGraphic_lineThrough_test/bin/srcview/source/main_4_0_0_3803.mxml.html">View MXML</a></p>
<pre class="code">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;!-- http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name=&quot;TextGraphic_lineThrough_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;&gt;
    &lt;layout&gt;
        &lt;BasicLayout /&gt;
    &lt;/layout&gt;

    &lt;Form&gt;
        &lt;FormItem label=&quot;lineThrough:&quot;&gt;
            &lt;FxCheckBox id=&quot;fxCheckBox&quot;
                    selected=&quot;true&quot; /&gt;
        &lt;/FormItem&gt;
    &lt;/Form&gt;

    &lt;TextGraphic id=&quot;textGraphic&quot;
            fontSize=&quot;24&quot;
            lineThrough=&quot;{fxCheckBox.selected}&quot;
            horizontalCenter=&quot;0&quot;
            verticalCenter=&quot;0&quot;&gt;
        &lt;text&gt;
            &lt;![CDATA[The quick brown fox jumped over the lazy dog.]]&gt;
        &lt;/text&gt;
    &lt;/TextGraphic&gt;

&lt;/FxApplication&gt;
</pre>
<p class="information"><a href="http://blog.flexexamples.com/wp-content/uploads/TextGraphic_lineThrough_test/bin/srcview/index.html">View source</a> is enabled in the following example.</p>
<p><iframe src="http://blog.flexexamples.com/wp-content/uploads/TextGraphic_lineThrough_test/bin/main_4_0_0_3803.html" width="100%" height="150"></iframe></p>
<p>You can also set the <code>lineThrough</code> style in an external .CSS file or &lt;Style /&gt; block, as seen in the following example:</p>
<p class="download"><a href="http://blog.flexexamples.com/wp-content/uploads/TextGraphic_lineThrough_test/bin/srcview/source/main2_4_0_0_3803.mxml.html">View MXML</a></p>
<pre class="code">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;!-- http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name=&quot;TextGraphic_lineThrough_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;&gt;
    &lt;layout&gt;
        &lt;BasicLayout /&gt;
    &lt;/layout&gt;

    &lt;Style&gt;
        TextGraphic {
            fontSize: 24;
            lineThrough: true;
        }
    &lt;/Style&gt;

    &lt;TextGraphic id=&quot;textGraphic&quot;
            horizontalCenter=&quot;0&quot;
            verticalCenter=&quot;0&quot;&gt;
        &lt;text&gt;
            &lt;![CDATA[The quick brown fox jumped over the lazy dog.]]&gt;
        &lt;/text&gt;
    &lt;/TextGraphic&gt;

&lt;/FxApplication&gt;
</pre>
<p>Or, you can set the <code>lineThrough</code> style using ActionScript, as seen in the following example:</p>
<p class="download"><a href="http://blog.flexexamples.com/wp-content/uploads/TextGraphic_lineThrough_test/bin/srcview/source/main3_4_0_0_3803.mxml.html">View MXML</a></p>
<pre class="code">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;!-- http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name=&quot;TextGraphic_lineThrough_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;&gt;
    &lt;layout&gt;
        &lt;BasicLayout /&gt;
    &lt;/layout&gt;

    &lt;Script&gt;
        &lt;![CDATA[
            private function fxCheckBox_change(evt:Event):void {
                var value:Boolean = fxCheckBox.selected
                textGraphic.setStyle(&quot;lineThrough&quot;, value);
            }
        ]]&gt;
    &lt;/Script&gt;

    &lt;Form&gt;
        &lt;FormItem label=&quot;lineThrough:&quot;&gt;
            &lt;FxCheckBox id=&quot;fxCheckBox&quot;
                    selected=&quot;true&quot;
                    change=&quot;fxCheckBox_change(event);&quot; /&gt;
        &lt;/FormItem&gt;
    &lt;/Form&gt;

    &lt;TextGraphic id=&quot;textGraphic&quot;
            fontSize=&quot;24&quot;
            lineThrough=&quot;true&quot;
            horizontalCenter=&quot;0&quot;
            verticalCenter=&quot;0&quot;&gt;
        &lt;text&gt;
            &lt;![CDATA[The quick brown fox jumped over the lazy dog.]]&gt;
        &lt;/text&gt;
    &lt;/TextGraphic&gt;

&lt;/FxApplication&gt;
</pre>
<p>Due to popular demand, here is the &#8220;same&#8221; example in a more ActionScript friendly format:</p>
<p class="download"><a href="http://blog.flexexamples.com/wp-content/uploads/TextGraphic_lineThrough_test/bin/srcview/source/main4_4_0_0_3803.mxml.html">View MXML</a></p>
<pre class="code">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;!-- http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name=&quot;TextGraphic_lineThrough_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
        initialize=&quot;init();&quot;&gt;
    &lt;layout&gt;
        &lt;BasicLayout /&gt;
    &lt;/layout&gt;

    &lt;Script&gt;
        &lt;![CDATA[
            import mx.components.FxCheckBox;
            import mx.containers.Form;
            import mx.containers.FormItem;
            import mx.graphics.TextGraphic;

            private var fxCheckBox:FxCheckBox;
            private var textGraphic:TextGraphic;

            private function init():void {
                fxCheckBox = new FxCheckBox();
                fxCheckBox.selected = false;
                fxCheckBox.addEventListener(Event.CHANGE, fxCheckBox_change);

                var formItem:FormItem = new FormItem();
                formItem.label = &quot;lineThrough:&quot;;
                formItem.addChild(fxCheckBox);

                var form:Form = new Form();
                form.addChild(formItem);
                addItem(form);

                textGraphic = new TextGraphic();
                textGraphic.text = &quot;The quick brown fox jumped over the lazy dog.&quot;;
                textGraphic.setStyle(&quot;fontSize&quot;, 24);
                textGraphic.setStyle(&quot;lineThough&quot;, false);
                textGraphic.horizontalCenter = 0;
                textGraphic.verticalCenter = 0;
                addItem(textGraphic);
            }

            private function fxCheckBox_change(evt:Event):void {
                var value:Boolean = fxCheckBox.selected
                textGraphic.setStyle(&quot;lineThrough&quot;, value);
            }
        ]]&gt;
    &lt;/Script&gt;

&lt;/FxApplication&gt;
</pre>
<p class="alert">This entry is based on a beta version of the Flex Gumbo SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex Gumbo SDK.</p>
<div class="evernoteSiteMemory"><a href="javascript:" onclick="Evernote.doClip({title: 'Creating strikethrough text on a TextGraphic control in Flex Gumbo on FlexExamples.com',url: 'http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/',contentID: 'post-841',code: 'Pete9667',suggestNotebook: 'FlexExamples',suggestTags: 'Gumbo,lineThrough',providerName: 'FlexExamples.com',styling: 'text' });return false" class="evernoteSiteMemoryLink"><img src="http://static.evernote.com/article-clipper-remember.png" class="evernoteSiteMemoryButton" />
				</a>				<div class="evernoteSiteMemoryClear">&nbsp;</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

