Archive for June, 2010

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() {
});

Happy Father’s Day

Sunday, June 20th, 2010 | Tags:

This father’s day, I never been so lonely and wishing my father was here. Maybe he will console me and always he will said “Apple andyan na ko.”
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 [...]

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

McDo Playland – Applebyte says “I’m lovin it”

Wednesday, June 16th, 2010 | Tags:

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’s Circular Quay.
One Monday it suddenly appeared, the biggest McDonald’s Playland ever constructed while it suited to clad adults broke their Monday routine with a little time spent on the giant [...]

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