Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default sound

    Has anyonw had success getting the sound to work on an Abit IC7-G using RH9?
    If so what sound module did you use. Did you have problems with make
    install and how did you resolve the problem?
    cmos2 Guest

  2. Similar Questions and Discussions

    1. How to override background sound with event sound ?
      Hello everybody... I'm looking for a way to override background sound with event sound Any ideas ? Jean-Francois Publiconcept
    2. Sound problems - new instance of sound starts each time a button is clicke
      Everything in my site works fine, until the navigation buttons are clicked a few times, then the background music restarts and plays over the music...
    3. Sound Generation/Control - Advanced Sound ...
      does anybody know a way to get Director MX to generate it's own audio ... I know it can be done in visual basic, but I want to learn how to do it in...
    4. Mute - toggle sound - single button - streaming sound
      After researching the Flash Boards for awhile and gathering info, no one (that I found) had a quick simple solution for a single button to mute and...
    5. kernel oops playing sound -- sound now wedged
      I used gmplayer (from Christian Marillat's excellent archive) to play a video file this morning. Gmplayer froze, and I had to kill it. Now *no*...
  3. #2

    Default sound

    Hi! i made a play/pause button:

    global gKeyPL
    global gAlready

    ----------------
    on beginSprite me
    gKeyPL=1
    gAlready=0
    end beginSprite
    ----------------
    on exitframe
    if sound(1).isBusy() then
    gAlready=gAlready
    else
    gAlready=0
    gKeyPL=1
    end if
    end
    ----------------
    on mouseDown me
    gKeyPL=-1*gKeyPL
    if gKeyPL=-1 then
    gAlready=gAlready+1
    if gAlready=1 then
    gSndStop=0
    sound(1).play(member(1))
    end if
    --
    if gAlready >=2 then
    sound(1).play()
    gAlready=1
    end if
    ----------------
    else
    gSndStop=0
    sound(1).pause()
    end if
    end mouseDown
    ***************************************



    now, how can i make a fast forward button?
    & how can i show the time of the sound file in a normal format, like: 02:33
    ?

    thanks


    !!!NoOther!!! webforumsuser@macromedia.com Guest

  4. #3

    Default Re: sound

    It depends on the flavor of digital media you're using.

    Are you using an xtra? Streaming or playing from a CD/Fixed Drive?

    More info please.

    Another great resource would be to visit mediamacros.com

    PeterfSorenson




    Referring URLs
    [url]http://www.mediamacros.com[/url]




    peterfsorenson webforumsuser@macromedia.com Guest

  5. #4

    Default Re: sound

    i'm playing a mp3 member from the cast... on my hardisk...


    !!!NoOther!!! webforumsuser@macromedia.com Guest

  6. #5

    Default Sound

    I was wondering if there is anyway to play a sound using action script, but then stop it at a specifc frame.


    imaginethis webforumsuser@macromedia.com Guest

  7. #6

    Default Re: Sound

    yes. you can start your sound at any time and you can stop your sound at any time. there are a number of ways to do both. using the flash'es sound object is pretty straightforward and allows control via actionscript.


    kglad webforumsuser@macromedia.com Guest

  8. #7

    Default sound

    How i can pause a sound?
    Eduardo


    Eduardo Dorantes Guest

  9. #8

    Default Re: sound

    Eduardo Dorantes wrote:
    > How i can pause a sound?
    sound(yourSOundChannelHere).pause()
    --
    Agustín María Rodríguez | [email]agustin@OnWine.com.ar[/email] | [url]www.OnWine.com.ar[/url]

    Agustín María Rodríguez Guest

  10. #9

    Default Sound

    Hi

    How can I turn off the sound in the flashs there where is no 'Sound off' button.


    Thx, Gualtero
    Gualtero Guest

  11. #10

    Default Re: Sound

    I found the answer:


    FlashMute
    [url]http://www.chip.de/downloads/c1_downloads_18962824.html[/url]
    [url]http://www.indev.no/?p=projects#flashmute[/url]

    Greetz, Gualtero
    Gualtero Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139