<?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 yourpalmark</title>
	<atom:link href="http://yourpalmark.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://yourpalmark.com</link>
	<description>lulz</description>
	<lastBuildDate>Mon, 01 Mar 2010 01:42:44 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Color Name Class (SVG 1.0 &#8211; X11 and VGA) by Mark</title>
		<link>http://yourpalmark.com/2008/06/20/color-name-class-svg-10-x11-and-vga/comment-page-1/#comment-1934</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 01 Mar 2010 01:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2008/06/20/color-name-class-svg-10-x11-and-vga/#comment-1934</guid>
		<description>Hey Adrian,
Sorry for the really late reply...
You do not need to instantiate the class, all of the properties and methods are static.
Each color in the class is an instance of the ColorName class. So, BLUE, for example, has a color and name property.
To use a color, you would just need to say ColorName.BLUE.color.
You don&#039;t actually need to use the getColorNameByName() method. If you do use the method, there&#039;s a reason that it doesn&#039;t work for the colors with an underscore.
The name of LAVENDER_BLUSH is actually &quot;lavenderBlush&quot;. You can find that out by tracing out ColorName.LAVENDER_BLUSH.name.
But again, the easiest way to get the color would just be to say ColorName.LAVENDER_BLUSH.color.
Hope that helps!!</description>
		<content:encoded><![CDATA[<p>Hey Adrian,<br />
Sorry for the really late reply&#8230;<br />
You do not need to instantiate the class, all of the properties and methods are static.<br />
Each color in the class is an instance of the ColorName class. So, BLUE, for example, has a color and name property.<br />
To use a color, you would just need to say ColorName.BLUE.color.<br />
You don&#8217;t actually need to use the getColorNameByName() method. If you do use the method, there&#8217;s a reason that it doesn&#8217;t work for the colors with an underscore.<br />
The name of LAVENDER_BLUSH is actually &#8220;lavenderBlush&#8221;. You can find that out by tracing out ColorName.LAVENDER_BLUSH.name.<br />
But again, the easiest way to get the color would just be to say ColorName.LAVENDER_BLUSH.color.<br />
Hope that helps!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Papervision3D Update by marco</title>
		<link>http://yourpalmark.com/2009/09/06/geocoding-with-papervision3d-update/comment-page-1/#comment-1933</link>
		<dc:creator>marco</dc:creator>
		<pubDate>Thu, 18 Feb 2010 23:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/?p=528#comment-1933</guid>
		<description>Hey Mark,

first of all, great work. 
i&#039;m trying to get a selected marker on click in front of the camera (acutally just on the y-axis). but for some reason, it works not 100%. sometimes it is just slighty beside the center, and sometimes it just spinns the wrong way arround :-)

any idea?

thanks 
marco

&lt;code&gt;
...
protected function rotateGlobeToMarker(marker : DisplayObject3D) : void
{
	Tweener.removeAllTweens();
	var rotationY : int = marker.rotationY;
	Tweener.addTween(cameraTarget, {rotationX : 0, rotationY : rotationY, 
		time : 2, onComplete : autoRotateComplete});
}
...
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hey Mark,</p>
<p>first of all, great work.<br />
i&#8217;m trying to get a selected marker on click in front of the camera (acutally just on the y-axis). but for some reason, it works not 100%. sometimes it is just slighty beside the center, and sometimes it just spinns the wrong way arround <img src='http://yourpalmark.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>any idea?</p>
<p>thanks<br />
marco</p>
<p><code><br />
...<br />
protected function rotateGlobeToMarker(marker : DisplayObject3D) : void<br />
{<br />
	Tweener.removeAllTweens();<br />
	var rotationY : int = marker.rotationY;<br />
	Tweener.addTween(cameraTarget, {rotationX : 0, rotationY : rotationY,<br />
		time : 2, onComplete : autoRotateComplete});<br />
}<br />
...<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Papervision3D Update by michael</title>
		<link>http://yourpalmark.com/2009/09/06/geocoding-with-papervision3d-update/comment-page-1/#comment-1931</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Fri, 12 Feb 2010 07:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/?p=528#comment-1931</guid>
		<description>Hi Mark,

your 3d globe is the fastest globe on the market, and I study it all.
Please inform me where to search to do some modification:
1. to create a continuous spinning of the globe, to set a rotation speed.
2. to put the selected marker in the middle of the screen when the marker is selected.
3.to modify the marker with a png icon.

thank you!

Mihai</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>your 3d globe is the fastest globe on the market, and I study it all.<br />
Please inform me where to search to do some modification:<br />
1. to create a continuous spinning of the globe, to set a rotation speed.<br />
2. to put the selected marker in the middle of the screen when the marker is selected.<br />
3.to modify the marker with a png icon.</p>
<p>thank you!</p>
<p>Mihai</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Color Name Class (SVG 1.0 &#8211; X11 and VGA) by Adrian Parr</title>
		<link>http://yourpalmark.com/2008/06/20/color-name-class-svg-10-x11-and-vga/comment-page-1/#comment-1930</link>
		<dc:creator>Adrian Parr</dc:creator>
		<pubDate>Mon, 08 Feb 2010 19:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2008/06/20/color-name-class-svg-10-x11-and-vga/#comment-1930</guid>
		<description>Hi Mark,

I think I have figured out how to use this class and have managed to get it to work with colours that use a name without underscores. Like this ...

import com.yourpalmark.utils.ColorName;
var canvas:Sprite;
canvas = new Sprite();
canvas.graphics.beginFill(ColorName.getColorNameByName(&quot;LAVENDER&quot;).color, 1);
canvas.graphics.drawRect(0, 0, 550, 400);
canvas.graphics.endFill();
addChild(canvas);

But when I try to get a colour that has underscores in it&#039;s name like this ...

import com.yourpalmark.utils.ColorName;
var canvas:Sprite;
canvas = new Sprite();
canvas.graphics.beginFill(ColorName.getColorNameByName(&quot;LAVENDER_BLUSH&quot;).color, 1);
canvas.graphics.drawRect(0, 0, 550, 400);
canvas.graphics.endFill();
addChild(canvas);

I get the following error message ...

&quot;TypeError: Error #1009: Cannot access a property or method of a null object reference. at colorNameDemo_fla::MainTimeline/frame1()&quot;

Any ideas why this is?

Any help would be gratefully appreciated.

Cheers,

Adrian</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>I think I have figured out how to use this class and have managed to get it to work with colours that use a name without underscores. Like this &#8230;</p>
<p>import com.yourpalmark.utils.ColorName;<br />
var canvas:Sprite;<br />
canvas = new Sprite();<br />
canvas.graphics.beginFill(ColorName.getColorNameByName(&#8220;LAVENDER&#8221;).color, 1);<br />
canvas.graphics.drawRect(0, 0, 550, 400);<br />
canvas.graphics.endFill();<br />
addChild(canvas);</p>
<p>But when I try to get a colour that has underscores in it&#8217;s name like this &#8230;</p>
<p>import com.yourpalmark.utils.ColorName;<br />
var canvas:Sprite;<br />
canvas = new Sprite();<br />
canvas.graphics.beginFill(ColorName.getColorNameByName(&#8220;LAVENDER_BLUSH&#8221;).color, 1);<br />
canvas.graphics.drawRect(0, 0, 550, 400);<br />
canvas.graphics.endFill();<br />
addChild(canvas);</p>
<p>I get the following error message &#8230;</p>
<p>&#8220;TypeError: Error #1009: Cannot access a property or method of a null object reference. at colorNameDemo_fla::MainTimeline/frame1()&#8221;</p>
<p>Any ideas why this is?</p>
<p>Any help would be gratefully appreciated.</p>
<p>Cheers,</p>
<p>Adrian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XIFF GUI (AS3 XMPP Demo) by agil</title>
		<link>http://yourpalmark.com/2009/02/23/xiff-gui-as3-xmpp-demo/comment-page-1/#comment-1929</link>
		<dc:creator>agil</dc:creator>
		<pubDate>Mon, 08 Feb 2010 13:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/?p=496#comment-1929</guid>
		<description>Yes, I have the same problem , Code: 500, Condition: Undefined condition, Message: Unknown error, Type: modify.
I don’t know why. Do someone have the solution?</description>
		<content:encoded><![CDATA[<p>Yes, I have the same problem , Code: 500, Condition: Undefined condition, Message: Unknown error, Type: modify.<br />
I don’t know why. Do someone have the solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XIFF GUI (AS3 XMPP Demo) by Sharedtut</title>
		<link>http://yourpalmark.com/2009/02/23/xiff-gui-as3-xmpp-demo/comment-page-1/#comment-1927</link>
		<dc:creator>Sharedtut</dc:creator>
		<pubDate>Wed, 03 Feb 2010 16:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/?p=496#comment-1927</guid>
		<description>Good article, thank you for sharing.</description>
		<content:encoded><![CDATA[<p>Good article, thank you for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3ScribdLib Update 0.90 &#8211; Complete API Support by gianmaria</title>
		<link>http://yourpalmark.com/2008/04/02/as3scribdlib-update-090-complete-api-support/comment-page-1/#comment-1926</link>
		<dc:creator>gianmaria</dc:creator>
		<pubDate>Wed, 03 Feb 2010 16:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2008/04/02/as3scribdlib-update-090-complete-api-support/#comment-1926</guid>
		<description>i&#039;m tryng tu use your api, i first initialize a new user and i&#039;ve this error
in Docs.as line 220
1047: Parameter initializer unknown or is not a compile-time constant. 

can u plaese help me
thanks alot</description>
		<content:encoded><![CDATA[<p>i&#8217;m tryng tu use your api, i first initialize a new user and i&#8217;ve this error<br />
in Docs.as line 220<br />
1047: Parameter initializer unknown or is not a compile-time constant. </p>
<p>can u plaese help me<br />
thanks alot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SecurityError Loading Local Files AND Accessing Internet Resources by Jamie</title>
		<link>http://yourpalmark.com/2008/07/25/securityerror-loading-local-files-and-accessing-internet-resources/comment-page-1/#comment-1925</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Wed, 03 Feb 2010 02:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2008/07/25/securityerror-loading-local-files-and-accessing-internet-resources/#comment-1925</guid>
		<description>Also note that you may need to restart your browser (at least if it is Firefox 3.6 under Ubuntu 9.10) for the new security settings to be loaded!</description>
		<content:encoded><![CDATA[<p>Also note that you may need to restart your browser (at least if it is Firefox 3.6 under Ubuntu 9.10) for the new security settings to be loaded!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlashPaper Component Tutorial by Silver</title>
		<link>http://yourpalmark.com/2006/06/16/flashpaper-component-tutorial/comment-page-2/#comment-1920</link>
		<dc:creator>Silver</dc:creator>
		<pubDate>Tue, 19 Jan 2010 04:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2006/06/16/flashpaper-component-tutorial/#comment-1920</guid>
		<description>Hi Mark,

Can this component be used in CS4? I tried but FlashPaper did not appear in Component window. Can anyone suggest how to make it work in CS4?
I&#039;ve tried CS3, it works perfectly. 

Silver</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>Can this component be used in CS4? I tried but FlashPaper did not appear in Component window. Can anyone suggest how to make it work in CS4?<br />
I&#8217;ve tried CS3, it works perfectly. </p>
<p>Silver</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlashPaper in 2008: Dead or Alive? by Bjoern Berntsson</title>
		<link>http://yourpalmark.com/2008/01/01/flashpaper-in-2008-dead-or-alive/comment-page-1/#comment-1919</link>
		<dc:creator>Bjoern Berntsson</dc:creator>
		<pubDate>Sat, 09 Jan 2010 21:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2008/01/01/flashpaper-in-2008-dead-or-alive/#comment-1919</guid>
		<description>FlexPaper was relased not too long ago, it&#039;s a new open source flash based viewer equivalent to Flash Paper. Looks very promising:

http://www.devaldi.com/?page_id=260</description>
		<content:encoded><![CDATA[<p>FlexPaper was relased not too long ago, it&#8217;s a new open source flash based viewer equivalent to Flash Paper. Looks very promising:</p>
<p><a href="http://www.devaldi.com/?page_id=260" rel="nofollow">http://www.devaldi.com/?page_id=260</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
