A Flash Developer Resource Site

Results 1 to 20 of 20

Thread: brp.com - Cool Intro for Bomardier

  1. #1
    kiss designer
    Join Date
    Nov 2002
    Location
    Neenah, WI
    Posts
    77

    Cool Intro for Bomardier | brp.com

    Bombardier presents its new brand identity BRP and showcases it with a pretty cool flash intro. I especially like the stretching effects. Some cool stuff going on here.

    http://www.brp.com/en-CA/

  2. #2
    Senior Member JFlashK's Avatar
    Join Date
    Dec 2000
    Posts
    618
    really nice intro, wonder how it's done...

  3. #3
    Senior Member
    Join Date
    Mar 2002
    Location
    Montreal
    Posts
    597
    Really nice

  4. #4
    free-webmaster-resource.com deamothul's Avatar
    Join Date
    Apr 2003
    Location
    Netherlands
    Posts
    1,475
    thats nice i also wonder how they did that.

  5. #5
    Retired Mod aversion's Avatar
    Join Date
    Jun 2000
    Location
    insomnia
    Posts
    7,917
    I've seen that effect before, put to better use imho.

  6. #6
    free-webmaster-resource.com deamothul's Avatar
    Join Date
    Apr 2003
    Location
    Netherlands
    Posts
    1,475
    Originally posted by aversion
    I've seen that effect before, put to better use imho.
    Any idea how they did that?

  7. #7
    Retired Mod aversion's Avatar
    Join Date
    Jun 2000
    Location
    insomnia
    Posts
    7,917
    To be honest with you no

    I don't think it's imported bitmap animation, I can't remember the other time I used it but there was a discussion about it, maybe if someone can remember the other site you can find the thread.

  8. #8
    kiss designer
    Join Date
    Nov 2002
    Location
    Neenah, WI
    Posts
    77
    Originally posted by aversion
    I've seen that effect before, put to better use imho.
    Hi Aversion,

    I think I remember the site you're refering to. Wasn't it a construction or architect company? I think it had a more 3d effect and was more square than this example. Anyways they both are great.

  9. #9
    Retired Mod aversion's Avatar
    Join Date
    Jun 2000
    Location
    insomnia
    Posts
    7,917
    yeah, sounds familiar, the effect was more central to the site, not just a banner but part of the content transitions.

  10. #10
    Senior Member
    Join Date
    Dec 2002
    Location
    houston
    Posts
    158
    Looks like a basic AE / SCALE WIPE + Wave Filter here and there...
    A similar effect using Scale Wipe can be found at : www.rtrtechnology.com


    Last edited by FLASHLEVEL; 06-16-2004 at 11:45 AM.
    Dash / FL

  11. #11
    free-webmaster-resource.com deamothul's Avatar
    Join Date
    Apr 2003
    Location
    Netherlands
    Posts
    1,475

  12. #12
    Junior Member
    Join Date
    Dec 2000
    Posts
    15
    It's no bitmap anim nessesary to do such things, just fancy masking, repeating, sine waves and fantasy

    Peter

  13. #13
    Senior Member
    Join Date
    Dec 2000
    Location
    Sleeping rough in the kindom of Lurk
    Posts
    139
    Part of the effect, where the picture edges slide in and out is very similar to an effect on

    http://www.chewinggumfortheeyes.com/

    in the second page in the downloads (red & green thumbnail)

  14. #14
    Senior Member
    Join Date
    Aug 2002
    Posts
    262
    I know one site that uses that effect. mercurio. I had asked a while back how that was accomplished, and the answer I got was it wasn't AE.

  15. #15
    the flash popup site you get is nicer i think, even tho the intro for that is kinda.

    Also not loving that logo.

  16. #16
    kiss designer
    Join Date
    Nov 2002
    Location
    Neenah, WI
    Posts
    77
    Originally posted by aversion
    yeah, sounds familiar, the effect was more central to the site, not just a banner but part of the content transitions.
    Found it, at least this is the one I had in mind.

    http://www.pacificinteriors.co.uk/flash/site.html

  17. #17
    Senior Member zakp0's Avatar
    Join Date
    Nov 2003
    Location
    New Zealand
    Posts
    510
    Code:
    Stretcher = function(){}; 
    Stretcher.prototype = new MovieClip(); 
    Stretcher.prototype.onLoad = function(){ 
        this.attachMovie(this.linkID, "Grfx", 10); 
        this.createEmptyMovieClip("Stretch", 20); 
        this.Stretch.attachMovie(this.linkID, "Grfx", 10); 
        this.Stretch.createEmptyMovieClip("Mask", 20); 
        trace("this.Stretch.Mask = "+this.Stretch.Mask); 
        with(this.Stretch.Mask){ 
            beginFill(0); 
            lineTo(1, 0); 
            lineTo(1, this.grfx._height); 
            lineTo(0, this.grfx._height); 
            endFill(); 
        } 
        this.Stretch.Grfx.setMask(this.Stretch.Mask); 
        this.step = 1; 
        this.x = 0; 
    } 
    Stretcher.prototype.onEnterFrame = function(){ 
        with(this){ 
            x += step; 
            if(x>Grfx._width-1 || x<1)step*=-1; 
            Stretch._x = x; 
            Stretch.Grfx._x = -x; 
            Stretch._xscale = (Grfx._width-x)*100; 
        } 
    } 
    Object.registerClass("Stretcher", Stretcher); 
    // 
    // you need a clip to stretch in the library with a linkageID of "GraphX" 
    // you also need a blank clip in the library with a linkageID of "Stretcher" 
    attachMovie("Stretcher", "Stretcher1", 10, {linkID:"GraphX"});
    There ya go

    Zak.

  18. #18
    Junior Member
    Join Date
    Oct 2002
    Posts
    29
    Hi

    I'm new to actionscripting. Could someone fill in a few details about how to use the above code? (where to paste it?)

    Missing any other details?

    Thanks for the help

    LB

  19. #19
    Senior Member
    Join Date
    Oct 2000
    Posts
    474
    Don't break your head, you can download the source code for the stretcher effect on this website .

    Go to the .FLA section and select Khan's 'Scale Mask Effect'.

    You'll also find some other interesting .fla's on this site. Unfortunately all the other content is in German.

    Cheers,
    Smalco

  20. #20
    Junior Member
    Join Date
    Oct 2002
    Posts
    29
    Smalco

    Thanks! Great resource, I'll check it out. This could REALLY help.

    Take care.

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