Home / Components / Design & Effects / Water Effect /

Water Effect

148 purchases

christ Design & Effects Water Effect This is made using the BitmapData methods and BitmapFilters for Actionscript 2.0, and later I will update this code to Actionscript 3.0 $5 http://www.flashcomponents.net/component/water_effect.html http://www.flashcomponents.nethttp://u1.flashcomponents.net/components/small/800_1.png

License:

By purchasing and downloading this license, you are entitled, as buyer, to use  the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website&nbs... [+]

> View graphic table with full license features

$5.00

buy now

Package includes: FLA

Flash Version: Flash CS3, Flash CS4

Viewable with: Flash Player 8

Action Script: ActionScript 2.0

Product ID:F0800800

Author:

christ

christ avatar

I'm a Senior Flash Developer, I love flash so much......................................................................

Tags:

 

Recently viewed:

Page Flip FX
magneticMenu
photoSplash
Magic Flame
XML Banner

Please install flash first.

This is my first product on FlashComponents, if you have some other requirement, you can contact me.

20090407 updated: add the two parameters for easy to use, you can adjust the "sw", "sh" variables that can change the bitmap size.

$5.00

buy now

License:

Personal License By purchasing and downloading this license, you are entitled, as buyer, to use  the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website or other multimedia project not generating income ), your personal work or work for a client. You may not redistribute / resell the functionality provided with the purchased product without the author's and / or FlashComponents.net written permission, but you may modify its content. In case you want to use the product for a commercial project then you will have to buy the 'Commercial License'.

Usage Terms: Personal Commercial Multiple
Use in ONE SINGLE NON-COMMERCIAL project
Unlimited use in the same project
Use in ONE SINGLE COMMERCIAL project
For your client's ONE SINGLE COMMERCIAL project
MULTIPLE COMMERCIAL projects
For your client's MULTIPLE COMMERCIAL projects

Related components:

Falling Stars Effect

Stars Falling from the sky and leaving star dus...[+]

More >>

Star Glowing Text Effect

Re- sizable Star Glowing Text Effect made in Ac...[+]

More >>

Banner Rotator & Water Effect

If you want to promote your website or your bus...[+]

More >>

1 / 22

Featured components:

Product Image Gallery XML v2

This is an image gallery having all content tak...[+]

More >>

HTML / XML Video List AS2 - v1 ( & FLV Player )

Highly customizable HTML / XML driven video lis...[+]

More >>

3D - Yeah! Gallery v(2.0)

3D Yeah! Gallery v(2.0) is a sophisticated ,...[+]

More >>

16 comments

Add comment

  • May I change the effect of the picture when the mouse is over it?

    May I change the width and the height of it ?



    #  /  PM  /  posted on Aug 08, 2008
  • How do I change the position on the stage of the bitmap and the size?


    Thanks



    #  /  PM  /  posted on Mar 16, 2009
  • If you want to change the position of the bitmap you firist need to add a MovieClip on the stage, then change the MovieClip position.
    like this:
    //
    this.createEmptyMovieClip(“bmp1”, this.getNextHighestDepth());
    bmp1.attachBitmap(output,0);
    bmp1._x = 50
    bmp1._y = 50
    //
    You can directly change the size of the bitmap on the Library.


    perhaps you would like to change the 2 parameters for effect area:
    //var output = new flash.display.BitmapData(*256 , 256,* true, 128);
    or
    //output.applyFilter(surface,new flash.geom.Rectangle(0, 0, 256, 256 ),origin,water);




    #  /  PM  /  posted on Mar 16, 2009
  • How? I'm trying to apply my own image to the Flash file. My image is 1000 x 240. I can change the size of the "between", "normal", and "effect". But I assume to change the image itself I need to replace the "river" bitmap with my own. How is this done? When I inspect the bitmap in the Library, I do have the option of replacing the image but I can't fix the size... The sizing options are grayed out. Please help!

    Thanks,
    Daveybones



    #  /  PM  /  posted on Mar 31, 2009
  • Hi Thanks for the great code for the ripple effect. My problem is my image size 555px x 150px. I can change the document size but on preview it is only showing the portion of my image.


    I have changed the following line but did nothing to it. Can you please help? A little commenting in the code would greatly appreciated and would help greatly.


    output.applyFilter(surface,new flash.geom.Rectangle(0, 0, 555, 150),origin,water);



    #  /  PM  /  posted on Apr 06, 2009
  • I’m sorry when I design it did not make notes. so give everyone a lot of confusion. Now I updated the source code , if you need to change the image size you only need to adjust the two variables like below:
    var sw:Number = 256; //picture’s width
    var sh:Number = 256; //picture’s height



    #  /  PM  /  posted on Apr 07, 2009
  • Is it possible to get a AS3 version of this effect?
    Is it possible to use any other background image?
    Would it work on a 1280×768 size without lag?



    #  /  PM  /  posted on May 14, 2009
  • This effect will update for as3 version as soon as possible.
    You can use any picture to replace the background image.



    #  /  PM  /  posted on Jul 01, 2009
  • Can i change the settings so that the water ripple occurs on mouse over instead of mouse down?
    Thanks



    #  /  PM  /  posted on Sep 04, 2009
  • How can I change the image and use it on another flash file?



    #  /  PM  /  posted on Nov 08, 2009
  • Very good, very well done, quite simple to edit too !


    But i can’t find … Is there a way to change the … “strength” of the waves ?



    #  /  PM  /  posted on Feb 08, 2010
  • can be use for beckround images for website?



    #  /  PM  /  posted on Apr 28, 2010
  • Like suzzi64 on september from 2009 I ask myself if there is any chance to do it like she says:

    Can i change the settings so that the water ripple occurs on mouse over instead of mouse down?

    and add one more, any way to make ripples not to go through (imagine) an island in the image.... that is my purpose to have your brilliant effect not in the island in my image but in the water surrounding it.

    Thanks and all the best



    #  /  PM  /  posted on Aug 18, 2010
  • Hi Everyone,

    To make this work on Mouse Over instead of Mouse Down replace the code between 24 to 33 with the following:

    var mouseMove = false;
    onMouseMove = function () {
    mouseMove = true;
    };
    onMouseDown = function () {
    onEnterFrame();
    mouseMove = false;
    };
    onEnterFrame = function () {    
    if (mouseMove) {
    

    Cheers



    #  /  PM  /  posted on Sep 24, 2010
  • Howdy, I really love this water ripple effect. Is there any way to use a video/movie clip instead of a bitmap image? Could I change the surface? Any feedback would be much appreciated:)

    Cheers



    #  /  PM  /  posted on Apr 06, 2011
  • plz sent script



    #  /  PM  /  posted on Jul 02, 2011
Please login to post comments.