<?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 for Adam Teale: News From Above</title>
	<atom:link href="http://adamteale.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://adamteale.com</link>
	<description>ramblings of a 2 metre man</description>
	<lastBuildDate>Fri, 11 May 2012 17:31:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on fcp 7 to nuke by Adam</title>
		<link>http://adamteale.com/1785/comment-page-1/#comment-40678</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Fri, 11 May 2012 17:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1785#comment-40678</guid>
		<description>Thanks for spotting that! dude! File is now available as a zip.</description>
		<content:encoded><![CDATA[<p>Thanks for spotting that! dude! File is now available as a zip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on fcp 7 to nuke by Bart Verkoeijen</title>
		<link>http://adamteale.com/1785/comment-page-1/#comment-40658</link>
		<dc:creator>Bart Verkoeijen</dc:creator>
		<pubDate>Fri, 11 May 2012 04:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1785#comment-40658</guid>
		<description>The script download gives a error 500. Maybe archive to zip?</description>
		<content:encoded><![CDATA[<p>The script download gives a error 500. Maybe archive to zip?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on some Nuke Python snippets by Adam</title>
		<link>http://adamteale.com/1413/comment-page-1/#comment-40507</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Sat, 05 May 2012 18:27:30 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1413#comment-40507</guid>
		<description>Hey Marc!

Thanks for sharing your your snippets!
Some great ones in there from what I can see.

Keep up the great work!

Cheers

Adam</description>
		<content:encoded><![CDATA[<p>Hey Marc!</p>
<p>Thanks for sharing your your snippets!<br />
Some great ones in there from what I can see.</p>
<p>Keep up the great work!</p>
<p>Cheers</p>
<p>Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on some Nuke Python snippets by Marc Gutowski</title>
		<link>http://adamteale.com/1413/comment-page-1/#comment-40504</link>
		<dc:creator>Marc Gutowski</dc:creator>
		<pubDate>Sat, 05 May 2012 12:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1413#comment-40504</guid>
		<description>Hey Adam,

i&#039;ve put some of my Nuke Snippets online:
http://ewok1.com/resources/

best regeards,
Marc</description>
		<content:encoded><![CDATA[<p>Hey Adam,</p>
<p>i&#8217;ve put some of my Nuke Snippets online:<br />
<a href="http://ewok1.com/resources/" rel="nofollow">http://ewok1.com/resources/</a></p>
<p>best regeards,<br />
Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on some Nuke Python snippets by Adam</title>
		<link>http://adamteale.com/1413/comment-page-1/#comment-40271</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 26 Apr 2012 20:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1413#comment-40271</guid>
		<description>another Nuke Python resource:
http://nullege.com/codes/search/nuke.ask</description>
		<content:encoded><![CDATA[<p>another Nuke Python resource:<br />
<a href="http://nullege.com/codes/search/nuke.ask" rel="nofollow">http://nullege.com/codes/search/nuke.ask</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on some Nuke Python snippets by Adam</title>
		<link>http://adamteale.com/1413/comment-page-1/#comment-40221</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 24 Apr 2012 17:24:48 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1413#comment-40221</guid>
		<description>Hey Douglas!

Thanks for the nice words!

I had a quick look, try this (i´ll add it above):

a = nuke.selectedNode()
nodesToSelect = []

nodesToSelect.append(a)
def climb(node):
# print node.name()
nodesToSelect.append(node)
for n in node.dependencies():
climb(n)

climb(a)
for x in nodesToSelect:
print x.name()
x.setSelected(1)</description>
		<content:encoded><![CDATA[<p>Hey Douglas!</p>
<p>Thanks for the nice words!</p>
<p>I had a quick look, try this (i´ll add it above):</p>
<p>a = nuke.selectedNode()<br />
nodesToSelect = []</p>
<p>nodesToSelect.append(a)<br />
def climb(node):<br />
# print node.name()<br />
nodesToSelect.append(node)<br />
for n in node.dependencies():<br />
climb(n)</p>
<p>climb(a)<br />
for x in nodesToSelect:<br />
print x.name()<br />
x.setSelected(1)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on some Nuke Python snippets by Douglas</title>
		<link>http://adamteale.com/1413/comment-page-1/#comment-40216</link>
		<dc:creator>Douglas</dc:creator>
		<pubDate>Tue, 24 Apr 2012 15:44:19 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1413#comment-40216</guid>
		<description>Hi Adam, Great stuff!  
I see you have code to select all read nodes but how do you select all read nodes above a selected node?</description>
		<content:encoded><![CDATA[<p>Hi Adam, Great stuff!<br />
I see you have code to select all read nodes but how do you select all read nodes above a selected node?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on some Nuke Python snippets by NIK</title>
		<link>http://adamteale.com/1413/comment-page-1/#comment-40067</link>
		<dc:creator>NIK</dc:creator>
		<pubDate>Thu, 19 Apr 2012 04:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1413#comment-40067</guid>
		<description>Can you help me please?! I&#039;m having trouble duplicating a node through python.

I have a group node with a few nodes inside. I also have 10 read nodes. What I would like to do it is select all my read nodes and have the script duplicate the group and place input to the read.

any help would be greatly appreciated!
Thanks</description>
		<content:encoded><![CDATA[<p>Can you help me please?! I&#8217;m having trouble duplicating a node through python.</p>
<p>I have a group node with a few nodes inside. I also have 10 read nodes. What I would like to do it is select all my read nodes and have the script duplicate the group and place input to the read.</p>
<p>any help would be greatly appreciated!<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Botswana Music Guitar &#8211; Ronnie &#8211; &#8220;Happy New Year&#8221;! by Rakhi Sharma</title>
		<link>http://adamteale.com/1747/comment-page-1/#comment-40019</link>
		<dc:creator>Rakhi Sharma</dc:creator>
		<pubDate>Tue, 17 Apr 2012 13:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?p=1747#comment-40019</guid>
		<description>While watching this video I have a smile on my face. It has absolutely made my day beautiful. What a cheerful tune!!...Indeed a real mood uplifting video :)  Rakhi</description>
		<content:encoded><![CDATA[<p>While watching this video I have a smile on my face. It has absolutely made my day beautiful. What a cheerful tune!!&#8230;Indeed a real mood uplifting video <img src='http://adamteale.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Rakhi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SubIt by Adam</title>
		<link>http://adamteale.com/subit/comment-page-1/#comment-39677</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 05 Apr 2012 11:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://adamteale.com/?page_id=729#comment-39677</guid>
		<description>Hey Romain!

Thanks a lot for your feedback - SubIt needs a new release. The ability to export to fcpx might be popular too.
SRT import - sure!
Thanks!</description>
		<content:encoded><![CDATA[<p>Hey Romain!</p>
<p>Thanks a lot for your feedback &#8211; SubIt needs a new release. The ability to export to fcpx might be popular too.<br />
SRT import &#8211; sure!<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

