banner Burada Havadan Sudan Bahsedip yormadim sizi zmler ve sonular var

Updates: 2.5 surumune getim denemelerim devam ediyor. More...
Apr
24th

MovieClip.prototype.ZoomDiv

Yazar: admin | dosya Actionscript

MovieClip.prototype.ZoomDiv = function (pDim, pTempo)
{
        this.onEnterFrame = function ()
        {
                if (this._xscale < pDim - 1 / pTempo)
                {
                        this._xscale = this._xscale + (pDim [...]


Apr
24th

actionscript MovieClip.prototype.ZoomAdd

Yazar: admin | dosya Actionscript

Otomatil zoom için prototype

MovieClip.prototype.ZoomAdd = function (pOption, pDim, pTempo)
{
        if (pOption)
        {
                this.onEnterFrame = function ()
                {
                        if (this._xscale < pDim)
        [...]


Apr
24th

Actionscript ile style verme ve text olusturma Creating TextField by AS

Yazar: admin | dosya Actionscript

Actionscript ile style verme ve text olusturma Creating TextField by AS

_root.createTextField("newField",1,100,100,300,300);
with (newField){
       
        background = true;
        backgroundColor=0×8888FF;
        border = true;
        borderColor = 0×000000;
        autoSize = "left";
        wordWrap = true;
    [...]


Apr
24th

Alternatif Tween Class “MC Tween2″

Yazar: admin | dosya Actionscript

Flash’ın Kendi tween classının kolaylastırılmıs ve optimize edilmiş halı oldukca basit kulanıslı kb olarak yer kaplamıyor. Kulanım ornekleri ve link devamında..


Apr
24th

Actionscript ile Sahnenin tam ortasını hesaplamak

Yazar: admin | dosya Actionscript

Genelde problem olan ve sık ıhtıyac duyulan bir kod .Sahnenin tam ortasını hesaplayıp bu movie clipleri dizmek Basit bir function ile kolay hale gelıor

MovieClip.prototype.centerClip = function (){
this._y = this._parent._height / 2 - (this._height / 2);
this._x = this._parent._width / 2 - (this._width / 2);
};
// USAGE:
// Center MovieClip
// by: Gustavo Perez
// aka pcMan [...]


Apr
24th

Action Script Butun MovieclipLerin Ekrandeki yeri ve isimleri

Yazar: admin | dosya Actionscript

Actionscript Samples , action scripts ile Butun moviecliplerin ekrandaki yerlerını ve ozeliklerine ulasmak. Buna  bazı zamanlarda moviecliplerin dogru kordinatlarda bulunup bulunmadıgını kontrol etmek  ıcın ıhtıyacımız olabiliyor.
for (name in _root) {
if (typeof (_root[name]) == “movieclip”) {
_root[name]._x = Math.ceil(_root[name]._x)
_root[name]._y = Math.ceil(_root[name]._y)
trace(_root[name]);
}
}