Wallaby : Convert fla to html5
Posted by kkool | Filed under Flash Actionscript & Design, Web Design & Web Develope

เจ้าจิงโจ้น้อย Wallaby โปรแกรมหน้าตาบ้านๆจาก Adobe Labs
แต่ความสามารถไม่ได้บ้านด้วยเลย
เพราะมันสามารถแปลไฟล์ Flash (fla) มาเป็น html5 ง่ายๆซะงั้น
โดย Gen ออกมาเป็น .html .js ที่มี jQuery เป็นตัวขับเคลื่อน
จากกาทดสอบแล้ว Flash ดาดๆทั่วไปพอได้ แต่ถ้า actionscript ล้ำลึกมากก็ไปไม่เป็นเหมือนกัน
ยังคงต้องได้รับการพัฒนาอีกพอสมควร
ลองไป DL มาลองกันเนอะ Wallaby
Tags: adobe, fla, Flash Actionscript & Design, html5, wallaby
Flash image slideshow
Posted by kkool | Filed under Flash Actionscript & Design

Link : Flash Image Slideshow
Tags: css, Flash image slideshow
Flash Project เจ๋งๆที่พัฒนาด้วย SWFaddress
Posted by kkool | Filed under Flash Actionscript & Design, Web Design & Web Develope

SWFaddress เป็น Javascript library เล็กๆที่จะช่วยคุณสร้างสรรค์ virtual URLs ของ Flash และ Ajax
บอกได้คำเดียวว่า แร๊งงงงง
Link: Swfaddress and best samples
Tags: ajax, Flash Actionscript & Design, Javascript, swfaddress
รวบรวม Flash Component ใช้งานได้ดีทีเดียว
Posted by kkool | Filed under Flash Actionscript & Design

Link: xuroqflash.com
Tags: Flash Actionscript & Design
Flash Tute: Circular XML Menu เมนูวงล้อหมุนๆ เปลี่ยนรูป,ข้อความด้วย XML
Posted by kkool | Filed under Flash Actionscript & Design

เป็นรูปแบบการแสดงเมนูแบบวงล้อมหมุนๆ สามารถใช้งานกับ scroll mouse ได้ สามารถเปลี่ยนรูปเมนูและเปลี่ยนข้อความบนเมนูได้ ด้วยความสามารถของ XML เหมาะที่จะเอาไปใช้งาน CD Display เป็น Interactive ที่ดึงความสนใจของ User ได้ดี
ตามมาดูกันครับ Read more … »
Tags: Flash Design & Flash Actionscript, Menu, XML
Flash Tute: Photo Gallery Actionscript 3 สวยงาม เด้งๆ ในกรอบเดียว
Posted by kkool | Filed under Flash Actionscript & Design

ในครั้งนี้เป็นเรื่องของการทำ Photo Gallery จาก FLash AS3 ผ่าน xml ครับ
จะพิเศษหน่อยตรงที่มี Effect เด้งๆของภาพ ได้บรรยากาศที่แตกต่างไป อิอิ
มาดูกันเลยครับ
Download ZIP: Photo Gallery AS3
Flash Actionscript: Digital Clock
Posted by kkool | Filed under Flash Actionscript & Design

Flash Actionscript: Digital Clock
เป็นการอ่านค่าเวลาจากเครื่อง Client ขำๆครับ เอาไปใช้แต่งเว็บกัน หรือจะเขียน CD ก็เจ๋ง
Script เวลา
var date=new Date();
time=new Date(); // time object
var seconds = time.getSeconds();
var minutes = time.getMinutes();
var hours = time.getHours();
var dayweek = date.getDay();
var dayweek_str:String;
if (days<10){
days_str=”0″+days;
}
else{
days_str=days;
}
if (hours<12) {
ampm = “AM”;
}
else{
ampm = “PM”;
}
if(hours>12){
hours = hours - 12;
}
if(hours == 00){
hours = 12;
}
if(hours<10){
hours = “0″ + hours;
}
if(minutes<10){
minutes = “0″ + minutes;
}
if(seconds<10)
{
seconds = “0″ + seconds;
}
switch (dayweek){
case(0):dayweek_str=”SUN”; break;
case(1):dayweek_str=”MON”; break;
case(2):dayweek_str=”TUE”; break;
case(3):dayweek_str=”WED”; break;
case(4):dayweek_str=”THU”; break;
case(5):dayweek_str=”FRI”; break;
case(6):dayweek_str=”SAT”; break;
}
clock_txt.text = hours + “:” + minutes + “:” + seconds;
ampm_txt.text = ampm;
clock_back_txt.text = “88:88:88″;
date_txt.text=dayweek_str;
Download FLA: Flash Digital Clock
Please enable Javascript and Flash to view this Flash video.
Tags: flash actionscript, flash digital clock
Flash Tute : Lava Actionscript
Posted by kkool | Filed under Flash Actionscript & Design

สวยดีครับ รูปแบบคือเป็นก้อนกลมๆ ตก,ไหลลงมาเรื่อยๆ เอาไว้ทำดูสวยๆ
ลองมาดูวิธ๊ทำกันครับ Read more … »




