ActionScript 3.0 :: Make A Cool Water Effect Using Bitmap Data And A Displacement Filter?
Jun 9, 2009
I found a tutorial on how to make a cool water effect in as3 using bitmap data and a displacement filter. It works great but it is very heavy on the computer.
here is my code
Code:
var bmd:BitmapData = new BitmapData(700, 398);
var dmf:DisplacementMapFilter = new DisplacementMapFilter(bmd, new Point(0,0), 1, 2, 10, 30);
var p1:Point = new Point(0, 0);
var p2:Point = new Point(0, 0);
[code]....
View 2 Replies
Similar Posts:
Feb 20, 2004
Can anyone tell me how to make a cool water ripple effect? I saw one that I loved on URL... (you'll see it on both the intro and the contact page).Does anyone know how to do that?
View 3 Replies
Jul 29, 2004
Does anyone know how to make this cool image effect its on the title screen to this game (megaman vs ghosts goblins[URL]
View 2 Replies
Jan 5, 2010
I've posted this in the AS2 section as well. Just wondering if someone can tell me how to make this awesome water ripple effect, found on this page: [URL] I want it so bad and am nearly going to pay the $3 for it. But thought someone might know how to do it for free ..
View 4 Replies
Aug 3, 2010
I am trying to make a text effect where the colours fill up inside the logo lettering as if water was being poured in. Is there a way of doing this either by Actionscript or some form of advanced masking perhaps?
[Code]....
View 1 Replies
Apr 10, 2009
I found this cool class
[URL]
View 2 Replies
Mar 9, 2010
I'm trying to use the displacement filter with a jpeg image instead of a gradient map. My images are:
1) Background: men2.jpg
2) Map image: men2BN.jpg (same as above, but grayscale and blurred)
3) The image to be displaced: star5_mc
View 1 Replies
Dec 13, 2011
I'm using a DisplacementMapFilter to created a globe-like effect on a flat map. My problem is, I also want to sync some labels to this map. I have the x/y coordinates for their locations on the flat map, but I need to map them to the now-displaced image.
I would like to be able to do this using the BitmapData that contains the displacement map, so that changing the Bitmap changes both the displacement filter and the label locations. Also, the labels will not be static, and accuracy is fairly important.
View 1 Replies
Jan 17, 2012
i got this script from this tutorial. I tried to convert it from AS2 to AS3, but it seems like the displacement filter is only applied once for some reason. After that, the bitmap isn't updated.[code]
View 2 Replies
Mar 10, 2011
I looked at the following example in the AS3 Reference: [URL] It is unclear to me looking at the package example how to apply this in standard ActionScript 3 without packages to a Movie Clip resident in my Library that gets called at RunTime. how I would push the DropShadow filter onto my Movie Clip at RunTime?
View 6 Replies
Aug 18, 2009
I am trying create a displacement effect using this code, but i am getting these error, not able to solve it!import flash.display.BitmapData;
var damper = new flash.display.BitmapData(128, 128, false, 128);
var result = new flash.display.BitmapData(128, 128, false, 128);
var result2 = new flash.display.BitmapData(256, 256, false, 128);
[code].....
View 2 Replies
Jun 19, 2009
I'm a bit stuck looking for a tutorial for a water effect I'm trying to create. Has anyone made a simple random fluid water-effect in Flash, to be applied to one background image?
There's plenty of ripples and rain drops - but my image is taken from within the water, and it would be great to get some animation in there!
View 6 Replies
Oct 6, 2006
i attach a image on what i must make..but i have like a blackout.. so i hoped u can inspire me for some cool effect?please if so help me also to the code? or at least a demo code so i can make me own?
View 4 Replies
Oct 31, 2009
some web page with cool dynamic text effects, better with tutorials.
View 3 Replies
Aug 5, 2009
i am working on a project in which i want to have the water ripple effect when i click the mouse where ever on the stage. so here is the problem i have created a file which produces the water ripple effect all across the stage randomly by using "flash.filters.DisplacementMapFilter " when playing the movie i want the ripples to appear on mouse down state and only one ripple not multiple ripples and exactly at the place where i click. now what i have done is i have put all the script i have in " mouseListener.onMouseDown = function() { " but what happens is the ripples appear when i click but not the whole movie clip for ripple is played its like i have to click fast after each other for the ripple to be continuous and full.what should i do?
View 1 Replies
Sep 9, 2003
how the animation for this flash image was created?
View 11 Replies
Dec 21, 2004
Does anyone know how to do this?: http:[url]...
View 1 Replies
Feb 27, 2011
what was done to create the cool effect at this site? [URL]..When the links on the left are rolled-over an image appears in a small window that follows the cursor. Very cool.
I was hoping to learn how to do that, myself, but can't figure it out. No need for a step-by-step tutorial, just a word or two to point me in the right direction.
View 3 Replies
Jul 29, 2004
Does anyone know how to make this cool image effect its on the title screen to this game (megaman vs ghosts goblins)url...
View 2 Replies
Mar 21, 2005
How do I create a cool effect where when I click on a menu item, the layout chages size according to the size of the content on the page.
[URL].. is a perfect example of this. How did he do it? Actionscript or just transitions?
This is such a cool effect, how do I do it?
View 3 Replies
Mar 27, 2006
I have the following code but it only works when published for flash 6 and I need it to work for flash 8.Ive tried to tweak it but cant get it to work.I think it would be best if I could make a function out of it - ie:call the function like:myTextbox.textEffect("this is some decoding text");My actionscript is coming along but Im still learning.
Code:
myString = "this is some decoding text";
charDisplay = myString.length;
[code].....
View 4 Replies
Aug 3, 2007
I'm using the following code to create a very cool rain effect. Problem is, I only want the rain to last about 10 seconds, then I'd like it to fade away. I can get the background to fade, but the raindrops still appear. How I can accomplish this?
Code:
for (i = 0; i < 50; i++) {
var newDrop = mcRaindrop.duplicateMovieClip ("mcRaindrop" + i, i);
newDrop._x = random (350);
newDrop._y = random (20);
newDrop._xscale = random (100);
[Code] .....
View 1 Replies
May 17, 2011
I was taking a look at this site [URL] and really liked the drag functionality to navigate. You can drag up down, left and right. I wanted to try and get the same effect. I would assume creating one big movieclip and adding the drag functionality to that. My concern is that it might not be optimized. Do you think I will need to load content on the fly? Or do you think I will be able to load everything in the initial load and keep it running from there? If there is a specific name for this effect?
View 12 Replies
Apr 23, 2005
[URL] creating this cool spinning effect RCA uses for their buttons?
View 1 Replies
Feb 9, 2010
i want to make flash file in which, when i click anywhere one water kind drop come from top to down and when it reach bottom it distribute in so many parts.after this one textbox will display and i am able to enter some text in that textbox.
View 3 Replies
Mar 15, 2010
I have tried for weeks and am wanting to create a water ripple effect when mousing over an image on my website. I have downloaded various files, but to no avail. Can someone assist me please, with where I can go to download an extension to allow me to do this? I am using Flash CS4.
View 2 Replies
Feb 4, 2003
create water effect in flash which is similar to this website link [URL]
View 4 Replies
Aug 17, 2007
how they created the dripping water mask effect that reveals the images in the swf file located at the following address:
[URL]
View 2 Replies
Oct 12, 2010
i am trying to figure out how to create a water splash or bottle over flowing in Flash. can this be done?
View 2 Replies
Aug 3, 2010
I am trying to make a text effect where the colours fill up inside the logo lettering as if water was being poured in. Is there a way of doing this either by Actionscript or some form of advanced masking perhaps?[URL]
View 3 Replies