Click to See Complete Forum and Search --> : Is this done with KoolMoves?
Web Design West
05-07-2007, 11:42 PM
Can someone tell me if the transition between images shown on the page below was created with KoolMoves, Swish or another program? Images fade into each other as a grid of squares sweeps across.
http://www.haydonbc.com/
Thanks, Gary
dniezby
05-08-2007, 11:57 AM
Just from looking at it one would not be able to tell you which authoring program they've used.
It could have been.
It could be done though. I know actionscript but this would be beyond my code skills.
Web Design West
05-08-2007, 12:12 PM
I've seen this effect used on different sites so I assume there's a program that will produce it.
blanius
05-08-2007, 10:41 PM
It's not a default in Koolmoves as far as I can tell, but it can be done in actionscript in KM
Chris_Seahorn
05-08-2007, 11:27 PM
Pretty sure that is a senocular based example (though I can't find the exact one). Look through his flash source files for transitions (he has a bunch)
similar to:
http://www.senocular.com/flash/source.php?id=0.182
http://www.senocular.com/flash/source.php?id=0.181
Search Google for "Flash 8 transitions" :thumbsup:
Chris_Seahorn
05-08-2007, 11:40 PM
My bad. It was actionscript.com
My guess is it's this exact component for Flash:
http://www.actionscript.com/Article/tabid/54/ArticleID/flash-8-component-tile-transitions/Default.aspx
Example of all effects running here:
http://www.flex-fanatic.com/examples/GridEffects3.swf
necromanthus
05-09-2007, 05:28 AM
Can someone tell me if the transition between images shown on the page below was created with KoolMoves, Swish or another program? Images fade into each other as a grid of squares sweeps across.
http://www.haydonbc.com/
http://necromanthus.com/KoolMoves/SlideShow2.html
note: FUN file available
w.brants
05-09-2007, 02:32 PM
In case someone cares, the code below is an example of replacing the gui chosen effects of a slideshow component with the one asked for. The slideshow component is expected to be named slideshow1. Remus' example is great, performs better (less cpu load) and only requires flash 7. The code below is just to show it's possible to add a custom effect to the slideshow component. Most code is used to create the bitmap image representing the effect.// effect code
sw = slideshow1._miw;
sh = slideshow1._mih;
bs = 50;
cols = Math.ceil(sw / bs);
rows = Math.ceil(sh / bs);
_global.KC8_Transit0 = new flash.display.BitmapData(sw + 1,sh + 1,false);
mf = 255 / ((cols-1) * 5 + bs / 2 - 1);
for (col = 0; col < cols; col++){
for (i = 0; i < bs / 2; i++){
KC8_Transit0.fillRect(new flash.geom.Rectangle(col * bs + i, i, bs - i * 2, bs - i * 2),(col * 5 + bs / 2 - i - 1)*mf);
}
}
for (row = 0; row < rows; row++){
KC8_Transit0.copyPixels(KC8_Transit0, new flash.geom.Rectangle(0,0,cols * bs, bs),new flash.geom.Point(0,row * bs));
}
// assign user effect to slides
slideshow1.onLoad = function(){
for (var i = 0; i <= this._lastslide; i++) this._slides[i][0] = 0xf80ffcc0;
}
Chris_Seahorn
05-09-2007, 04:34 PM
Now that I see Remus's link...that has to be the one I vaguely remembered. Jolie kind of sinches it and is definitely the one I had in my head as having seen previously now that I see it again.
Sorry for getting that wrong Remus....it's been a while since I saw it. :thumbsup:
flashkit.com
Copyright WebMediaBrands Inc., All Rights Reserved.