Water Spray
Anyone know or have an example that I can find that would show water spraying. For example I need to show the instance of a small cieling sprinkler spraying water. Any help or guidance would be much appreciated.
Cheers
FlashKit > Flash Help > Flash MX
Posted on: 07-15-2002, 09:06 AM
View Complete Forum Thread with Replies
Sponsored Links:
Spray
I want to build a spray can that sprays paint, can this be done in Flash or do i need 3ds max to make the particles as I have viewed in other tutorials.
View Replies !
View Related
Spray Can
I just whipped this together to help someone in another post, and it turned out good enough to show off here I think. I provided a link to the source (its too big)
SWF: http://jsites.no-ip.com/Flash/exp/paintcan/paintcan.swf
FLA: http://jsites.no-ip.com/Flash/exp/paintcan/paintcan.fla
ZIP: http://jsites.no-ip.com/Flash/exp/paintcan/paintcan.zip
UPDATE: I added the size variable (to control to size of the pixels) plus I made it round the position so that there is never half overlapping
View Replies !
View Related
Spray Can
Heya,
I am wondering if anyone has a great example of a spray can effect (mouse down or automatic) with paint dripping down the page?
Many thanks!
View Replies !
View Related
Spray Can Effect...
Hi Friends...
I have created the text "Create", however, i'd like this to fade on to the screen and have a simulated "spray can " effect spray around the text "Create". Can any one help how to do "spray can" effect in flash mx. Please help Me.....
Thanks in Advance.
Rekha
View Replies !
View Related
Spray Effect?
Dear Actionscripters
Please help...
I would like the title of a flash project to appear on the stage asthough it's being sprayed on the stage (as from a can of spray paint).
Does anyone know if this can be done? I have looked at the threads on writing text on teh page but this does not help me. i only have basic understanding of Flash so be gentle.
Many thanks
Joe
View Replies !
View Related
Spray Effect
Hi
Please help....
I am trying to create a spray effect.
I have some text on the stage and I would like to make it appear on the stage as though it is being sprayed like paint.
I would like the effect to seem as though you are painting the text on the stage - just liek using a paint brush tool in photoshop.
Please can anyone help me?
Many thanks
View Replies !
View Related
Please Help Spray Effect
Dear Kirupians!
Please help...
I would like the title of a flash project to appear on the stage asthough it's being sprayed on the stage (as from a can of spray paint).
Does anyone know if this can be done? I have looked at the threads on writing text on teh page but this does not help me. i only have basic understanding of Flash so be gentle.
Many thanks
Joe
View Replies !
View Related
Spray Can Effect...Help Pls....
Hi Friends...
I have created the text "Create", however, i'd like this to fade on to the screen and have a simulated "spray can " effect spray around the text "Create". Can any one help how to do "spray can" effect in flash mx. Please help Me.....
Thanks in Advance.
Rekha
View Replies !
View Related
Spray Effect
Hi
Please help....
I am trying to create a spray effect.
I have some text on the stage and I would like to make it appear on the stage as though it is being sprayed like paint.
I would like the effect to seem as though you are painting the text on the stage - just liek using a paint brush tool in photoshop.
Please can anyone help me?
Many thanks
View Replies !
View Related
Please Help Spray Effect
Dear Kirupians!
Please help...
I would like the title of a flash project to appear on the stage asthough it's being sprayed on the stage (as from a can of spray paint).
Does anyone know if this can be done? I have looked at the threads on writing text on teh page but this does not help me. i only have basic understanding of Flash so be gentle.
Many thanks
Joe
View Replies !
View Related
Spray Can Effect...Help Pls....
Hi Friends...
I have created the text "Create", however, i'd like this to fade on to the screen and have a simulated "spray can " effect spray around the text "Create". Can any one help how to do "spray can" effect in flash mx. Please help Me.....
Thanks in Advance.
View Replies !
View Related
Help With Spray Animation
hello all! first let me start off by saying your site blows me away! its very awesome!
I'm working on this site www.archiec.net/acs in the header you will notice a sprinkler head that i have animated in flash. what i would like to do now is to some how animate water spraying from the sprinkler head. I have searched the net for a tutorial that would help me get this going but have not found one yet. any help would be appreciated!
thanks!
View Replies !
View Related
Spray Paint Tool In CS4
By now i"m sure a lot of people have worked with the spray paint tool in CS4. If you look at the example on Adobe they spray paint a star movie clip across the sky and instantly upon publishing the stars are all blinking. well it's not really that simple, but it can be.
1st of all making a class with particle type functions will and attaching it to the library item will work. this is how I would do it for myself.
But i want it easier for people that don't really understand ActionScript yet.
I made this class below:
ActionScript Code:
package
{
import fl.transitions.Tween;
import fl.transitions.easing.*;
import flash.events.*;
import fl.transitions.TweenEvent;
import flash.display.*;
import flash.utils.Timer;
import flash.events.TimerEvent;
public class Particle extends MovieClip
{
//change the frequency
private var frequency:Number = 25;
private var timer:Timer;
private var r:Number;
public function Particle()
{
timer = new Timer(1500, 1);
timer.addEventListener(TimerEvent.TIMER, doTween);
timer.start();
}
public function doTween(e:TimerEvent):void
{
r = Math.round(Math.random()*frequency);
if(r==5){
play();
}
timer.reset();
timer.start();
}
}
}
Just call the Particle class from your library item.
It works great now you can place a stop action on the 1st frame of your movie clip and the clip will randomly play the MovieClip.
The only problem I see is that you would need to duplicate this class if you want to put it on two library items.
does anyone know a way to call the class twice for use by people that don't know how to create or duplicate new classes, yet?
Maybe I'm just over thinking it...
Thanks!
Quince Wyss
Peak Studios
View Replies !
View Related
Spray Drip Effect...HELP
Hi, I recently mastered some masking skill with my whole portfolio design with a line down the middle an opens, like a door opening onto my site .
http://i167.photobucket.com/albums/u...Picture1-1.png
Now i recently saw on http://www.spokenforband.com/ When you roll over on the navigation buttons a spray effect comes and drips down, Thats what i`m looking to do for my logo, so like line down the middle of my design, opens up like a door. logo drips down or maybe it drips then for a split second theres a flash on the logo.
I hope somebody can help me out, I really appreciate the support this forum gives.
thank you very much
Nick.
View Replies !
View Related
Flash CS4 3D Spray Brush Tool
I would like to recreate the twinkling stars animation as shown on this page for the 3D Spray Brush Tool:
http://www.adobe.com/products/flash/features/?view=topnew&promoid=DRIMV
How is the randomness of the twinkling achieved? When I made a movie clip of a star that dissolved in and out, all the stars pulsated simultaneously. Is there a specific tutorial for that? I'd hate to think that Adobe pulled some sort of sleight of hand to fool us into thinking it's so easy.
Also, I want to do a "Star Wars" opening credits type of animation, where the type crawls in perspective. I tried crawling type (as a movie clip) vertically inside of a movie clip that was angled back, but in the SWF, the type if flat-on. What's up with that?
Please help. Thanks.
View Replies !
View Related
Spray Paint Effect In Flash.
hi.
I was just wondering if anyone knew how to creat the kinda smoke effect you get when spray painting. The kindof effect that it is kind shot out of the bottle, then when it hits something it spreads all over the surface? Also if as is involved (begginer complex stuff, not simple things..) then pls explain how it works.
Thanks.
P.S. I tried just a load of xpanding circles (with differenct sizes ect.) but didnt really look good....
edit: hehe i searched it in google and theres loadz of ppl who asked the same question, most of em have the answers but all the ones i found were in other programs (like swish).
View Replies !
View Related
Graffiti Spray Paint And Drip Effect
Can anyone please help?
I'm creating an animation in flash which requires a scene involving paint being sprayed along a path, afterwhich the paint drips downwards from the end of the path!
Has anyone ever seen any tutorails that may help me acheive this effect?
View Replies !
View Related
Water
hey, im trying to make it look like the water is moving in this pic, but having a hard time, i just want nice smooth movment, like little waves or something. ANY IDEAS!! im stuck..
View Replies !
View Related
I Need Some Help, Water?
I am trying to create a water effect in flash ans i cat make it look real. The water is spraying out of a pipe, like becasue it broke.
I really need some help from the more experienced people that have been really cool to me. Thanks guys
http://www.lucentcomputers.com/phd.html
That is the layout of the flash intro i am workin on. The teo pipes are on the top and the bottom and will kind of start to spray water and will then get the logo for PHD all wet. Then the screen will say Do yourself a favor, hire a licenced plumber with experience. or something like that. I hope this helps.
Thanks,
Ryan Hoover
View Replies !
View Related
I Need Some Help, Water?
I am trying to create a water effect in flash ans i cat make it look real. The water is spraying out of a pipe, like becasue it broke.
I really need some help from the more experienced people that have been really cool to me. Thanks guys
Thanks,
Ryan
View Replies !
View Related
Let There Be Water
After a month of scouring the web and working through various examples, I've finally come up with the trifecta of water effects that you can use in whatever manner you may need.
I'm excited because it's been so hard to come up with professional looking effects, but I think this pretty much nails it until AS 3 becomes better understood.
Enjoy!
TVB
View Replies !
View Related
Water Efx
hi guys,
i got a question,
i saw an effect on a site (this one: www.in-visible.lu/
(logo on top left corner) that is really fantastic…
& i really wanted to know to make also an effect like this, (kind of a water effect when go with the cursor over it)
perhaps a very gentle soul could help me out and tell me?????!!!! please
it looks really great, well i don't really know either with which software it had could been done, but i suppose Flash5
so i hope to hear from u
jorge
View Replies !
View Related
Water
Hi Guys
i have a client who wants water to run from a tap and fill up and glass and he wants this to look as real as possible. please advise how best this can be done. if there is a tutorial on such an action please provide with link
Thank you
View Replies !
View Related
I'm Drowning...in A Cup Of Water
Hi...I've posted a previous thread but Ill make it simpler.
I need to load a MenuMovie.swf, make it to scroll its items (hence>>menu).
I did get it to scroll when it was part of the main Movie. but since its going to have many items, I copied the menuClip into the MenuMovie.swf. I rewrote the script so that the clip scrolls
setProperty (_level4.vinos.menuvinos, _x, _root.xposition);
but what scrolls is the main movie...
here is the url of the movie
http://www.rvmedia.com/proyectos/bfe...z/almacen3.swf
...if u dont have a high speed connection u will be a while; I have not taken the movie apart so its a little heavy. please focus on the menu any other anomaly will be fixed later...
I need the wine menu to scroll its items ...
NOTE:
that same movieClip scrolls its items when I have it as a CLip in the main Movie..dunno ...hope someone can release some thought...
My brain be with You
Gracia Tanti
View Replies !
View Related
Water Ripple
Somewhere in my wonderings I picked up an fla tutorial called Water Ripple Technique by Samuel Wan. I have looked at the fla file, but cannot figure out how this was done. Is anyone familiar with this fla, or know where I can find a step by step tutorial?
View Replies !
View Related
Water Ripple
I am designing a website for the company I work for. When you click to enter the site, I want the image to ripple like a rock was dropped in water. I want it to look realistic, If there is anyone out there who can help me, I would appreciate it very much. Thanks
View Replies !
View Related
Water Ripples?
Anyone know how to make water ripples on a image? Either using Flash MX or some scripting. It doesnt matter. I posted this same thread before but now I can't find it in the forum it must be way in the back.
<---------------flashmaster2002--------------->
View Replies !
View Related
Water Effect?
hi all,
I hope I could describe the right things
I've seen this cool effect somewhere but I don't remember the URL. It looked like a drop of water dropped down and the "water" rippled out in a shape of circle
I really want to know how to make it. Do you know any example, any tutorial?
Thanks for any help
View Replies !
View Related
Water Effect
Hello guys 'n' girls,
We need an water effect - You know when you are driving in the rain and you see the water drip down your side window, you can still see outside world but its blured.
We need someway of doing that??
Please someone help us!!
Cheers
James
View Replies !
View Related
Water Animation
I am creating a site with the title 'Forest Lakes' I was playing around with Swish today and thought it would be cool if I could have normal lettering for Forest, but a flash effect of the lakes rippling like water. Does anyone have any ideas how to do this either with swish or incorporating something else into Swish? It's probably a huge jump for a newbie, but, het, that's the way to learn right?
View Replies !
View Related
Dead In The Water
Ok, I'm exuasted. I have been trying to put this preloader in, but it never seems to show up. I have tried several different loaders and they all seem to do the same thing, dissapear! I enter the component or code in the first frame all by itself just like the tutorials say and nothing. It skips right past it. This time I have uploaded the .fla so if anybody had a spare minute to see what is wrong that would be great. I don't know what I am doing wrong. The clip itself is rather large for most webpages but we use it at work and we are on a T3 line.
If you look at the swf file and notice after you select [ENTER] it skips right past the standard loader and goes right to the clip.
>>index_flash.fla
>>index_flash.swf
View Replies !
View Related
Water Effect
does anyone have any idea in how to make a similar effect has this but with flash!?
just roll your mouse over the foto
http://clientes.netvisao.pt/nantonio/pedrocruz/
View Replies !
View Related
Water Splash
hi,
I want to create some kind of watersplash,but i don't know how to that! What i want is the effect of for instance a car driving through a pool of water and then the water splashes against the screen of your computer.
Anyone have an idea on how to create this????
i know, seems like a silly question!!!
thanx!
View Replies !
View Related
Water Effects
Hi all,
On the website of http://anfyteam.com/index.html they have this amazing water bubble effects. Does anybody know how to do this with Flash MX ? Any source code ?
Thanks !!
View Replies !
View Related
Water Effect
I am trying to produce an animation at work to show pressure proportional to depth.
Basically I want a bottle of water with 3 holes in with 3 different amounts of water flying out of the bottle at different pressures.
The problem I have is how to animate the water coming out of the bottle so it looks realistic and accurate?
Any help would be grand!
Jemes
View Replies !
View Related
|