Archive for the ‘Experiences’ Category

Rain or Snow Effect

This actionscript code can be utilised to get a rain or snow effect in flash, you can add some wind or other features for more reailstic visualty. My source Files uses this code to make a “raining star” effect. If you need help about this example, feel free to leave your comments here. [Edit] Because [...]

This example gets 4 images (jpg) and its texts from XML file and than loads them to the stage. Dynamic image backgrounds resizes automatically according to the loaded image width. You can expand the features of this image gallery ; this is just a small example for you to get the way . Source Files
Have [...]

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 [...]