AppleByte Blogs

HTML 5 Video Accessibility

Monday, August 9th, 2010 | Tags:
Comments (1) | Print This Article | Email This Article |

Graphic Illustration of HTML5 Video!

TDP Pixatogoly IPAD Contest

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:
Comments (2) | Print This Article | Email This Article |

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

Happy Father’s Day

Sunday, June 20th, 2010 | Tags:
Comments Off | Print This Article | Email This Article |

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:
Comments (3) | Print This Article | Email This Article |

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:
Comments Off | Print This Article | Email This Article |

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:
Comments Off | Print This Article | Email This Article |

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


Go Up