<?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>Apple Byte</title>
	<atom:link href="http://applebyte.org/feed" rel="self" type="application/rss+xml" />
	<link>http://applebyte.org</link>
	<description>Apple Byte - Every byte of Apple</description>
	<lastBuildDate>Mon, 09 Aug 2010 04:16:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML 5 Video Accessibility</title>
		<link>http://applebyte.org/2010/08/html-5-video.php</link>
		<comments>http://applebyte.org/2010/08/html-5-video.php#comments</comments>
		<pubDate>Mon, 09 Aug 2010 04:16:54 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1064</guid>
		<description><![CDATA[Graphic Illustration of HTML5 Video!

]]></description>
		<wfw:commentRss>http://applebyte.org/2010/08/html-5-video.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TDP Pixatogoly IPAD Contest</title>
		<link>http://applebyte.org/2010/08/tdp-pixatogoly-ipad-contest.php</link>
		<comments>http://applebyte.org/2010/08/tdp-pixatogoly-ipad-contest.php#comments</comments>
		<pubDate>Fri, 06 Aug 2010 03:09:16 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[Apple Workplace]]></category>
		<category><![CDATA[iTouch]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1059</guid>
		<description><![CDATA[Open to multimedia students, curious developers, illustrators and Apple fan developer. Yup&#8230; be a part of The Design People IPAD Touch Challenge. 

]]></description>
		<wfw:commentRss>http://applebyte.org/2010/08/tdp-pixatogoly-ipad-contest.php/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The magic of get url</title>
		<link>http://applebyte.org/2010/06/the-magic-of-get-url.php</link>
		<comments>http://applebyte.org/2010/06/the-magic-of-get-url.php#comments</comments>
		<pubDate>Mon, 21 Jun 2010 08:50:08 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1051</guid>
		<description><![CDATA[Yup, to combined flash to Jquery used the get url..
1. On Flash

stop();
getURL("javascript:applebyte();");

2. On CSS

.applenav {
display:none;
margin-top:0;
}

2. On Jquery

function applebyte()
{
$('.applenav').fadeTo('slow', 0.1, function() {
$(".applenav").animate({"margin-top": "215px"}, 1000).fadeTo('slow', 1);
  // Animation complete.
});
}
$(document).ready(function() {
});

]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/the-magic-of-get-url.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Happy Father&#8217;s Day</title>
		<link>http://applebyte.org/2010/06/happy-fathers-day.php</link>
		<comments>http://applebyte.org/2010/06/happy-fathers-day.php#comments</comments>
		<pubDate>Sat, 19 Jun 2010 22:58:06 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Says]]></category>
		<category><![CDATA[apples world]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1037</guid>
		<description><![CDATA[This father&#8217;s day, I never been so lonely and wishing my father was here. Maybe he will console me and always he will said &#8220;Apple andyan na ko.&#8221; 
I am lucky to have a father like him, I remember his long hour of waiting at school yard. Or the baon that he will prepared in [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/happy-fathers-day.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applebyte Preloader AS3</title>
		<link>http://applebyte.org/2010/06/applebyte-preloader.php</link>
		<comments>http://applebyte.org/2010/06/applebyte-preloader.php#comments</comments>
		<pubDate>Fri, 18 Jun 2010 22:00:18 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1029</guid>
		<description><![CDATA[1. Create your movieclip and textfield. For this recipe, you&#8217;ll need a simple rectangle, and a dynamic textfield
b. lpc (Dynamic Txt) – make sure this is embed to character range
c. loadBar (desire length)


import flash.display.*;
this.stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, appleLoader);
function appleLoader(event:ProgressEvent):void {
var pcent:Number=event.bytesLoaded/event.bytesTotal*100;
lbar.scaleX=pcent/100;
lpc.text=int(pcent)+"%";
if(pcent==100){
this.gotoAndStop(2);
}
}


]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/applebyte-preloader.php/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Apple Flash AS2 Preloader</title>
		<link>http://applebyte.org/2010/06/apple-flash-as2-preloader.php</link>
		<comments>http://applebyte.org/2010/06/apple-flash-as2-preloader.php#comments</comments>
		<pubDate>Fri, 18 Jun 2010 07:56:49 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1024</guid>
		<description><![CDATA[How to make simple preloader?
Preloader are the simplest to design but hardest in script. There are so many different ways to build a preloader in Flash and each variation has it’s advantage and specialist use. This is the most simple of all.
1. Create a movie clip with instance name preloader with the ff:
a. Loading (static)
b. [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/apple-flash-as2-preloader.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>McDo Playland &#8211; Applebyte says &#8220;I’m lovin it&#8221;</title>
		<link>http://applebyte.org/2010/06/mcdo-playland-applebyte-lovin-it.php</link>
		<comments>http://applebyte.org/2010/06/mcdo-playland-applebyte-lovin-it.php#comments</comments>
		<pubDate>Wed, 16 Jun 2010 14:55:24 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Says]]></category>
		<category><![CDATA[apples world]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1021</guid>
		<description><![CDATA[A recent commercial of Mc Donald featuring a three stories high Adults Playland, taking up the space in front of the Customs House at Sydney&#8217;s Circular Quay.
One Monday it suddenly appeared, the biggest McDonald&#8217;s Playland ever constructed while it suited to clad adults broke their Monday routine with a little time spent on the giant [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/mcdo-playland-applebyte-lovin-it.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple love jQuery slideshow</title>
		<link>http://applebyte.org/2010/06/apple-love-jquery-slideshow.php</link>
		<comments>http://applebyte.org/2010/06/apple-love-jquery-slideshow.php#comments</comments>
		<pubDate>Tue, 15 Jun 2010 08:58:56 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1003</guid>
		<description><![CDATA[I been using jQuery often now a days. jQuery slideshow advantage in SEO, compatible with more browsers than Flash including iPhone, cell phones, PS3 and PSP, these are some of the few reason on increasing demand using this framework. Below are some of my favorite.
a. mb.maskedGallery.doc
A slide show if you are have Custom frame for [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/apple-love-jquery-slideshow.php/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Applebyte excited about Microsoft Kinect</title>
		<link>http://applebyte.org/2010/06/applebyte-excited-about-microsof-kinect.php</link>
		<comments>http://applebyte.org/2010/06/applebyte-excited-about-microsof-kinect.php#comments</comments>
		<pubDate>Mon, 14 Jun 2010 12:25:24 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Store]]></category>
		<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[games chitchat]]></category>
		<category><![CDATA[techky]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1006</guid>
		<description><![CDATA[On the eve Electronic Entertainment Expo (E3) in Los Angeles, Microsoft entertained game enthusiast by unveiling the Project Natal that officially called Microsoft Kinect. It will be available on November and it was been forecast ranging from $130 to $200++.
This newest motion controlled game gadget features Kinect Sports, Kinect Adventures, Dance Central, Your Shape: Fitness [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/applebyte-excited-about-microsof-kinect.php/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>New Applebyte, new me!</title>
		<link>http://applebyte.org/2010/06/new-applebyte-new-me.php</link>
		<comments>http://applebyte.org/2010/06/new-applebyte-new-me.php#comments</comments>
		<pubDate>Sat, 12 Jun 2010 21:43:29 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Says]]></category>
		<category><![CDATA[miracle]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1004</guid>
		<description><![CDATA[Today I decided to change everything, a more dynamic Applebyte, a new friendly me. I&#8217;m so hurt, God allowed thing to happened in my life. One thing I realized that God the only one being whom never betrayed me nor forsaken me. He will be the source of this change. He will be my inspiration [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/06/new-applebyte-new-me.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
