Apple Website Developer

HTML 5 Video Accessibility

Monday, August 9th, 2010 | Tags:

Graphic Illustration of HTML5 Video!

TDP Pixatogoly IPAD Contest

Friday, August 6th, 2010 | Tags: ,

Open to multimedia students, curious developers, illustrators and Apple fan developer. Yup… be a part of The Design People IPAD Touch Challenge.

The magic of get url

Monday, June 21st, 2010 | Tags:

Yup, to combined flash to Jquery used the get url..
1. On Flash
AS2

stop();
getURL(“javascript:applebyte();”);

AS3

stop();
import flash.external.ExternalInterface;
ExternalInterface.call(“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() {
});

Applebyte Preloader AS3

Saturday, June 19th, 2010 | Tags:

1. Create your movieclip and textfield. For this recipe, you’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);
}
}

Apple Flash AS2 Preloader

Friday, June 18th, 2010 | Tags:

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. [...]

Apple love jQuery slideshow

Tuesday, June 15th, 2010 | Tags:

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 [...]

Applebyte excited about Microsoft Kinect

Monday, June 14th, 2010 | Tags: ,

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 [...]


Go Up