This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var nSutun :uint = 5; //Kaç sütun olsun | |
var mKare :MovieClip; | |
var nXspace :uint = 5; //x eksenine göre boşluk | |
var nYspace :uint = 5; //y eksenine göre boşluk | |
function createThumb():void | |
{ | |
for (var i:uint = 0; i < nTotal; i++) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fadeOff(b2:MovieClip):void { | |
Tweener.addTween( b2, { alpha: .1,time: .35, transition: "easeOutQuad", onComplete:clipOff, onCompleteParams:[b2]}); | |
} | |
function clipOff(b3:MovieClip):void { | |
b3.visible=false; | |
} | |
function clipOn(c2:MovieClip):void { | |
Tweener.addTween( c2, { alpha: 1,time: .5, delay:.1, transition: "easeOutQuad"}); | |
} | |
function fadeOn(c3:MovieClip):void { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Your everyday absolute tween that moves movieclip_mc | |
// to 100 on the x axis, taking one second to do so | |
TweenMax.to(movieclip_mc, 1, {x:100}); | |
// A relative tween that moves movieclip_mc to a | |
// position on the x axis 100 units/pixels greater | |
// than movieclip_mc's current position | |
TweenMax.to(movieclip_mc, 1, {x:"100"}); | |
// An absolute tween like the first, but passing in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import flash.events.Event; | |
import flash.events.EventDispatcher; | |
import flash.events.IOErrorEvent; | |
import flash.net.URLLoader; | |
import flash.net.URLRequest; | |
/** | |
* ... |
OlderNewer