This is a discussion on "How to check that sound is playing" within the Flash & Multimedia Forum section. This forum, and the thread "How to check that sound is playing are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
How to check that sound is playing
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
How to check that sound is playing
Hello everybody!
I have a task to play a sound when mouse is moving. So the code is: var plesk:Sound = new Sound(); plesk.onLoad = function(success:Boolean) { if (success) { plesk.stop(); } }; // load the sound plesk.loadSound("/sounds/MYSHKA.mp3", true); myListener = new Object(); myListener.onMouseMove = function () { plesk.start(0,1); } Mouse.addListener(myListener); It sounds. But the problem is that it starts to play on every mouse movement. So it sounds argly bad because of overlaping. I understand that I have to check weather it's playing at the start of the mouse movement or not, but don't know how. Does anybody know how to solve this? Thanx a lot |
|
|
|
|||
|
Re: How to check that sound is playing
I'm by absolutely no means a Flash guru, and I'm not sure how the loadSound method works, but would it work to do an "if loadsound=false then loadsound"?
Sounds logical to me, but like I said, I'm a Flash idiot... |
|
|||
|
Re: How to check that sound is playing
Thanks yngexec,
I posted same question on the actionscript.org forum and look what I'got http://www.actionscript.org/forums/s....php3?p=418940 It helped. vbmenu_register("postmenu_23379", true); |
![]() |
| Tags |
| check, sound, playing |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| This guy likes playing with his balls | saltedm8 | Webforumz Cafe | 1 | Apr 12th, 2008 12:49 |
| Playing with Photoshop | Daniel | Graphics and 3D | 13 | Dec 16th, 2007 17:48 |
| FLV continues playing in background in IE | TunaFish | Flash & Multimedia Forum | 5 | Oct 5th, 2006 03:37 |
| My movie isn't playing on my site | sjh | Flash & Multimedia Forum | 6 | Jul 12th, 2006 15:19 |
| playing sound in flash | skyfire400 | Flash & Multimedia Forum | 2 | May 4th, 2006 23:02 |