<?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: purePDF, a complete actionscript PDF library</title>
	<atom:link href="http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/</link>
	<description>Flex and Flash platform development, Gaming, Social media, Interactive devicess, iPhone and Android</description>
	<lastBuildDate>Wed, 18 Jan 2012 17:46:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	

<!-- Debugging help, do not remove -->
<meta name="Framework" content="Kpress" />
<meta name="Theme Version" content="1.3" />
<meta name="Framework Version" content="1.3.1" />


	<item>
		<title>By: Mehran</title>
		<link>http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/comment-page-1/#comment-1685</link>
		<dc:creator>Mehran</dc:creator>
		<pubDate>Sat, 14 May 2011 13:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://alittleb.it/?p=505#comment-1685</guid>
		<description>I appreciate your work and I wonder why you don&#039;t put it in your own url? what is the matter with Google codes that many opensource projects are hosted there. The issue is that Google prevents certain countries (due to sanctions from US Government) from accessing these  codes, and while these codes are OPEN SOURCE, Google&#039;s behavior is insane.</description>
		<content:encoded><![CDATA[<p>I appreciate your work and I wonder why you don&#8217;t put it in your own url? what is the matter with Google codes that many opensource projects are hosted there. The issue is that Google prevents certain countries (due to sanctions from US Government) from accessing these  codes, and while these codes are OPEN SOURCE, Google&#8217;s behavior is insane.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gabriele</title>
		<link>http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/comment-page-1/#comment-310</link>
		<dc:creator>gabriele</dc:creator>
		<pubDate>Sat, 22 May 2010 11:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://alittleb.it/?p=505#comment-310</guid>
		<description>Hi Bob,

the MXML code has been stripped out. Could u please post it again using &amp; lt ; instead of &lt; and &amp; gt ; instead of &gt; (whithout spaces) ? This way we can give it a look and let you know





</description>
		<content:encoded><![CDATA[<p>Hi Bob,</p>
<p>the MXML code has been stripped out. Could u please post it again using &#038; lt ; instead of &lt; and &#038; gt ; instead of &gt; (whithout spaces) ? This way we can give it a look and let you know</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/comment-page-1/#comment-306</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Fri, 21 May 2010 00:29:13 +0000</pubDate>
		<guid isPermaLink="false">http://alittleb.it/?p=505#comment-306</guid>
		<description>Hi guys,

I&#039;m trying to use purepdf but i can&#039;t get it to work. i&#039;m sure i&#039;m missing some thing because i can&#039;t even run an example.

here are the files that i&#039;m using:
a helloworld class

package
{
	import flash.events.Event;
	
	import org.purepdf.elements.Paragraph;
        
	public class HelloWorld extends DefaultBasicExample
	{
		public function HelloWorld(d_list:Array=null)
		{
               super([&quot;This example shows how to add a simple text to the document&quot;,&quot;using a Paragraph element&quot;]);
               registerDefaultFont();
               
        }
               
        override protected function execute(event:Event=null) : void
        {
                super.execute();
       
                createDocument( &quot;Hello World&quot; );
                document.open();
                document.add( new Paragraph(&quot;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent vel lectus lorem. Phasellus convallis, tortor a venenatis mattis, erat mi euismod tellus, in fermentum sapien nibh sit amet urna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Praesent tellus libero, lacinia ac egestas eget, interdum quis purus. Donec ut nisl metus, sit amet viverra turpis. Mauris ultrices dapibus lacus non ultrices. Cras elementum luctus mauris, vitae eleifend diam accumsan ut. Aliquam erat volutpat. Suspendisse placerat nibh in libero tincidunt a elementum mi vehicula. Donec lobortis magna vel nibh mollis tempor. Maecenas et elit nunc. Nam non auctor orci. Aliquam vel velit vel mi adipiscing semper in ac orci. Vestibulum commodo sem eget tortor lobortis semper. Ut sit amet sapien non velit rutrum egestas sollicitudin in elit. Fusce laoreet leo a sem mattis iaculis&quot;) );
                document.close();
                save();
        } 

	}
}

and my mxml file is:


	
		
	
	



I don actually know how to run this example so i was just playing around and trying to run the example. 

could you guys give me hint or send me a project file that runs purepdf plz?</description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>I&#8217;m trying to use purepdf but i can&#8217;t get it to work. i&#8217;m sure i&#8217;m missing some thing because i can&#8217;t even run an example.</p>
<p>here are the files that i&#8217;m using:<br />
a helloworld class</p>
<p>package<br />
{<br />
	import flash.events.Event;</p>
<p>	import org.purepdf.elements.Paragraph;</p>
<p>	public class HelloWorld extends DefaultBasicExample<br />
	{<br />
		public function HelloWorld(d_list:Array=null)<br />
		{<br />
               super(["This example shows how to add a simple text to the document","using a Paragraph element"]);<br />
               registerDefaultFont();</p>
<p>        }</p>
<p>        override protected function execute(event:Event=null) : void<br />
        {<br />
                super.execute();</p>
<p>                createDocument( &#8220;Hello World&#8221; );<br />
                document.open();<br />
                document.add( new Paragraph(&#8220;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent vel lectus lorem. Phasellus convallis, tortor a venenatis mattis, erat mi euismod tellus, in fermentum sapien nibh sit amet urna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Praesent tellus libero, lacinia ac egestas eget, interdum quis purus. Donec ut nisl metus, sit amet viverra turpis. Mauris ultrices dapibus lacus non ultrices. Cras elementum luctus mauris, vitae eleifend diam accumsan ut. Aliquam erat volutpat. Suspendisse placerat nibh in libero tincidunt a elementum mi vehicula. Donec lobortis magna vel nibh mollis tempor. Maecenas et elit nunc. Nam non auctor orci. Aliquam vel velit vel mi adipiscing semper in ac orci. Vestibulum commodo sem eget tortor lobortis semper. Ut sit amet sapien non velit rutrum egestas sollicitudin in elit. Fusce laoreet leo a sem mattis iaculis&#8221;) );<br />
                document.close();<br />
                save();<br />
        } </p>
<p>	}<br />
}</p>
<p>and my mxml file is:</p>
<p>I don actually know how to run this example so i was just playing around and trying to run the example. </p>
<p>could you guys give me hint or send me a project file that runs purepdf plz?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/comment-page-1/#comment-305</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 20 May 2010 08:29:44 +0000</pubDate>
		<guid isPermaLink="false">http://alittleb.it/?p=505#comment-305</guid>
		<description>Hi Helen, yes Chinese is supported.
Please refer to the examples you can find on sephiroth website.</description>
		<content:encoded><![CDATA[<p>Hi Helen, yes Chinese is supported.<br />
Please refer to the examples you can find on sephiroth website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: helen</title>
		<link>http://www.alittleb.it/coding/purepdf-a-complete-actionscript-pdf-library/comment-page-1/#comment-304</link>
		<dc:creator>helen</dc:creator>
		<pubDate>Thu, 20 May 2010 06:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://alittleb.it/?p=505#comment-304</guid>
		<description>how to use it export Chinese?</description>
		<content:encoded><![CDATA[<p>how to use it export Chinese?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

