Archive for April, 2007

Macromedia Labs Alpha anounced!

If you want to get your hands on the new Macromedia Technologies , click here and see them for yourself. They are brand new Flash Player 8.5, Actionscript 3 and Flex family. To develop applications for Flash Player 8.5 and Actionscript 3 , you should download the Flex Builder 2. We have mentioned before about [...]

Flash 9 codename?

The codename for the version 9.0 release of the Flash authoring tool is: “BLAZE”. Macromedia decided to do something they have never been able to do before, they will realese the very early alpha version to public with Flash Player 8.5, spring 2006. We will make some practise for the Actionscript 3.0 before the offical [...]

Flash player 8 is alrady new for many of us but Macromedia anounces Flash Player 8.5 today that focused to the code aspects. So we all know that Flash player 8 focused on the visual improvements of the flash, 8.5 will have all of these features with new Actionscript 3 language which will have faster [...]

When you give an instance name to a button after the first frame it appears.. And than you call the button with that name.. Flash 8 is not find any object in this instance name.. After that I tried to give instance name at the first frame which the button appears.. Than flash 8 found [...]

Appear & Disappear Prototype

This is an _alpha property changer for movieclips that can appear or disapper them smoothly.
Example:
my_Mc.appear();
my_Mc.disappear();

//@Created By Eser Yogurtcu
MovieClip.prototype.appear = function() {
this.onEnterFrame = function() {
if (this._alpha < 101) {
this._alpha += 8;
} else {
delete this.onEnterFrame;
}
};
};
MovieClip.prototype.disappear = function() {
this.onEnterFrame = function() {
if (this._alpha > -1) {
this._alpha -= 8;
} else {
delete this.onEnterFrame;
}
};
};

Today, my company has asked me that can I convert FLV to wmv, avi, mpg etc.. Because they wanted to publish a wmv file on a web page, and it must have small file size, of course After that I search for it, and I see that , FLV file format is very hard [...]