Archive for the ‘Actionscript’ Category

Actionscript 3 Preloading

Wednesday, October 22, 2008 17:34 No Comments

Actionscript 3 için oldukca basit bir preloading

This was posted under category: Actionscript

MC Titretme efecti Vibration effect Actionscript Movieclip

Thursday, April 24, 2008 16:12 No Comments

MovieClip.prototype.vibration = function(staerke) {         this.onEnterFrame = function() {                 this._x = Math.sin(a)*staerke+100;                 this._y = Math.cos(a)*staerke+100;                 a++>=10 ? a=0 : null();         }; }; //usage; mc3.vibration(1); [...]

This was posted under category: Actionscript

MovieClip.prototype.ZoomDiv

Thursday, April 24, 2008 15:56 No Comments

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

This was posted under category: Actionscript

actionscript MovieClip.prototype.ZoomAdd

Thursday, April 24, 2008 15:55 No Comments

Otomatil zoom için prototype MovieClip.prototype.ZoomAdd = function (pOption, pDim, pTempo) {         if (pOption)         {                 this.onEnterFrame = function ()                 {                         [...]

This was posted under category: Actionscript

Actionscript ile style verme ve text olusturma Creating TextField by AS

Thursday, April 24, 2008 15:31 No Comments

Actionscript ile style verme ve text olusturma Creating TextField by AS _root.createTextField("newField",1,100,100,300,300); with (newField){                 background = true;         backgroundColor=0x8888FF;         border = true;         borderColor = 0×000000;         autoSize = "left";         [...]

This was posted under category: Actionscript

Alternatif Tween Class “MC Tween2″

Thursday, April 24, 2008 15:26 No Comments

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

This was posted under category: Actionscript