Be a Supporter!

Need help finding a rain flash loop

  • 664 Views
  • 5 Replies
New Topic Respond to this Topic
ShadowBoyX
ShadowBoyX
  • Member since: Feb. 25, 2007
  • Offline.
Forum Stats
Member
Level 07
Blank Slate
Need help finding a rain flash loop 2009-06-14 18:35:44 Reply

So heres the deal. I'm on whirled and i've decided to change my room. I looked through the available backgrounds for sale and found a penthouse background. I decided to remix it with a flash loop in it and bought a song in the shop which is basically rain sounds. Problem is i'm trying to find the flash loop for my room.

It has to show a city at night and its also has to be raining (of course). I looked on google for it but I couldn't find anything. Some help would be appreciated

Included is the snapshot of the room itself and its default background.

Need help finding a rain flash loop


Guns are helpful in solving lifes biggest problems. Using them to kill your boss is one of them.

BBS Signature
Thelostcup
Thelostcup
  • Member since: Sep. 15, 2008
  • Offline.
Forum Stats
Member
Level 07
Blank Slate
Response to Need help finding a rain flash loop 2009-06-14 19:01:21 Reply

If you can't find it
Make it.

ShadowBoyX
ShadowBoyX
  • Member since: Feb. 25, 2007
  • Offline.
Forum Stats
Member
Level 07
Blank Slate
Response to Need help finding a rain flash loop 2009-06-14 19:16:56 Reply

At 6/14/09 07:01 PM, Thelostcup wrote: If you can't find it
Make it.

If I can that is -_-


Guns are helpful in solving lifes biggest problems. Using them to kill your boss is one of them.

BBS Signature
ShadowBoyX
ShadowBoyX
  • Member since: Feb. 25, 2007
  • Offline.
Forum Stats
Member
Level 07
Blank Slate
Response to Need help finding a rain flash loop 2009-06-14 19:18:41 Reply

PS. You will get credit for it. I happen to have a digital memo that i'm putting into the room so i'll £Background Loop Created By <Your Name Here>. Thats a promise


Guns are helpful in solving lifes biggest problems. Using them to kill your boss is one of them.

BBS Signature
MichaelJ
MichaelJ
  • Member since: Mar. 2, 2009
  • Offline.
Forum Stats
Member
Level 18
Voice Actor
Response to Need help finding a rain flash loop 2009-08-29 10:51:57 Reply

I realize that this is a rather old topic, but I know an excellent way to make rain. Draw a little picture of a raindrop, roughly 3px by 60px and export it for AS as 'rain_id'
in the frame where you want it to rain, paste the raindrop somewhere offstage and in the frames AS put:

var rain_speed:Number = 20;
var rain_density:Number = 50;
for (i=0; i<=rain_density; i++) {
	_root.attachMovie("rain_id", "rain"+i, _root.getNextHighestDepth(), {_x:Math.random()*Stage.width, _y:Math.random()*Stage.height});
}
makeRain = function () {
	for (i=0; i<=rain_density; i++) {
		_root["rain"+i]._y += rain_speed;
		if (_root["rain"+i]._y>Stage.height) {
			_root["rain"+i]._y = -2;
		}
	}
};
setInterval(makeRain, 20);

Whatever frame the raindrop is on, the rain will play, and you can mess with the code a little to get it how you want. Also, right click on the raindrop and hit arrange, there you can pick if you want the rain in the front or back. Remember, to remove the rain, just take the raindrop off the stage.


BBS Signature
InnerChild548
InnerChild548
  • Member since: Aug. 10, 2007
  • Offline.
Forum Stats
Member
Level 35
Melancholy
Response to Need help finding a rain flash loop 2009-08-29 10:57:24 Reply

Tada.


BBS Signature