About

a.k.a Dedet

Very curios person
“The important thing is not to stop questioning. Curiosity has its own reason for existing.”
Albert Einstein

Admire beauty
“Beauty is a summation of the parts where nothing is needed to be altered, added, or taken away”
Elio Carletti

Actionscript 3 YouTube Player

Almost like embed youtube player, but with an addition it will display a playlist of your uploaded videos. If you don’t know Actionscript 3, you could still use this application just download the player file in download section. Put your YouTube ID in the “user” element at Setup.xml file. Your uploaded video on YouTube will …

Read more

Simple Count Down Timer Actionscript 3

Just a simple count down timer, you can set the font type, size, and color for the timer. Set the counter in minutes, dispatch an event when the time runs out. example use in timeline import com.irzal.CounDownTimer; var countDownTimer:CountDownTimer = new CountDownTimer(); var arialRounded:ArialRounded = new ArialRounded(); countDownTimer.fontSize = 12; countDownTimer.font = arialRounded; countDownTimer.fontColor = …

Read more

MathEx Class, Math and Statistic Function

The MathEx class is extended from PrimeFactor class. This class have more math calculation function like finding Arithmetic, Geometric sequences, more than two numbers for LCM and GCD, and some statistics function. The MathEx will be update for more math and statistic function. See AS3Doc for more detail about methods and properties. Credits: koneko papercut …

Read more

Find GCD, LCM and Prime Factor Using PrimeFactor Class

The PrimeFactor class can find GCD, LCM prime factor of GCD and LCM, prime factor of a number, and one additional method that could create an array of prime numbers. To find prime factor of a number use of method import com.irzal.PrimeFactor; trace(“Prime factor of 90:”,PrimeFactor.of(90)); //output Prime factor of 90: 2,3,3,5 to find gcd …

Read more

Music class

Music class idea came up when I was creating i2FlashMP3. I want to make a class that can play and load sound, set volume and pan of a sound. Loading, playing and, set sound volume package { import com.irzal.media.Music; import flash.display.Sprite; public class MusicExample extends Sprite { private var music:Music = new Music(); public function …

Read more