A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Echo effect in audio???

  1. #1
    Senior Member
    Join Date
    Nov 2004
    Posts
    286

    Echo effect in audio???

    Is it possible to write something to add an echo effect to audio in realtime using AS? If so, how would I do it?

    Any help would ease my aneurysm lol

  2. #2
    Space Monkey daarboven's Avatar
    Join Date
    Sep 2001
    Location
    in the basement boiling soap...
    Posts
    217
    if you make clever use of the AS soundObject, you would attach your sound to two soundobjects and have them playing at different times...

    something like

    mySound=new Sound();
    myEcho=new Sound();


    mySound.attachSound(linkedSound);
    myEcho.attachSound(linkedSound);

    mySound.start();
    (...later: )
    myEcho.start();

    written from scratch so mind if the syntax isn't 100% properly done.
    :::i am jacks complete lack of surprise:::

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center