Sunday, October 11, 2009

Flash + CMS webside

This is another website that we created on flash with CMS....

Thursday, October 1, 2009

Attach a Background Music and handling its events

without a background music a flash website is incomplete so this is the script to handle the background sound in a flash and we can also use multiple music also....


var bgSound:Sound = new Sound();
bgSsound.loadSound("music.mp3", true);
this.play_mc.onRelease = function() {
var numSecondsOffset:Number = (bgSound.position/1000);
bgSound.start(numSecondsOffset);
};
this.stop_mc.onRelease = function() {
stopAllSounds();
};