<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Styling Html TextField Bullet Points</title>
	<atom:link href="http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/</link>
	<description>Martin Rädlinger</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:38:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Ali</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4901</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Thu, 06 Oct 2011 14:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4901</guid>
		<description>I don&#039;t know why we have to use TextField at all!

A useful news for all of us as Flash devs, Now that we are talking about TextField thought to let you know about a class that is so powerful and is extended from the Adobe TextField class itself.

It&#039;s named TextArea which allows you every possible tags even your own custom tag and has much more abilities too.

Check out &lt;a href=&quot;http://doitflash.com/&quot; rel=&quot;nofollow&quot;&gt;http://doitflash.com/&lt;/a&gt; for more information.
It not only allows you to load different SWF files by calling different tags in line of your text but also you have much more control over your Text blocks and its contents... such as calling your custom functions right from your text blocks and passing multiple and different arguments through them; loading talking avatars, video players, buttons, slideshows and more... by calling their own tags and having full interaction between all of the loaded SWF modules and your text block. Check out the site for more information, downloading the platform is also free of charge :)</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know why we have to use TextField at all!</p>
<p>A useful news for all of us as Flash devs, Now that we are talking about TextField thought to let you know about a class that is so powerful and is extended from the Adobe TextField class itself.</p>
<p>It&#8217;s named TextArea which allows you every possible tags even your own custom tag and has much more abilities too.</p>
<p>Check out <a href="http://doitflash.com/" rel="nofollow">http://doitflash.com/</a> for more information.<br />
It not only allows you to load different SWF files by calling different tags in line of your text but also you have much more control over your Text blocks and its contents&#8230; such as calling your custom functions right from your text blocks and passing multiple and different arguments through them; loading talking avatars, video players, buttons, slideshows and more&#8230; by calling their own tags and having full interaction between all of the loaded SWF modules and your text block. Check out the site for more information, downloading the platform is also free of charge :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chp</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4861</link>
		<dc:creator>chp</dc:creator>
		<pubDate>Sat, 11 Jun 2011 20:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4861</guid>
		<description>Well, multiline is not a problem if you select the image of the icon properly (thus, that it will fit to the text size, you could at logic for this into the class), multiline is not a problem.

Scrolling is a problem, that did not occur to till now.

Now that you&#039;ve mentioned it, I looked through my library and found this function, that cuts away overlapping stuff (by masking the sprite). I wrote it for another project, but you could adjust it to make a scrollable container (thus, placing the Listfield in the masked container but holding a reference to it, maybe the Listfield itself could be extened):

/**
         * Cuts off (masks) the given image at the given proportions.
         * 
         * Thus, the image is not scaled, overlapping stuff get&#039;s cut away.
         * 
         * @param the Display Object to cut
         * @param its width
         * @param its height
         * @param the image gets centered in the mask
         * @return Sprite container with the cutted disObj inside.
         */
        public static function cutOff(disObj:DisplayObject, cutWidth:Number, cutHeight:Number, center:Boolean=false):Sprite {
            var theMask:Sprite = new Sprite();
            theMask.graphics.beginFill(0xFFFFFF);
            theMask.graphics.drawRect(0, 0, cutWidth, cutHeight);
            
            var container:Sprite = new Sprite();
            
            container.addChild(theMask);
            container.addChild(disObj);
            
            if(center) {
                if(disObj.width &gt; cutWidth) {
                    disObj.x = ((disObj.width - cutWidth) / 2) * -1;
                }
                if(disObj.height &gt; cutHeight) {
                    disObj.y = ((disObj.height - cutHeight) / 2) * -1;
                }
            }
            
            disObj.mask = theMask;
            
            return container;
        }

