<?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"
	>
<channel>
	<title>Comments on: Full Screen Flash (AS 2.0)</title>
	<atom:link href="http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20</link>
	<description>Design and Development</description>
	<pubDate>Sun, 07 Sep 2008 16:17:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Paul</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-32</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 10 Jun 2008 14:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-32</guid>
		<description>Didjerama, I believe you are right although I'm not sure once calling the function you would even need that onResize event, as the class itself would be handling the resize event. 

Hot Atomics, a great song by a great band indeed.

-Paul</description>
		<content:encoded><![CDATA[<p>Didjerama, I believe you are right although I&#8217;m not sure once calling the function you would even need that onResize event, as the class itself would be handling the resize event. </p>
<p>Hot Atomics, a great song by a great band indeed.</p>
<p>-Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hot Atomics</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-31</link>
		<dc:creator>Hot Atomics</dc:creator>
		<pubDate>Mon, 09 Jun 2008 19:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-31</guid>
		<description>well, I guess we'll never get to use this domain name.  Oh well, hopefully you're a Naked Raygun fan like us.

Hot Atomics
www.myspace.com/hotatomics</description>
		<content:encoded><![CDATA[<p>well, I guess we&#8217;ll never get to use this domain name.  Oh well, hopefully you&#8217;re a Naked Raygun fan like us.</p>
<p>Hot Atomics<br />
<a href="http://www.myspace.com/hotatomics" rel="nofollow">http://www.myspace.com/hotatomics</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didjerama</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-30</link>
		<dc:creator>Didjerama</dc:creator>
		<pubDate>Wed, 04 Jun 2008 02:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-30</guid>
		<description>Thanks a lot for the quick response Paul.
It works!!! Only one thing. When I load the background image (brfh) it position itself at the top left at first.
But when I resize the browser window it goes when i want it to be (bottom right). I think I have to call the function again when I load it.. because at the moment it's set as an OnResize event.
Is it possible to recall that function from an external swf file?</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the quick response Paul.<br />
It works!!! Only one thing. When I load the background image (brfh) it position itself at the top left at first.<br />
But when I resize the browser window it goes when i want it to be (bottom right). I think I have to call the function again when I load it.. because at the moment it&#8217;s set as an OnResize event.<br />
Is it possible to recall that function from an external swf file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-29</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 02 Jun 2008 20:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-29</guid>
		<description>Thanks for the kind words all - Didjerama, are you trying to place a background image on the bottom right which will increase in height, but not width? If so, you could do this but altering the layoutManager class to include another case, let's call it 'brfh' -

// Case 'brfh' (upper or lowercase) - bottom right fullscreen //height scale accordingly

case 'BRFH':
case 'brfh':
//align right
mc._x = Stage.width-mc._width-topMargin;
//align bottom
mc._y = Stage.height-mc._height-leftMargin;
//fullscreen height only
mc._height = Stage.height-topMargin;
break;

I think that should do what you are looking to acheive</description>
		<content:encoded><![CDATA[<p>Thanks for the kind words all - Didjerama, are you trying to place a background image on the bottom right which will increase in height, but not width? If so, you could do this but altering the layoutManager class to include another case, let&#8217;s call it &#8216;brfh&#8217; -</p>
<p>// Case &#8216;brfh&#8217; (upper or lowercase) - bottom right fullscreen //height scale accordingly</p>
<p>case &#8216;BRFH&#8217;:<br />
case &#8216;brfh&#8217;:<br />
//align right<br />
mc._x = Stage.width-mc._width-topMargin;<br />
//align bottom<br />
mc._y = Stage.height-mc._height-leftMargin;<br />
//fullscreen height only<br />
mc._height = Stage.height-topMargin;<br />
break;</p>
<p>I think that should do what you are looking to acheive</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didjerama</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-28</link>
		<dc:creator>Didjerama</dc:creator>
		<pubDate>Mon, 02 Jun 2008 05:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-28</guid>
		<description>Dear Paul,
let me first thank you for the knowledge you share on this website. I really appreciate it.
I'm making my first fullscreen flash website and I used this tutorial to organize the different elements on my page.
It all works fine, the only problem I have at the moment is this:
onRelease I would like to load a background image which is aligned bottom right. It should resize when you reduce/increase the browser window so that its height is equal to the browser window itself. I hope you can give me a little help on this one.
Thank you.</description>
		<content:encoded><![CDATA[<p>Dear Paul,<br />
let me first thank you for the knowledge you share on this website. I really appreciate it.<br />
I&#8217;m making my first fullscreen flash website and I used this tutorial to organize the different elements on my page.<br />
It all works fine, the only problem I have at the moment is this:<br />
onRelease I would like to load a background image which is aligned bottom right. It should resize when you reduce/increase the browser window so that its height is equal to the browser window itself. I hope you can give me a little help on this one.<br />
Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noriko</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-27</link>
		<dc:creator>noriko</dc:creator>
		<pubDate>Sun, 01 Jun 2008 21:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-27</guid>
		<description>Oh, this is really helpful!!!
Thank you so much putting this up. First time I feel I am in control of placement of swfs relative to browser.</description>
		<content:encoded><![CDATA[<p>Oh, this is really helpful!!!<br />
Thank you so much putting this up. First time I feel I am in control of placement of swfs relative to browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-26</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sat, 24 May 2008 13:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-26</guid>
		<description>Rami, apologies for the lack of prompt response - have been out of town on a family emergency. However, upon looking at your fla files, there is no way to achieve what you are trying to. If you want to load external swf files within your main movie, you must create a “container” movie clip within your main movie for the external clip you wish to load to reside in.

Marco, I think what you are trying to achieve can be done via usage of the tween class. Have a read &lt;a href="http://www.monkeyflash.com/flash/tween-class/" title="monkeyflash" target="_blank" rel="nofollow"&gt;here&lt;/a&gt; and &lt;a href="http://www.petitpub.com/labs/media/flash/astween/" title="petitpub" target="_blank" rel="nofollow"&gt;here&lt;/a&gt; for detailed explanations including examples. I also plan on doing a tween tutorial soon…..</description>
		<content:encoded><![CDATA[<p>Rami, apologies for the lack of prompt response - have been out of town on a family emergency. However, upon looking at your fla files, there is no way to achieve what you are trying to. If you want to load external swf files within your main movie, you must create a “container” movie clip within your main movie for the external clip you wish to load to reside in.</p>
<p>Marco, I think what you are trying to achieve can be done via usage of the tween class. Have a read <a href="http://www.monkeyflash.com/flash/tween-class/" title="monkeyflash" target="_blank" rel="nofollow">here</a> and <a href="http://www.petitpub.com/labs/media/flash/astween/" title="petitpub" target="_blank" rel="nofollow">here</a> for detailed explanations including examples. I also plan on doing a tween tutorial soon…..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco Antonio</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-22</link>
		<dc:creator>Marco Antonio</dc:creator>
		<pubDate>Wed, 21 May 2008 14:55:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-22</guid>
		<description>Hi! - Great work.
One question... how do I specify, for example, a symbol to only scale at a certain percentage of the page?  I want a button which scales with the page, but the text inside it to remain of fixed size... is there already a Flash function which does this?  Thanx!!!</description>
		<content:encoded><![CDATA[<p>Hi! - Great work.<br />
One question&#8230; how do I specify, for example, a symbol to only scale at a certain percentage of the page?  I want a button which scales with the page, but the text inside it to remain of fixed size&#8230; is there already a Flash function which does this?  Thanx!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rami</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-21</link>
		<dc:creator>Rami</dc:creator>
		<pubDate>Sat, 10 May 2008 22:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-21</guid>
		<description>hello Paul, well i have sent u an example of what i want to achieve,,,and u can find it here too [http://fileshare.aus.edu/cgi-bin/pnp7/files.cgi?dir=ATLnwIMws]

anyways,,in the main.fla page there is a button,,i want this button to take me to frame number 20 in home.swf file when u click on it!!! for now this is my biggest concern...if u have any idea how PLEASE let me know the scripts that is written inside the document that i sent u dont work,well it when u click the button "go 2 home" it goes to home BUT it plays the swf file from the beginning...
thanks so mcuh</description>
		<content:encoded><![CDATA[<p>hello Paul, well i have sent u an example of what i want to achieve,,,and u can find it here too [http://fileshare.aus.edu/cgi-bin/pnp7/files.cgi?dir=ATLnwIMws]</p>
<p>anyways,,in the main.fla page there is a button,,i want this button to take me to frame number 20 in home.swf file when u click on it!!! for now this is my biggest concern&#8230;if u have any idea how PLEASE let me know the scripts that is written inside the document that i sent u dont work,well it when u click the button &#8220;go 2 home&#8221; it goes to home BUT it plays the swf file from the beginning&#8230;<br />
thanks so mcuh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.hotatomics.com/flash-actionscript/full-screen-flash-as-20#comment-20</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sat, 10 May 2008 16:43:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotatomics.com/?p=10#comment-20</guid>
		<description>Rami - not sure exactly what you got there, if you could post a link to your source files I'll take a look? If not, you can embed multiple external swf's into your main flash movie via loadMovie and even preload them if that's what you are after. And, you can always use gotoAndPlay if you are looking to skip to certain frame.....</description>
		<content:encoded><![CDATA[<p>Rami - not sure exactly what you got there, if you could post a link to your source files I&#8217;ll take a look? If not, you can embed multiple external swf&#8217;s into your main flash movie via loadMovie and even preload them if that&#8217;s what you are after. And, you can always use gotoAndPlay if you are looking to skip to certain frame&#8230;..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
