<?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: ActionScript 3 Tutorial &#8211; What Happened to getURL?</title>
	<atom:link href="http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/feed/" rel="self" type="application/rss+xml" />
	<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/</link>
	<description>Free Flash Tutorials</description>
	<lastBuildDate>Fri, 12 Mar 2010 00:14:56 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nuthman</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1414</link>
		<dc:creator>Nuthman</dc:creator>
		<pubDate>Thu, 04 Mar 2010 04:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1414</guid>
		<description>I created a little getURL class for actionscript 3 that simulates as2 getURL here: http://www.as3blog.org/?p=40</description>
		<content:encoded><![CDATA[<p>I created a little getURL class for actionscript 3 that simulates as2 getURL here: <a href="http://www.as3blog.org/?p=40" rel="nofollow">http://www.as3blog.org/?p=40</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin O'Brien</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1404</link>
		<dc:creator>Kevin O'Brien</dc:creator>
		<pubDate>Fri, 26 Feb 2010 00:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1404</guid>
		<description>I just wanted to say THANK YOU for this post, it was extremely helpful. THX</description>
		<content:encoded><![CDATA[<p>I just wanted to say THANK YOU for this post, it was extremely helpful. THX</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Hull</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1397</link>
		<dc:creator>Robert Hull</dc:creator>
		<pubDate>Sat, 20 Feb 2010 18:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1397</guid>
		<description>Hello I am getting back into flash, I used to be pretty good at flash mx, but now with cs3 and action script 3.0 I cannot add a get url at the end of a timeline to work. Here is what I am doing:

I have greenscreened a video and imported it into flash cs3 with action script 3.0 for it to work, with a background and by looking at the code you have done, it should work but I get errors and my green screen video disappears? Any ideas?</description>
		<content:encoded><![CDATA[<p>Hello I am getting back into flash, I used to be pretty good at flash mx, but now with cs3 and action script 3.0 I cannot add a get url at the end of a timeline to work. Here is what I am doing:</p>
<p>I have greenscreened a video and imported it into flash cs3 with action script 3.0 for it to work, with a background and by looking at the code you have done, it should work but I get errors and my green screen video disappears? Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Exotic</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1395</link>
		<dc:creator>Exotic</dc:creator>
		<pubDate>Sat, 20 Feb 2010 11:34:16 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1395</guid>
		<description>Thx a lot :)</description>
		<content:encoded><![CDATA[<p>Thx a lot <img src='http://schoolofflash.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Salaka</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1390</link>
		<dc:creator>Salaka</dc:creator>
		<pubDate>Fri, 12 Feb 2010 16:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1390</guid>
		<description>Thanks for You All, No Need to Reply i fix it as below and it&#039;s work fine:

a.addEventListener(MouseEvent.CLICK, onMouseClick);
function onMouseClick(e:MouseEvent):void
{var request:URLRequest=new URLRequest(&quot;discover_course.htm&quot;);
navigateToURL(request,&quot;_blank&quot;);
}
b.addEventListener(MouseEvent.CLICK, onMouseClick01);
function onMouseClick01(e:MouseEvent):void
{var request:URLRequest=new URLRequest(&quot;open_course.htm&quot;);
navigateToURL(request,&quot;_blank&quot;);
}
c.addEventListener(MouseEvent.CLICK, onMouseClick02);
function onMouseClick02(e:MouseEvent):void
{var request:URLRequest=new URLRequest(&quot;advanc_course.htm&quot;);
navigateToURL(request,&quot;_blank&quot;);
}
d.addEventListener(MouseEvent.CLICK, onMouseClick03);
function onMouseClick03(e:MouseEvent):void
{var request:URLRequest=new URLRequest(&quot;efr_course.htm&quot;);
navigateToURL(request,&quot;_blank&quot;);
}
e.addEventListener(MouseEvent.CLICK, onMouseClick04);
function onMouseClick04(e:MouseEvent):void
{var request:URLRequest=new URLRequest(&quot;rescu_course.htm&quot;);
navigateToURL(request,&quot;_blank&quot;);
}
f.addEventListener(MouseEvent.CLICK, onMouseClick05);
function onMouseClick05(e:MouseEvent):void
{var request:URLRequest=new URLRequest(&quot;master_scuba_course.htm&quot;);
navigateToURL(request,&quot;_blank&quot;);
}</description>
		<content:encoded><![CDATA[<p>Thanks for You All, No Need to Reply i fix it as below and it&#8217;s work fine:</p>
<p>a.addEventListener(MouseEvent.CLICK, onMouseClick);<br />
function onMouseClick(e:MouseEvent):void<br />
{var request:URLRequest=new URLRequest(&#8220;discover_course.htm&#8221;);<br />
navigateToURL(request,&#8221;_blank&#8221;);<br />
}<br />
b.addEventListener(MouseEvent.CLICK, onMouseClick01);<br />
function onMouseClick01(e:MouseEvent):void<br />
{var request:URLRequest=new URLRequest(&#8220;open_course.htm&#8221;);<br />
navigateToURL(request,&#8221;_blank&#8221;);<br />
}<br />
c.addEventListener(MouseEvent.CLICK, onMouseClick02);<br />
function onMouseClick02(e:MouseEvent):void<br />
{var request:URLRequest=new URLRequest(&#8220;advanc_course.htm&#8221;);<br />
navigateToURL(request,&#8221;_blank&#8221;);<br />
}<br />
d.addEventListener(MouseEvent.CLICK, onMouseClick03);<br />
function onMouseClick03(e:MouseEvent):void<br />
{var request:URLRequest=new URLRequest(&#8220;efr_course.htm&#8221;);<br />
navigateToURL(request,&#8221;_blank&#8221;);<br />
}<br />
e.addEventListener(MouseEvent.CLICK, onMouseClick04);<br />
function onMouseClick04(e:MouseEvent):void<br />
{var request:URLRequest=new URLRequest(&#8220;rescu_course.htm&#8221;);<br />
navigateToURL(request,&#8221;_blank&#8221;);<br />
}<br />
f.addEventListener(MouseEvent.CLICK, onMouseClick05);<br />
function onMouseClick05(e:MouseEvent):void<br />
{var request:URLRequest=new URLRequest(&#8220;master_scuba_course.htm&#8221;);<br />
navigateToURL(request,&#8221;_blank&#8221;);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Salaka</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1389</link>
		<dc:creator>Salaka</dc:creator>
		<pubDate>Fri, 12 Feb 2010 15:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1389</guid>
		<description>Dears, i went throught all the conversation up so is it mean we can&#039;t add more then geturl() link with the AS3 is there any other way to include more then one.</description>
		<content:encoded><![CDATA[<p>Dears, i went throught all the conversation up so is it mean we can&#8217;t add more then geturl() link with the AS3 is there any other way to include more then one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: satya</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1376</link>
		<dc:creator>satya</dc:creator>
		<pubDate>Fri, 29 Jan 2010 07:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1376</guid>
		<description>HI i m satya.
I really hate AS3.... 

Please help me out for this..

In swf at last frame I want to open a url without any click
but right now its not working with following code.

---- as3 code ------

 
stop();
var request:URLRequest=new URLRequest(&quot;http://www.villaisla.co.in/Villaisla.html&quot;);
navigateToURL(request,&quot;_self&quot;);



PLease help me....</description>
		<content:encoded><![CDATA[<p>HI i m satya.<br />
I really hate AS3&#8230;. </p>
<p>Please help me out for this..</p>
<p>In swf at last frame I want to open a url without any click<br />
but right now its not working with following code.</p>
<p>&#8212;- as3 code &#8212;&#8212;</p>
<p>stop();<br />
var request:URLRequest=new URLRequest(&#8220;http://www.villaisla.co.in/Villaisla.html&#8221;);<br />
navigateToURL(request,&#8221;_self&#8221;);</p>
<p>PLease help me&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carvalho</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1320</link>
		<dc:creator>Carvalho</dc:creator>
		<pubDate>Thu, 19 Nov 2009 05:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1320</guid>
		<description>Hello everybody!

I have a serious problem with a code.

This is my code:

function makebtn(mc:MovieClip,aurl:String):void{
	mc.aurl = aurl;
	mc.buttonMode= true;
	mc.addEventListener(MouseEvent.CLICK,gotoaurl);
	}
	
	function gotoaurl(e:MouseEvent):void{
		var aurl:String = e.target.aurl;
		navigateToURL(new URLRequest(aurl));
		}
		makebtn(btn1,&#039;http://www.google.com&#039;);
&#124;
I have tried all codes to make it work for a simple button or movieclip have the task to open an URL in _blank window. This code wotks just fine, but when i put the swf in dreamweaver and publish in html, the code for the just simple doesn´t work!

The button and code is split into two windows (content), 1, Scene 1 -&gt; ScrollContent -&gt; content.

The buttons placed outside the ScrollContent with the same codes work. But the others in content area (wich have the scroll) doesn´t works!
Can anyone help me? please!</description>
		<content:encoded><![CDATA[<p>Hello everybody!</p>
<p>I have a serious problem with a code.</p>
<p>This is my code:</p>
<p>function makebtn(mc:MovieClip,aurl:String):void{<br />
	mc.aurl = aurl;<br />
	mc.buttonMode= true;<br />
	mc.addEventListener(MouseEvent.CLICK,gotoaurl);<br />
	}</p>
<p>	function gotoaurl(e:MouseEvent):void{<br />
		var aurl:String = e.target.aurl;<br />
		navigateToURL(new URLRequest(aurl));<br />
		}<br />
		makebtn(btn1,&#8217;http://www.google.com&#8217;);<br />
|<br />
I have tried all codes to make it work for a simple button or movieclip have the task to open an URL in _blank window. This code wotks just fine, but when i put the swf in dreamweaver and publish in html, the code for the just simple doesn´t work!</p>
<p>The button and code is split into two windows (content), 1, Scene 1 -&gt; ScrollContent -&gt; content.</p>
<p>The buttons placed outside the ScrollContent with the same codes work. But the others in content area (wich have the scroll) doesn´t works!<br />
Can anyone help me? please!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Farah</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1300</link>
		<dc:creator>Farah</dc:creator>
		<pubDate>Mon, 28 Sep 2009 14:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1300</guid>
		<description>Wow, thx so much, this code is &quot;fantastic&quot; hauhau

thx again!</description>
		<content:encoded><![CDATA[<p>Wow, thx so much, this code is &#8220;fantastic&#8221; hauhau</p>
<p>thx again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BDTR</title>
		<link>http://schoolofflash.com/blog/2008/04/actionscript-3-tutorial-what-happened-to-geturl/comment-page-3/#comment-1295</link>
		<dc:creator>BDTR</dc:creator>
		<pubDate>Thu, 24 Sep 2009 19:15:23 +0000</pubDate>
		<guid isPermaLink="false">http://schoolofflash.com/2008/04/17/actionscript-3-tutorial-what-happened-to-geturl/#comment-1295</guid>
		<description>This gave me exactly what I needed. Thanks!</description>
		<content:encoded><![CDATA[<p>This gave me exactly what I needed. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
