| | | DMennenoh **AdobeCommunit |  |
| Posted: Thu Jul 03, 2008 8:55 am Post subject: Re: Sound Helo |  |
Press a key or press a button? The Help has a lot of good info, FWIW.
Here's a little sample of playing a library sound if the 'a' key is pressed:
var mySound= new Sound(); var myListener:Object = new Object();
myListener.onKeyDown = function () { var k = Key.getAscii(); if(k == 65 || k == 97){ mySound.attachSound("soundA"); mySound.start(); } }
Key.addListener(myListener);
-- Dave - LINK Head Developer LINK Adobe Community Expert LINK |
|