Archive for May, 2010

Apple AS2 XML Slideshow

Thursday, May 20th, 2010 | Tags:

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<(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>0) {
p–;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
desc_txt2.text = description2[0];
btnLinks(p);
slideshow();
}
}
function slideshow() {
if [...]

Learn Basic Flash From Apple

Sunday, May 16th, 2010 | Tags:

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…
First day of class was yesterday and it was amazing. We have tackled [...]

Comelec show unstable, unreadiness!

Monday, May 10th, 2010 | Tags:

Philippine Election 2010, the first automation election. So sad, last week the Compact Flash of PCOS machine failed on testing. The new Compact Flash was delivered throughout the nations still not yet completed this Monday morning.
While the suppose online voters list that provided by Comelec cannot be access due of Comelec bandwidth limitation. Ooops, the [...]

Applebyte touched iPad

Sunday, May 9th, 2010 | Tags:

Last Friday, Perry brought Tiger’s iPad on my desk… My first impression… 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 [...]

Design for your delight in Grid Based

Saturday, May 8th, 2010 | Tags:

Web designers found their salvation in Grid System to create appealing and web standard compliance website. The growing influence of traditional print design techniques on the Web makes gives more freedom and artistic flow. The CSS based grid frameworks (like 960 Grid System and Blueprint) have emerged and gained popularity. Yes, you can now [...]


Go Up