- Your logo
- Buttons: Home, About, Products, Contact
- Content: Basic text and image
- Copyright text


Bookmark and Share

Flash array sample

April 29th, 2010

Actionscript 3.0:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var myArray:Array = new Array();
 
addItem("A","1234567","a@flafolder.com");
addItem("B","1234568","b@flafolder.com");
addItem("C","1234569","c@flafolder.com");
 
function addItem(myName:String, myPhone:String, myMail:String) {
	myArray.push({no:myArray.length, name:myName, phone:myPhone, email:myMail });
}
 
traceItem(1);
 
function traceItem(itemNo:Number) {
	trace(myArray[itemNo].name);
	trace(myArray[itemNo].phone);
	trace(myArray[itemNo].email);
}
Bookmark and Share

Flash image gallery

April 17th, 2010

- Easy to use
- Actionscript 3.0
- Smooth effect
- XML Driven


Bookmark and Share

Flash tab menu component

March 30th, 2010

- Easy to use
- Actionscript 3.0
- Smooth effect
- XML Driven



Bookmark and Share

Flash image menu component

March 30th, 2010

- Easy to use
- Actionscript 3.0
- Smooth effect
- XML Driven



Bookmark and Share

Flash website template 2

March 26th, 2010

- Easy to use
- Actionscript 3.0
- Full XML driven
- Resizeable
- PNG logo
- Horizontal menu and sub menu
- Banner rotator
- Content (html text, png, jpg, swf)
- Copyright text


Bookmark and Share