<?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: AS3 G94 Circular Menu</title>
	<atom:link href="http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu</link>
	<description>Art + Technology</description>
	<lastBuildDate>Thu, 06 Oct 2011 13:58:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Chris</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-9793</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 04 May 2011 02:12:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-9793</guid>
		<description>Hi Soulwire and everyone else.  I have been trying to use this circular menu but am having a couple problems that might be obvious to some.  First problem is that I want to switch the black boxes and text to images.  Every time I try and do this the menu will not show up anymore.  I can change the box color and the text but can&#039;t replace it with a picture.  The second issue is that when I put a background behind it I can not see the menu anymore.  It seems like people aren&#039;t posting on this as much anymore but if anyone could help it&#039;d be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hi Soulwire and everyone else.  I have been trying to use this circular menu but am having a couple problems that might be obvious to some.  First problem is that I want to switch the black boxes and text to images.  Every time I try and do this the menu will not show up anymore.  I can change the box color and the text but can&#8217;t replace it with a picture.  The second issue is that when I put a background behind it I can not see the menu anymore.  It seems like people aren&#8217;t posting on this as much anymore but if anyone could help it&#8217;d be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-9596</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 29 Mar 2011 16:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-9596</guid>
		<description>Nice class - but how can I set it up so that the current item is the highest item and everything else shows up behind it? Right now items after the current item show up on top of the current item, and obviously if you use setChildIndex() it affects how all the items are navigated through.</description>
		<content:encoded><![CDATA[<p>Nice class &#8211; but how can I set it up so that the current item is the highest item and everything else shows up behind it? Right now items after the current item show up on top of the current item, and obviously if you use setChildIndex() it affects how all the items are navigated through.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas Nyström</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-9593</link>
		<dc:creator>Jonas Nyström</dc:creator>
		<pubDate>Tue, 29 Mar 2011 08:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-9593</guid>
		<description>Hi Soulwire, and thanx!

I&#039;m trying the Circular Menu as an ActionScript project in Flash Builder 4, and it works great except for the TextField part. It becomes invisible for all menu leaves except for the active one, and it doesn&#039;t become visible until the leaf scaling is ready. Could you give a clue? Thanx!

Here&#039;s my MyMenuItem class:

package
{
	import flash.display.Sprite;
	import flash.text.TextField;
	
	public class MyMenuItem extends Sprite
	{
		
		public function MyMenuItem(color:uint, text:String)
		{
			super();			
			
			this.graphics.beginFill(color);
			this.graphics.lineStyle(1, 0x555555);
			this.graphics.drawRect(0, 0, 100, 30);

			var txtLabel:TextField = new TextField();
			txtLabel.y = 5;
			txtLabel.selectable = false;
			txtLabel.text = text;

			this.addChild(txtLabel);
		}
	}
}</description>
		<content:encoded><![CDATA[<p>Hi Soulwire, and thanx!</p>
<p>I&#8217;m trying the Circular Menu as an ActionScript project in Flash Builder 4, and it works great except for the TextField part. It becomes invisible for all menu leaves except for the active one, and it doesn&#8217;t become visible until the leaf scaling is ready. Could you give a clue? Thanx!</p>
<p>Here&#8217;s my MyMenuItem class:</p>
<p>package<br />
{<br />
	import flash.display.Sprite;<br />
	import flash.text.TextField;</p>
<p>	public class MyMenuItem extends Sprite<br />
	{</p>
<p>		public function MyMenuItem(color:uint, text:String)<br />
		{<br />
			super();			</p>
<p>			this.graphics.beginFill(color);<br />
			this.graphics.lineStyle(1, 0&#215;555555);<br />
			this.graphics.drawRect(0, 0, 100, 30);</p>
<p>			var txtLabel:TextField = new TextField();<br />
			txtLabel.y = 5;<br />
			txtLabel.selectable = false;<br />
			txtLabel.text = text;</p>
<p>			this.addChild(txtLabel);<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oscar</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-9025</link>
		<dc:creator>oscar</dc:creator>
		<pubDate>Wed, 09 Jun 2010 15:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-9025</guid>
		<description>Very good job, but how i edit it? do you have a manual or tutorial?</description>
		<content:encoded><![CDATA[<p>Very good job, but how i edit it? do you have a manual or tutorial?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ücretsiz Flash Animasyon ve Menü Oluşturun &#124; Wkhost.NET</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-8940</link>
		<dc:creator>Ücretsiz Flash Animasyon ve Menü Oluşturun &#124; Wkhost.NET</dc:creator>
		<pubDate>Fri, 23 Apr 2010 19:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-8940</guid>
		<description>[...] Website: AS3 Circular Group94 Style Scrolling Menu [...]</description>
		<content:encoded><![CDATA[<p>[...] Website: AS3 Circular Group94 Style Scrolling Menu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-8922</link>
		<dc:creator>david</dc:creator>
		<pubDate>Thu, 15 Apr 2010 16:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-8922</guid>
		<description>actually realised that, having it on top would not look right at all - have now almost found an adequate solution by adjusting the scaleX and scaleY values independently. Next I will play with adjusting the rotation property, increasing and decreasing for each value except the active one - hopefully that should give me the effect im after.</description>
		<content:encoded><![CDATA[<p>actually realised that, having it on top would not look right at all &#8211; have now almost found an adequate solution by adjusting the scaleX and scaleY values independently. Next I will play with adjusting the rotation property, increasing and decreasing for each value except the active one &#8211; hopefully that should give me the effect im after.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-8917</link>
		<dc:creator>david</dc:creator>
		<pubDate>Tue, 13 Apr 2010 20:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-8917</guid>
		<description>Hi Soulwire, great work - thanks for sharing this with us!

I was wondering if there is a way to set the display index of the current menu item so that it is always on the top of the list?

I was also wondering if you might be able to give me any pointers as to how I might go about creating an effect where all the menu items are positioned in a circle, overlapping each other to fit, except for the current item which has its own &#039;reserved&#039; space, and the surrounding items come to meet it...if that makes any sense!

thanks, david</description>
		<content:encoded><![CDATA[<p>Hi Soulwire, great work &#8211; thanks for sharing this with us!</p>
<p>I was wondering if there is a way to set the display index of the current menu item so that it is always on the top of the list?</p>
<p>I was also wondering if you might be able to give me any pointers as to how I might go about creating an effect where all the menu items are positioned in a circle, overlapping each other to fit, except for the current item which has its own &#8216;reserved&#8217; space, and the surrounding items come to meet it&#8230;if that makes any sense!</p>
<p>thanks, david</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sky</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-8896</link>
		<dc:creator>Sky</dc:creator>
		<pubDate>Wed, 31 Mar 2010 12:39:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-8896</guid>
		<description>Hi Soulwire !

The FLEX version would be a great news !
If you can help us to start it ... 

Thanks,
Sky</description>
		<content:encoded><![CDATA[<p>Hi Soulwire !</p>
<p>The FLEX version would be a great news !<br />
If you can help us to start it &#8230; </p>
<p>Thanks,<br />
Sky</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: artur</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-789</link>
		<dc:creator>artur</dc:creator>
		<pubDate>Sat, 05 Dec 2009 18:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-789</guid>
		<description>hi soulwire!

I enjoyed very much your menu but I am very bad at as3.
so I ask you please to help me:
First, I want to make links, each button a different link, using both navigate to url and gotoandplay.
what code and where should I write it?

and second, I don&#039;t need the controllers (radius, fade, etc), how can I remove it?


thank you very much!!</description>
		<content:encoded><![CDATA[<p>hi soulwire!</p>
<p>I enjoyed very much your menu but I am very bad at as3.<br />
so I ask you please to help me:<br />
First, I want to make links, each button a different link, using both navigate to url and gotoandplay.<br />
what code and where should I write it?</p>
<p>and second, I don&#8217;t need the controllers (radius, fade, etc), how can I remove it?</p>
<p>thank you very much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhoomit</title>
		<link>http://blog.soulwire.co.uk/code/actionscript-3/as3-g94-circular-menu/comment-page-6#comment-788</link>
		<dc:creator>bhoomit</dc:creator>
		<pubDate>Sun, 01 Nov 2009 06:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.soulwire.co.uk/?p=214#comment-788</guid>
		<description>Hi soulwire,

i m grearful to u for such a nice creation. I m wondering if i can use this in FLEX so if u have any idea then tel me ASAP</description>
		<content:encoded><![CDATA[<p>Hi soulwire,</p>
<p>i m grearful to u for such a nice creation. I m wondering if i can use this in FLEX so if u have any idea then tel me ASAP</p>
]]></content:encoded>
	</item>
</channel>
</rss>

