-

  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (1)
  • (1)
  • (0)
  • (0)
  • (1)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (0)
  • (85)
  • - (25)
  • - . (2)
  • (427)
  • (58)
  • (87)
  • (8)
  • (6)
  • (60)
  • (4)
  • (38)
  • (8)
  • (20)
  • (3)
  • (7)
  • (82)
  • (182)
  • (242)
  • (52)
  • () (13)
  • (31)
  • (49)
  • (7)
  • - (39)
  • (208)
  • (310)
  • (4)
  • , ,.. (472)
  • (102)
  • (11)
  • (51)
  • (127)
  • (5)
  • (181)
  • ... (2)
  • (19)
  • (5)
  • (173)
  • (4)
  • (18)
  • ... (47)
  • (37)
  • (15)
  • (138)
  • (3)
  • ( ) (8)
  • (4)
  • (2)
  • (3)
  • (221)
  • (4)
  • (143)
  • (3)
  • , ... (57)
  • (1)
  • (87)
  • - ... (5)
  • (91)
  • (2)
  • ,... (42)
  • (91)
  • (20)
  • - (7)
  • ... (25)
  • . (4)
  • . . (162)
  • (2)
  • ... (81)
  • (1)
  • (185)
  • (28)
  • - (27)
  • (4)
  • (4)
  • (87)
  • (11)
  • (68)
  • ,,HTML ... (115)
  • (33)
  • (224)
  • (94)
  • (124)
  • (2)
  • (70)
  • - (27)
  • (117)
  • (25)
  • ,... (34)
  • . (6)
  • (131)
  • ... (240)
  • (79)
  • (12)
  • (4)
  • (26)
  • (86)
  • (2)
  • (10)
  • (99)
  • (246)
  • , ... (221)
  • (87)
  • (35)
  • (5)

 -

- + - (0)

- + >>>   ...

. . - (0)

. .

- (0)

  ...

- (0)

. - (0)

. “” 4,5 ...

 -

-

 -

  •      ^_^ Html-. ,
  •     - - . : Internet Explorer 6, Fire Fox 1.5, Opera 9.5, Safari 3.1.1 JavaScript.
  •     . :) .

 -

, .

 -

 - e-mail

 

 -

( : 2) ___ _
( : 3) __ _ __

 -

 LiveInternet.ru:
: 25.06.2012
: 6759
: 2116
: 14635

:


Adobe Flash CS6 -

, 14 2015 . 17:16 +
_ Adobe Flash CS6 -

, , , , , ...))
( )



novprospekt TweenLite jzayka . ...))


-,
Adobe Flash CS6

Adobe Flash CS6 Portable
, Windows 7, 64 .

.
( ). " "


gs .

4112125_gs.rar

, .



. . Adobe Flash CS6







10.jpg








( , ...))) -:

// TweenLite
import gs.*;
import gs.easing.*;

//
const IMAGE_PIECE_WIDTH:uint = 50;
const IMAGE_PIECE_HEIGHT:uint = 43;

// ,
var imagePieces:Number = 0;
picture.visible=false;
completeHandler();
function completeHandler():void {

// bitmap data
var imageTextureMap:BitmapData = new BitmapData(picture.width,picture.height);
imageTextureMap.draw(picture);
//
var columns:Number = Math.ceil(imageTextureMap.width / IMAGE_PIECE_WIDTH);
var rows:Number = Math.ceil(imageTextureMap.height / IMAGE_PIECE_HEIGHT);

//
for (var i = 0; i < columns; i++) {

//
for (var j = 0; j < rows; j++) {

// -
var imagePieceHolder:MovieClip = new MovieClip();

// , bitmap data
// -.
var imagePiece:Bitmap = new Bitmap();
imagePiece.bitmapData = new BitmapData(IMAGE_PIECE_WIDTH,IMAGE_PIECE_HEIGHT);

// - .
// (1,1) ,
// . (
// ).
imagePiece.bitmapData.copyPixels(imageTextureMap,
new Rectangle(i * IMAGE_PIECE_WIDTH, j * IMAGE_PIECE_HEIGHT,
IMAGE_PIECE_WIDTH, IMAGE_PIECE_HEIGHT),
new Point(1,1));

//
imagePieceHolder.addChild(imagePiece);

// .
// , -.
imagePieceHolder.x = i * IMAGE_PIECE_WIDTH;
imagePieceHolder.y = j * IMAGE_PIECE_HEIGHT;

// ( )
imagePieceHolder.origX = imagePieceHolder.x;
imagePieceHolder.origY = imagePieceHolder.y;

//,
imagePieceHolder.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);

//
addChild(imagePieceHolder);

//
imagePieces++;
}
}
}
// ,
function mouseOverHandler(e:Event):void {

//
var imagePieceHolder = (MovieClip)(e.target);

// target
var randomX = Math.random() * 1000 - 500;
var randomY = Math.random() * 1000 - 500;
var targetX = imagePieceHolder.x + randomX;
var targetY = imagePieceHolder.y + randomY;

// , TweenLite.
// "outTweenFinished()" .
TweenLite.to(imagePieceHolder, 1, {x:targetX, y:targetY, onComplete:outTweenFinished, onCompleteParams:[imagePieceHolder]});

// display.
// , .
setChildIndex(imagePieceHolder,imagePieces - 1);

// MOUSE_OVER
imagePieceHolder.removeEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
}

// ,
function outTweenFinished(imagePieceHolder:MovieClip):void {

//
var origX = imagePieceHolder.origX;
var origY = imagePieceHolder.origY;

//
TweenLite.to(imagePieceHolder, 1, {x:origX, y:origY, onComplete:inTweenFinished, onCompleteParams:[imagePieceHolder]});
}

// ,
function inTweenFinished(imagePieceHolder:MovieClip):void {

// MOUSE_OVER
imagePieceHolder.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);

}








! .
,
, ,



, . . !!!


, :

_



_







LiSu



_



Lyudmila_Spring




"* ":

1 -
2 - - ...
...
22 - - -
23 -
24 - Adobe Flash CS6 -
25 - 3D flash
26 - - 1
...
31 - ...
32 - Portable Flash Effect Maker Pro v5.01
33 - - Sothink SWF Quicker





: [1] []
 

:
: 

: ( )

:

  URL