Streaming MP3 - Please Help

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

  1. #1

    Default Streaming MP3 - Please Help

    I'm having issues with an MP3 sampler I've created. What is the appropriate
    actionscript to get it to play the MP3 i've sourced, automatically, when the
    timeline arrives at the keyframe. I'm using 'loadsound' and saying false after
    i write the source but it still doesn't work.

    Thanks ahead of time to whoever knows this...

    T Sugar Guest

  2. Similar Questions and Discussions

    1. Streaming Flv
      If i can recieve some help with this, it will be much appreciated. In other to stream a flv, is there any other possible way apart from flash media...
    2. MP3 streaming using AS3
      hi i want to stream mp3 file located at FMS. The problem is how to do this in AS3 as i m using flash cs3. i done bit but i m getting the error; ...
    3. Streaming FLV Help
      I'm trying to stream an flv from Flash Media Server into my Flex application. I've got a instance (video_app1) of an application (video_app)...
    4. Willing to pay for Streaming FLV help ...
      I have an account with Media Temple & am trying to accomlish a true "streaming" FLV with Flash 8 without success. Of course, progressive download is...
    5. Help with FCS mp3 streaming
      Hi, have tested two different mp3 player apps with FCS. Each one can play correctly the brief example mp3 files, but I want the app to play very...
  3. #2

    Default Re: Streaming MP3 - Please Help

    if you want the sound to auto start, use
    beat.loadSound("beat.mp3", true); // streaming sound

    if using - beat.loadSound("beat.mp3", false); // completely loads before play
    for autostart, add code to the frame - beat.start();

    checkout the Sound Object in the Reference, and this link for more -
    [url]http://www.kennybellew.com/[/url]


    Jack. 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