PDA

View Full Version : simulate the spray of a perfume



Derlei
July 25th, 2005, 03:45 PM
Does anyone now how to simulate the spray of a perfume when we press.

I donīt now if itīs possible in flash, but if it is can someone help me

thankīs in advanced

3pinter
July 25th, 2005, 05:33 PM
Didn't someone posted his or hers fla on the source topic?

I thought it was a grafitti spray... but you could alter it ofcourse into a 'more female spray'...

3Pinter
:smirk:

stringy
July 25th, 2005, 05:34 PM
Does anyone now how to simulate the spray of a perfume when we press.

I donīt now if itīs possible in flash, but if it is can someone help me

thankīs in advanced
i think you`d be better with another program;
made a quick attempt for what its worth

3pinter
July 25th, 2005, 05:36 PM
http://www.kirupa.com/forum/showthread.php?t=183993

That was the link I was talking about...


Stringy nice work! ;)

3Pinter
:smirk:

Derlei
July 25th, 2005, 07:11 PM
Stringy, thank you very very much.

:thumb:

stringy
July 26th, 2005, 10:31 AM
thanks 3Pinter & your welcome Derlei

Derlei
July 26th, 2005, 03:49 PM
Stringy

if i could just ask you one more thing, if it is possible.

is it possible the spray can

start automaticaly, few seconds after the animation start, without clicking in

the botle.


One more time thankīs for the help

stringy
July 26th, 2005, 04:02 PM
Stringy

if i could just ask you one more thing, if it is possible.

is it possible the spray can

start automaticaly, few seconds after the animation start, without clicking in

the botle.


One more time thankīs for the help


int2 = setInterval(function () {
myinterval = setInterval(spray, 30);
clearInterval(int2);
}, 3000);

3000= 3 seconds
hope it helps

Derlei
July 26th, 2005, 04:17 PM
Stringy you are the greatest :beer:

Derlei
July 26th, 2005, 04:26 PM
Stringy

Itīs the last thing i promised

Itīs possible to stop the spray after a few seconds

Thankīs in advanced

stringy
July 26th, 2005, 04:35 PM
Stringy

Itīs the last thing i promised

Itīs possible to stop the spray after a few seconds

Thankīs in advanced

int2 = setInterval(function () {
myinterval = setInterval(spray, 30);
clearInterval(int2);
}, 3000);
int3 = setInterval(function () {
clearInterval(myinterval);
clearInterval(int3);
}, 6000);

after another 3 secs

Derlei
July 26th, 2005, 05:24 PM
Stringy

Thank you very much. :beer:

stringy
July 26th, 2005, 05:26 PM
Stringy

Thank you very much. :beer:
you are welcome