Posts Tagged ‘flash’

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

Photoshop and Flash, Apple Real Hero

Thursday, November 20th, 2008 | Tags: , ,

After visiting the YODA (Our Project Management System), accepting the task and some hi/hello on my project managers, my next agenda, visit my favorite designer and flash websites.
Designer Website
1. PS HERO – The author name is Hero, yes he is my real photoshop hero. I really appreciate and in love with his tutorials, freebies [...]

The New UMapper

Tuesday, October 28th, 2008 | Tags:

UMapper is a universal mapping platform that makes it a snap to create engaging maps. Microsoft Virtual Earth, Google Maps, and OpenStreet are all supported.
You can now easily create interactive flash maps, display this map to your Wordpress, Facebook, Myspace, I Google and more. You can even add UMapper to Your Wordpress Blog by installing [...]


Go Up