A Flash Developer Resource Site

Results 1 to 9 of 9

Thread: Is this done with KoolMoves?

  1. #1
    Junior Member
    Join Date
    Oct 2006
    Location
    Scottsdale, AZ
    Posts
    13

    Is this done with KoolMoves?

    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

  2. #2
    Senior Member
    Join Date
    Jul 2001
    Location
    Tinley Park, IL
    Posts
    702
    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.
    My Sites: Gaming Site Nightshade Studios MyKM Tutorials

    --------------------------------------------------
    What I'm using: Gimp, Koolmoves, Sepy, HTML-Kit, Inkscape

  3. #3
    Junior Member
    Join Date
    Oct 2006
    Location
    Scottsdale, AZ
    Posts
    13
    I've seen this effect used on different sites so I assume there's a program that will produce it.

  4. #4
    KoolMoves Moderator blanius's Avatar
    Join Date
    Jul 2001
    Location
    Atlanta GA
    Posts
    5,244
    It's not a default in Koolmoves as far as I can tell, but it can be done in actionscript in KM

  5. #5
    up to my .as in code Chris_Seahorn's Avatar
    Join Date
    Dec 2004
    Posts
    4,389
    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"

  6. #6

  7. #7
    undead creature necromanthus's Avatar
    Join Date
    Feb 2002
    Location
    ROM
    Posts
    1,890
    Quote Originally Posted by Web Design West
    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

  8. #8
    Senior Member
    Join Date
    Dec 2002
    Location
    Netherlands
    Posts
    1,632
    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.
    Code:
    // 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;
    }

  9. #9
    up to my .as in code Chris_Seahorn's Avatar
    Join Date
    Dec 2004
    Posts
    4,389
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center