<?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 &#187; Apple Website Developer</title>
	<atom:link href="http://applebyte.org/category/apple-website-developer/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>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>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>Apple AS2 XML Slideshow</title>
		<link>http://applebyte.org/2010/05/apple-as2-xml-slideshow.php</link>
		<comments>http://applebyte.org/2010/05/apple-as2-xml-slideshow.php#comments</comments>
		<pubDate>Thu, 20 May 2010 15:31:02 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=1041</guid>
		<description><![CDATA[Some few tricks on simple flash xml slideshow on Action Script 2.
1. The Slideshow

function firstImage() {
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[0], 1);
desc_txt.text = description[0];
desc_txt2.text = description2[0];
btnLinks(0);
slideshow();
}
}
function nextImage() {
if (p&#60;(total-1)) {
p++;
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
desc_txt2.text = description2[p];
btnLinks(p);
slideshow();
}
}
}
function prevImage() {
if (p&#62;0) {
p&#8211;;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
desc_txt2.text = description2[0];
btnLinks(p);
slideshow();
}
}
function slideshow() {
if [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/05/apple-as2-xml-slideshow.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Basic Flash From Apple</title>
		<link>http://applebyte.org/2010/05/learn-basic-flash-from-apple.php</link>
		<comments>http://applebyte.org/2010/05/learn-basic-flash-from-apple.php#comments</comments>
		<pubDate>Sun, 16 May 2010 09:17:59 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=981</guid>
		<description><![CDATA[Yeah! Applebyte is now conducting a free Flash 101 Tutorial at NCF, from May 15 to June 5, 2010. Four Saturday(s) at 1pm, I will be teaching basic of Flash which includes Basic Tweening, Effects, Video and Sound, PSD to Flash and more&#8230;
First day of class was yesterday and it was amazing. We have tackled [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/05/learn-basic-flash-from-apple.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Applebyte touched iPad</title>
		<link>http://applebyte.org/2010/05/applebyte-touched-ipad.php</link>
		<comments>http://applebyte.org/2010/05/applebyte-touched-ipad.php#comments</comments>
		<pubDate>Sun, 09 May 2010 01:58:09 +0000</pubDate>
		<dc:creator>applebyte</dc:creator>
				<category><![CDATA[Apple Website Developer]]></category>
		<category><![CDATA[My iPod]]></category>
		<category><![CDATA[iTouch]]></category>

		<guid isPermaLink="false">http://applebyte.org/?p=970</guid>
		<description><![CDATA[Last Friday, Perry brought Tiger&#8217;s iPad on my desk&#8230; My first impression&#8230; HUGE! The bulk of its surface is taken up by a 9.7-inch, 1024 x 768, capacitive, multi-touch LED-backlit display surrounded by a glossy black bezel that some will say is too wide. Well for me, If I decided to have the medium-sized everyday [...]]]></description>
		<wfw:commentRss>http://applebyte.org/2010/05/applebyte-touched-ipad.php/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
