<?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: How to print with AS3</title>
	<atom:link href="http://www.riacodes.com/flash/how-to-print-with-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.riacodes.com/flash/how-to-print-with-as3/</link>
	<description>Resources, tutorials , tips &#38; tricks for RIA : Flex, Flash, Air, AS3</description>
	<lastBuildDate>Fri, 13 Jan 2012 21:28:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kodulis</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-16077</link>
		<dc:creator>Kodulis</dc:creator>
		<pubDate>Thu, 22 Dec 2011 19:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-16077</guid>
		<description>Helpfull for starters</description>
		<content:encoded><![CDATA[<p>Helpfull for starters</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karthik</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-13472</link>
		<dc:creator>Karthik</dc:creator>
		<pubDate>Thu, 10 Nov 2011 11:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-13472</guid>
		<description>Hi

It was an amazing code.......
Also how to print the all frames in a single shot???</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>It was an amazing code&#8230;&#8230;.<br />
Also how to print the all frames in a single shot???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr. BZIK</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-12601</link>
		<dc:creator>Mr. BZIK</dc:creator>
		<pubDate>Sun, 09 Oct 2011 22:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-12601</guid>
		<description>thanks. I was looking that for my new flash project.</description>
		<content:encoded><![CDATA[<p>thanks. I was looking that for my new flash project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Free Flash Banners</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-11774</link>
		<dc:creator>Free Flash Banners</dc:creator>
		<pubDate>Tue, 06 Sep 2011 08:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-11774</guid>
		<description>Thanx, for Flash sample. I have made some adjustments to script to print stage which is nor in the sprite: 

function printContent() {
	var printJob:PrintJob = new PrintJob();
	var content_mc:MovieClip=MovieClip(root);

	if (printJob.start()) {
		content_mc.x=50;
		content_mc.y=50;
       .........
You can even move entire stage, or make some changes to it while printing. Just bring it back after print job.
Good luck.</description>
		<content:encoded><![CDATA[<p>Thanx, for Flash sample. I have made some adjustments to script to print stage which is nor in the sprite: </p>
<p>function printContent() {<br />
	var printJob:PrintJob = new PrintJob();<br />
	var content_mc:MovieClip=MovieClip(root);</p>
<p>	if (printJob.start()) {<br />
		content_mc.x=50;<br />
		content_mc.y=50;<br />
       &#8230;&#8230;&#8230;<br />
You can even move entire stage, or make some changes to it while printing. Just bring it back after print job.<br />
Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NAYAN</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-11601</link>
		<dc:creator>NAYAN</dc:creator>
		<pubDate>Fri, 26 Aug 2011 10:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-11601</guid>
		<description>Hello ADMIN... thanks for the article...

VLADOX,
Thanks for re-generating the code... 
My problem is I want to print the web page instead of swf contents... i need to write this code on a small flash button that will be included on the top of my page. But it should capture and print the current loaded page of website.
If you could kindly help....
Sincerely.</description>
		<content:encoded><![CDATA[<p>Hello ADMIN&#8230; thanks for the article&#8230;</p>
<p>VLADOX,<br />
Thanks for re-generating the code&#8230;<br />
My problem is I want to print the web page instead of swf contents&#8230; i need to write this code on a small flash button that will be included on the top of my page. But it should capture and print the current loaded page of website.<br />
If you could kindly help&#8230;.<br />
Sincerely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lana</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-9618</link>
		<dc:creator>Lana</dc:creator>
		<pubDate>Tue, 31 May 2011 05:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-9618</guid>
		<description>This is so simple and perfect!! Question.... Right now my &#039;content_mc&#039; Is bigger then the screen size (height). The height of the &#039;content_mc&#039; is over 1500. My height of the movie is 600. When I print this out, It only prints half way. How can I print everything in that MC?
I will later on put that in a scroll. Would I have problems printing if I make this intro a scroll?</description>
		<content:encoded><![CDATA[<p>This is so simple and perfect!! Question&#8230;. Right now my &#8216;content_mc&#8217; Is bigger then the screen size (height). The height of the &#8216;content_mc&#8217; is over 1500. My height of the movie is 600. When I print this out, It only prints half way. How can I print everything in that MC?<br />
I will later on put that in a scroll. Would I have problems printing if I make this intro a scroll?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-9511</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 25 May 2011 22:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-9511</guid>
		<description>Thanks for that been looking everywhere great snippet of generic code</description>
		<content:encoded><![CDATA[<p>Thanks for that been looking everywhere great snippet of generic code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fathah</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-8820</link>
		<dc:creator>Fathah</dc:creator>
		<pubDate>Wed, 13 Apr 2011 05:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-8820</guid>
		<description>@VLADOX: awesome! your codes work best to capture whole area of running movieclip!</description>
		<content:encoded><![CDATA[<p>@VLADOX: awesome! your codes work best to capture whole area of running movieclip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyrone</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-8166</link>
		<dc:creator>Tyrone</dc:creator>
		<pubDate>Wed, 09 Mar 2011 13:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-8166</guid>
		<description>It works well for a movieclip.
Thank you very much.
How about some code for printing text from a plain text control, ie. not a movieclip?</description>
		<content:encoded><![CDATA[<p>It works well for a movieclip.<br />
Thank you very much.<br />
How about some code for printing text from a plain text control, ie. not a movieclip?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JOHN</title>
		<link>http://www.riacodes.com/flash/how-to-print-with-as3/comment-page-1/#comment-6853</link>
		<dc:creator>JOHN</dc:creator>
		<pubDate>Tue, 25 Jan 2011 14:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.riacodes.com/?p=1217#comment-6853</guid>
		<description>Love it!

After the print job has completed, what is the code to resize it back to the original content size?</description>
		<content:encoded><![CDATA[<p>Love it!</p>
<p>After the print job has completed, what is the code to resize it back to the original content size?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