(Hope this is understandable in the comments).</description>
		<content:encoded><![CDATA[<p>Well, multiline is not a problem if you select the image of the icon properly (thus, that it will fit to the text size, you could at logic for this into the class), multiline is not a problem.</p>
<p>Scrolling is a problem, that did not occur to till now.</p>
<p>Now that you&#8217;ve mentioned it, I looked through my library and found this function, that cuts away overlapping stuff (by masking the sprite). I wrote it for another project, but you could adjust it to make a scrollable container (thus, placing the Listfield in the masked container but holding a reference to it, maybe the Listfield itself could be extened):</p>
<p>/**<br />
         * Cuts off (masks) the given image at the given proportions.<br />
         *<br />
         * Thus, the image is not scaled, overlapping stuff get&#8217;s cut away.<br />
         *<br />
         * @param the Display Object to cut<br />
         * @param its width<br />
         * @param its height<br />
         * @param the image gets centered in the mask<br />
         * @return Sprite container with the cutted disObj inside.<br />
         */<br />
        public static function cutOff(disObj:DisplayObject, cutWidth:Number, cutHeight:Number, center:Boolean=false):Sprite {<br />
            var theMask:Sprite = new Sprite();<br />
            theMask.graphics.beginFill(0xFFFFFF);<br />
            theMask.graphics.drawRect(0, 0, cutWidth, cutHeight);</p>
<p>            var container:Sprite = new Sprite();</p>
<p>            container.addChild(theMask);<br />
            container.addChild(disObj);</p>
<p>            if(center) {<br />
                if(disObj.width &gt; cutWidth) {<br />
                    disObj.x = ((disObj.width &#8211; cutWidth) / 2) * -1;<br />
                }<br />
                if(disObj.height &gt; cutHeight) {<br />
                    disObj.y = ((disObj.height &#8211; cutHeight) / 2) * -1;<br />
                }<br />
            }</p>
<p>            disObj.mask = theMask;</p>
<p>            return container;<br />
        }</p>
<p>(Hope this is understandable in the comments).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4860</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 08 Jun 2011 06:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4860</guid>
		<description>hey chp, thanks for sharing this. 

What I didn&#039;t like about a solution like that is that you don&#039;t have just text anymore ... so what&#039;s happening if you have multiline list elements or if you scroll the text? Don&#039;t take me wrong, I&#039;m just curious how you solved those issues...</description>
		<content:encoded><![CDATA[<p>hey chp, thanks for sharing this. </p>
<p>What I didn&#8217;t like about a solution like that is that you don&#8217;t have just text anymore &#8230; so what&#8217;s happening if you have multiline list elements or if you scroll the text? Don&#8217;t take me wrong, I&#8217;m just curious how you solved those issues&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chp</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4859</link>
		<dc:creator>chp</dc:creator>
		<pubDate>Tue, 07 Jun 2011 21:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4859</guid>
		<description>Thanks for providing your idea. I&#039;ve posted another solution on my block. It&#039;s basically a parser for htmlText and it allows you to dynamically load images without the need to edit the font.

I&#039;d be glad if you&#039;d visit me :)

http://digitale-avantgarde.com/listenfelder-icons/</description>
		<content:encoded><![CDATA[<p>Thanks for providing your idea. I&#8217;ve posted another solution on my block. It&#8217;s basically a parser for htmlText and it allows you to dynamically load images without the need to edit the font.</p>
<p>I&#8217;d be glad if you&#8217;d visit me :)</p>
<p><a href="http://digitale-avantgarde.com/listenfelder-icons/" rel="nofollow">http://digitale-avantgarde.com/listenfelder-icons/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4510</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 29 Dec 2010 13:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4510</guid>
		<description>I just modified the bullet point of arial and didn&#039;t rename the fonts. I can recommend &lt;a href=&quot;http://www.fontlab.com/font-editor/fontographer/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Fontographer&lt;/a&gt; but it&#039;s quite pricy ... I guess there are also free ones out there</description>
		<content:encoded><![CDATA[<p>I just modified the bullet point of arial and didn&#8217;t rename the fonts. I can recommend <a href="http://www.fontlab.com/font-editor/fontographer/" target="_blank" rel="nofollow">Fontographer</a> but it&#8217;s quite pricy &#8230; I guess there are also free ones out there</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DBird</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4509</link>
		<dc:creator>DBird</dc:creator>
		<pubDate>Wed, 29 Dec 2010 11:04:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4509</guid>
		<description>Hi Martin,

the problem is, that I have to rename the font&#039;s, because your modified fonts are all the arial. Why? To use them in the lib, I have to install them on my machine, and then windows says: Arial is already installed... 
So I have to use a font-editor to rename them... can you suggest a good one?

Thank you very much!

Cheers,
DBird</description>
		<content:encoded><![CDATA[<p>Hi Martin,</p>
<p>the problem is, that I have to rename the font&#8217;s, because your modified fonts are all the arial. Why? To use them in the lib, I have to install them on my machine, and then windows says: Arial is already installed&#8230;<br />
So I have to use a font-editor to rename them&#8230; can you suggest a good one?</p>
<p>Thank you very much!</p>
<p>Cheers,<br />
DBird</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4504</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Tue, 28 Dec 2010 17:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4504</guid>
		<description>hey DBird, the example uses the embed metadata tag to embed the fonts and the Flash IDE compiler doesn&#039;t support any metadata tags ... so this won&#039;t work. You&#039;ll have to embed the fonts in the library ...</description>
		<content:encoded><![CDATA[<p>hey DBird, the example uses the embed metadata tag to embed the fonts and the Flash IDE compiler doesn&#8217;t support any metadata tags &#8230; so this won&#8217;t work. You&#8217;ll have to embed the fonts in the library &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DBird</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4503</link>
		<dc:creator>DBird</dc:creator>
		<pubDate>Tue, 28 Dec 2010 17:27:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4503</guid>
		<description>Hi Martin,

what am I doing wrong if just a gray stage appears? 
I have created a blank FLA-File just with StyleBulletPoint as the document-class and saved it the same dir as the as-file.

Cheers,
DBird</description>
		<content:encoded><![CDATA[<p>Hi Martin,</p>
<p>what am I doing wrong if just a gray stage appears?<br />
I have created a blank FLA-File just with StyleBulletPoint as the document-class and saved it the same dir as the as-file.</p>
<p>Cheers,<br />
DBird</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4366</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Mon, 19 Apr 2010 06:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4366</guid>
		<description>the ‘non printing char’ shouldn&#039;t leave a space at all! (that&#039;s basically the reason for the name). You have to take a char in your font that doesn&#039;t get printed and doesn&#039;t leave any space ... you could also specify a char of you font that isn&#039;t embeded (e.g. you embed A-Z than you can use any other character)</description>
		<content:encoded><![CDATA[<p>the ‘non printing char’ shouldn&#8217;t leave a space at all! (that&#8217;s basically the reason for the name). You have to take a char in your font that doesn&#8217;t get printed and doesn&#8217;t leave any space &#8230; you could also specify a char of you font that isn&#8217;t embeded (e.g. you embed A-Z than you can use any other character)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nyls</title>
		<link>http://blog.formatlos.de/2009/06/18/styling-html-textfield-bullet-points/comment-page-1/#comment-4353</link>
		<dc:creator>nyls</dc:creator>
		<pubDate>Fri, 16 Apr 2010 13:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.formatlos.de/?p=315#comment-4353</guid>
		<description>Hey Martin, nice and very helpfull trick ;-) 

It seems only that when the list text goes to two lines the &#039;non printing char&#039; leaves a space.

http://www.nyls.nl/grabs/e565a24a8e2b59011e032c19541cc5d0.png

You have had any problem with that ?</description>
		<content:encoded><![CDATA[<p>Hey Martin, nice and very helpfull trick ;-) </p>
<p>It seems only that when the list text goes to two lines the &#8216;non printing char&#8217; leaves a space.</p>
<p><a href="http://www.nyls.nl/grabs/e565a24a8e2b59011e032c19541cc5d0.png" rel="nofollow">http://www.nyls.nl/grabs/e565a24a8e2b59011e032c19541cc5d0.png</a></p>
<p>You have had any problem with that ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

