hybrid101
January 14th, 2006, 08:51 AM
www.hedkandi.com (http://www.hedkandi.com)
those vector illustrations are awesome! try searching for them in the site
thats all folks
January 14th, 2006, 11:51 PM
How is that header done?
minimalistik
January 15th, 2006, 12:15 AM
The illustrations are done by Jason Brooks, he has been creating them for Hed Kandi for quite a while now with all the cd/packaging.
.soulty
January 15th, 2006, 06:15 PM
dig the sounds, nice site too. effect for the header was probably created in After effects.
petremetre
January 16th, 2006, 04:10 AM
this is the source for the header effect
Stage.scaleMode = "noScale";
Stage.showMenu = false;
import flash.display.BitmapData;
import flash.geom.*;
import mx.transitions.Tween;
sourceContainer = createEmptyMovieClip("sourceContainer", 2);
copyContainer = createEmptyMovieClip("copyContainer", 1);
maskContainer = createEmptyMovieClip("maskContainer", 3);
sourceBitmap = BitmapData.loadBitmap("sourceImage");
this.sourceContainer.attachBitmap(sourceBitmap, this.getNextHighestDepth());
copyBitmap = new BitmapData(sourceContainer._width, 1, false, 0x000000);
copyContainer.attachBitmap(copyBitmap, this.getNextHighestDepth());
maskBitmap = new BitmapData(sourceContainer._width, sourceContainer._height, false, 0xFF0000);
maskContainer.attachBitmap(maskBitmap, this.getNextHighestDepth());
sourceContainer.setMask(maskContainer);
copyContainer._height = sourceContainer._height;
var maskTween = new Tween(maskContainer, "_y", mx.transitions.easing.Strong.easeInOut, sourceContainer._height, 0, 150);
maskTween.FPS = 50;
maskTween.onMotionChanged = function() {
copyPosition = Math.round(this.position);
copyRect = new Rectangle(0, copyPosition, sourceContainer._width, 1);
copyPoint = new Point(0, 0);
copyBitmap.copyPixels(sourceBitmap, copyRect, copyPoint);
};
maskTween.onMotionFinished = function() {
maskTween.yoyo();
};
sourceImage = the linkage name of the imported bitmap
it is not mine ,i cant remember where i find it but i think so from ultrashock
thats all folks
January 16th, 2006, 10:48 AM
Thanks for the code I'll give a try!!!
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.