Is this a flash sound Bug?

I made a simply Mp3 player.
but this has a some bug.. (or flashplayer bug? ;;)
first of all, watch this code...
I have a test for each diffurence bitrate File.
naming rule is [samplerate]-[bitrate].mp3
It is works only that samplerate is 44Mhz
Other case has occured complete event even they do not
complete.
is this a Flashplayer Bug? or my fault?
p.s I'm not good in English

the only supported samplerate's in flash are:
"5 kHz", "11 kHz", "22 kHz", and "44 kHz".

Similar Messages

  • Is this a Flash 8 bug? - Variable Freakout

    Ok, this doesn't make sense at all - here is my set up:
    in a root MC, I have 4 layers - all 1 frame each.
    The 1st layer is an actions layer which defines 3 very simple
    variables:
    quote:
    var pressCheck1 = 0;
    var pressCheck2 = 0;
    var pressCheck3 = 0;
    the next 3 layers hold 1 MC a piece - each of those MC's have
    button-esque actionscript - a rollover, rollout, etc.
    for example - here is the actionscript on one of my MC
    buttons:
    quote:
    on (rollOver)
    this.header.textColor = 0x7B6B52;
    on (rollOut) {
    if (pressCheck1 == 1) {
    this.header.textColor = 0x7B6B52;
    } else {
    this.header.textColor = 0x546054;
    on (press)
    this.header.textColor = 0x7B6B52;
    _parent.play.header.textColor = 0x546054;
    pressCheck1 = 1;
    pressCheck2 = 0;
    As you can see, on rollover it defines a color for the text
    and on press it defines the same color again (to make it stick) -
    while also assigning a value to the a varaible "presscheck1".
    I did this because on the rollout, I wanted to have the color
    display differently before and after the button is clicked. This
    explains the if/ else statement on the rollout.
    With just this single button- everything works great, however
    when I modify his code to stick on another MC (in one of the other
    layers) as shown here:
    quote:
    on (rollOver)
    this.header.textColor = 0x7B6B52;
    on (rollOut) {
    if (pressCheck2 == 1) {
    this.header.textColor = 0x7B6B52;
    } else {
    this.header.textColor = 0x546054;
    on (press)
    this.header.textColor = 0x7B6B52;
    _parent.work.header.textColor = 0x546054;
    pressCheck1 = 0;
    pressCheck2 = 1;
    The variables do not seem to enable/ disable the rollout
    functions as defined in the press functions.
    Basically all that happens is that after rolling in and out a
    few times - the color never resets back to 0x546054.
    This doesnt make sense, as even a trace will show that the
    variables are being assigned on each press.
    Im not sure what is happening, but this code seems extremely
    logical - does anyone have any ideas on whats going wrong?

    It almost reads like you are trying to manually code a symbol
    to operate like a button (with the text color changes). If so, why
    not allow the button states control your rollover/rollout changes?
    - you must have some other code you aren't showing because I don't
    see how anything would be changing color with this code).
    Without being able to test your flash file, I can only advise
    you to put a trace statement on each event (whether it's an "if"
    and/or "else" and in that trace statement, have it trace logically
    what you should be seeing such as " presscheck_n = and header
    should turn green" and on rollouts, trace something like
    "presscheck_n = header shoud reset back to some color". This way
    you can find out where your code is not working. I can bet it's a
    matter of what the value of pressCheck_N is.

  • Sound bug CS5.5 & AIR 2.7.1 with small testcase!

    Hallo,
    this is a serious bug in AIR 2.7.1. As posted in another threat (I opened a new one because of the importance and the testcase) with AIR 2.7.1 suddenly the sound handling of sounds embeded in nested movieclips in the timeline run wild.
    This is the old threat:
    http://forums.adobe.com/thread/891766?tstart=0
    I coded a small testcase.
    Please download the FLA from our server:
    http://apps.oetingerverlag.de/Soundbug_AIR_2.7.1.fla.zip
    You'll find a scene with a book cover and one button.
    If you push the button, an event is dispatched and a movieclip (the pig) is started and the pig makes some piggish noises.
    In the background there is a small animation running, the beaver dips his foot into the water.
    CASE 1, AIR 2.7:
    If you compile this with Flash Pro CS5.5 and AIR 2.7 (overlayed over 2.6, as described by Adobe http://kb2.adobe.com/cps/908/cpsid_90810.html ) all is well:
    If you don't push the button the pig won't move and won't make a sound.
    If you push the button the pig is animated and makes a noise, after this the pig is silent again.
    CASE 2, AIR 2.7.1:
    If you compile it with AIR 2.7.1 overlayed, after a few seconds the pig noises start, even if you don't click the button!
    And with every loop of the main animation another instance of the pig noise is started, just wait, sounds kind of funny (well, it would be funny if it wouldn't be such a big problem for us now - we couldn't deploy our three Android-apps, because in the Android Market there is only AIR 2.7.1 as runtime).
    So: There is a big problem, and I think some more developers will be affected by it.
    Any suggestions?
    We could of course delete all sounds on timelines and start the sounds via actionscript 3, but we have three projekts and lots of sounds...

    Implemented a workaround:
    Case:
    a) There is a main MovieClip with the background.
    b) in this main MovieClip another MovieClip is placed, with an animated pig and some piggish noise audio
    The bug manifests itself, if you use a normal timeline sound configuration like this (this is part of the nested mc with the animated pig):
    In frame 2 the sound on the timeline starts. With AIR 2.7.1 this leads to weird sound bugs, the sounds on the timeline are all started, the stop()-comand in the top layer is ignored (but only for the sound, the animation does not run automatically. This is really strange!).
    Workaround:
    a) load the pig sound via actionscript in the main MovieClip:
    var scene2SoundPig:Scene2SoundPig = new Scene2SoundPig(); 
    Call the sound directly from the timeline, at the same position:
    The code for this (in the blue marked rectangle) is:
    MovieClip(parent).scene2SoundPig.play(); 
    Now it all works as usual (like it does in 2.7).
    One thing to look out for:
    The sound in the timeline plays as long as there are frames, this could be e.g. 5 seconds.
    The workaround plays your COMPLETE sound, e.g. 10 seconds.
    So if your sound is somewhat longer than the portion you played via the timeline, you have to shorten the sound with e.g. SoundBooth.

  • No Flash Sound on YouTube

    HP Pavilion Entertainment PC dv9700
    Service Tag dv9910us
    Window 7 Ultimate 32-bit. 
    Get no Flash sound on YouTube or CNN.  Get good sound from YouTube videos saved to hard drive by Realplayer.   Then the saved YouTube video plays everywhere: Windows Media Player, VLC and Realplayer.  I recall the YouTube sound disappeared in the last weekend of Nov 2011 when Flash was automatically updated.  At first it was intermittent and then silent forever.
    So far.  No luck.   I deleted and reinstalled Adobe Flash.  Even tried the Flash Uninstall Utility.  Actually I deleted everything with Adobe listed on it vias Control Panel Uninstall.  I deleted the sound driver for the Conexant High Definition SmartAudio 221 and reinstalled.  I even unpdated it.  I consecutively deleted and downloaded the latest versions of IE, FireFox & Chrome.  I tried Microsoft Fix-It.
    In Device Manager, there are two yellow warnings.  NVIDIA nForce Networking Controller (Code 10) and USB Host Controller (Code 43).  I don't know if one of these can be the issue.
    One weirdo.  Sound worked for 30 seconds one night the first week of March when my wife innocently started to watch YouTube.  When I realized it and called it to her attention, the sound disappeared.  Go figure!
    I'm thinking of restoring Windows 7, but that will create a lot of work for me.
    Any new information on a fix?
    With so many complaints -- it seems -- everywhere, I'm surprised someone like Adobe has fixed the problem?
    Naive question:  Are we locked into Adobe Flash Player for YouTube or CNN?
    Thanks.

    Do you hear audio on either of these two pages?
    Test 1
    Test 2
    Please follow the instructions in this FAQ for a few troubleshooting steps and further details on what we'll need and how to report this issue to us for investigation.
    How do I troubleshoot and report problems with Flash Player Video?
    Thanks,
    Chris

  • Default Alarm Sound Bug iPod Touch

    I have a problem with my iPod Touch. When I set an alarm with a sound OTHER than Time Passing it defaults back to Time Passing when it actually goes off. I tried many times to change the sound. The only way I fixed this was to do a complete reset (I don't want to have to keep doing that!). After this I can choose any sound (from those available) and it works as expected. I will try again after a sync and see if this issue still exists.
    Is this a known bug? The forum search shows too many unrelated results for me.

    This is a known bug, posted many, many times throughout these boards, on both iPhone and iPod touch.
    Report the bug here: http://www.apple.com/feedback/ipodtouch.html
    Thanks,
    R-Fly

  • Extract audio from .fls (Flash Sound Bundle File)

    Greetings!
    I would like to ask if it's possible to unbundle a Flash
    Sound Bundle file? I've downloaded FlashLiteBundler.exe to check if
    it can also unbundle, but it could not. A client wants to reuse
    their audio files from a previous project, but alas, they could
    only give us files of .fls format.
    Any ideas on how I can go about this?
    Peace!

    Hi kglad!
    Thanks for the reply. :)
    1) The sad part is that Flash Lite 1.1 Sound Bundler only
    appears as a flat square with the words "Drop Sound Files Here." A
    few audio files are supported, such as .mid and you just drag the
    audio onto the square, until a window appears which says, "MIDI
    file __.mid added, size ___ KB" There are no other controls there
    except the Delete, Clear All and Save Bundle buttons.
    2) When I try dragging an existing .fls file (the one from
    the client), it says "Unknown sound format, file not added."
    3) When I try dragging an .fls file which I made myself using
    Flash Lite 1.1 Sound Bundler (FlashLiteBunder.exe), an "OK" message
    box appears, which says "1 device sound found. MIDI (___KB)". Other
    than that, I can't get the Sound Bundler to do anything else.
    I was wondering whether there's another way to unbundle using
    another Flash tool, or maybe the bundled file is in a known format
    which I can unbundle with something else? When opened in a text
    editor, the .fls files from the client begin with "FWS".
    Thanks.

  • Firefox Flash Plugin bug?

    Hi everyone,
    I have multiple Flex Applications (wrapped as portlets in
    Liferay) working on the same page at the same time in separate
    flash players, of course.
    When I access the page by Mosilla Firefox browser, all page
    portlets get reloaded after the last one is initialized.
    And the worst - each of them gets initialized again - it
    means that all data gets loaded again. This is proved by log
    records: in case of Firefox each portlet loads data twice, in case
    of using IE - once.
    Have you ever faced the same problem? Is it a Firefox Flash
    plugin bug or what?
    Thanks in advance.

    Updates:
    I've opened a bug with Adobe regarding this issue:
    http://bugs.adobe.com/jira/browse/FP-4362
    Also, the Cancel operation on a FileReference causes the same issue to happen as does loading.  I really think it's an operating system focus issue.
    UPDATE:
    Looks like this has already been tracked and is scheduled to be fixed:
    https://bugs.adobe.com/jira/browse/FP-2785

  • Sound bugs gta

    hey all,
    I have some sounds bugs in the game grand theft auto san andreas
    Things like; After it rains, or entering a building = loss of all ambient sound, or all sound Entering a car = hear nothing but the radio No sound in cut scenes.
    i have a sound blaster li've! card is there any drivers or updates for those bugs..
    cya all

    Has anyone had this problem... sometimes after saving game i get what i can only explain as a sound effect stuck in a loop, when i run away from the house and the sound does change to the rear speakers, but after running for a while it goes away, ... has happend randomly during games aswell.
    also occures when alt-tab is done... (running the game clean) - no trainers or cheats running since install..
    i think i remember the same or similar sound after installing creatives 64bit drivers for sound, then it blue screened and rebooted..
    Also have graphics problem displays what looks like the player skin over the screen with game in background.
    heres the setup...
    Windows XP Pro SP2 (32bit ed)
    amd athlon 64bit 3000+
    msi K8N-Neo2 Platinum
    GB Corsair TwinX Ram (running dual channel)
    Sound Blaster Audigy 2 ZS Platinum Pro
    Creative GigaWorks S750 7. THX Speakers
    7x 250GB SATA
    PC&P 50 PSU
    Geforce 6800GT 256MB DDR3
    DVD DL writer (if that really needs to be listed)
    san andreas sound problem audigy 2, run away from it and it goes away

  • IOS 6.1 still sound bug

    Dear comm, AND DEAR APPLE SUPPORT!
    It is really annoying!
    Today I have updated my iPad2-16GB-3G to iOS 6.1 and that bloody sound bug is still there.
    [Shortly the sound works and randomly after a short period of time it chrashes. No hardware key and no soft key works anymore. The soft key is gone.
    I saw several chats regarding the different iPhone / iPad versions dealing with the same prob.]
    I would appreaciate an opportunity to put more pressure on Apple to solve these problems. These wonderful gadgets like iPhone and iPad are that expensive!
    And one of the key functions does not work. A bug that is not fixed since month, now!
    and double it!
    To all persons concerend: Stand up and put pressure on the Apple support to solve that problem!
    THX and sorry for venting my anger!
    joapp

    First, Apple Support is NOT reading these forums. These are user to user technical help forums hosted by Apple. There are only other users here.
    You may have a hardware problem. Visit an Apple store for evaluation or contact Apple support.
    There is a chance that you have a bad Application on your iPad which is crashing the sound driver but, fron your description, this seem unlikely, however, give that possibility some consideration.
    Note: the majority of sound problems reported here are caused by the user having mute turned on and not realizing it. You don't seem to have that from your symptoms.

  • Audio for HP 15 Notebook is making this static kinda sound

    I recently bought a HP notebook 15 a few days ago, but just today, i started having this problem when watching youtube videos. It made this static kinda sound and it was really annoying. Wonder if there is a fix for this. Please help.

    Hi @iamusingthisfor ,
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    Please remember to post your exact model of HP notebook and your Operating system when posting in the forum.  This will allow us to better assist you.
    How Do I Find My Model Number or Product Number?
    As this is a new newbook, I am assuming you are running Windows 8 or 8.1
    I see that when you watch videos on YouTube you hear static and it is very annoying.
    Do  you have audio issues anywhere else?
    If you play a DVD do you hear static?
    Have you done all your Windows updates?
    Have you ran  The HP Support Assistant to aid with updates and resolving issues?
    Have you tried  Using Automated Troubleshooting (Windows 8)?
    Is your flash player up to date?
    You may also try changing the sample rate on your audio, as Windows 8 does have settings that are sometimes to high for notebooks.
    Go to the Control Panel
    Open Sound
    Click on your speakers and click properties
    Click advance
    You should see an option to choose the sample rate. You can try different ones until you have located the one that is best for you.
    If you would like further assistance, please reply back with your exact model, your Operating System and the results from the troubleshooting.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Flash Updater Bug Report

    Of course, my Flash installation requests updating while I'm
    logged in as a non-administrator. I have to click "remind me later"
    and log on as Admin. But there is no way to manually start the
    updater! I have to uninstall/reinstall, and that's enough of a time
    waster to make updates lag weeks behind. This is an obvious bug and
    it doesn't belong in an Adobe product. Please fix this.

    Are we talking about the grey cirle exclamation mark ??
    Because we also know how to male flash crashes on any web application.
    Best regards
    [email protected]

  • Why isn't this BIOS flash procedure working for me?

    I downloaded the 875P Neo BIOS 2.0 and I flashed it according to directions.  After booting to DOS using a Win 98 startup disk and running the flash program, I see a series of triangles/arrows as it first erases the flash ROM and then a second series of triangles as it programs the ROM.  The it says it is verifying the ROM and then it says "Success."  
    This is all sounds great, but keep reading.
    When I re-boot, i get four short beeps, a delay, then one beep, then the logo startup screen comes up.  I press the DEL key to go to the setup menu.  I set a couple things including disabling the logo startup screen so I can see the POST info. I save the settings, and it reboots again, this time showing the POST screen.
    Here's the problem, it shows on the POST screen that I have Amibios _version 1.2_ (dated 4/23/2003).  I have reflashed now several times to no avail.  I tried with version 1.9 to see if that would do anything.  Everything seems to go fine while flashing, but every time I'm stuck back at version 1.2.  A Win utility (AIDA32) confirms that my system BIOS date is 4/23/03.
    I looked for a setting that locks the BIOS, but if it's there, I couldn't find it.
    Please help.  What am I doing wrong?  
    Thanks for any help.
    -E

    Thanks.  I'm really stumped here.  I've re-flashed at least 4 times with the same effect each time.
    There is one additional thing that may or may not be useful here.  Every time I flash the BIOS, I actually have to re-boot twice before I can use the machine.  On the first re-boot, I get the four beeps, then one beep, then one beep, then one beep, (etc, etc on the one beep until I re-boot again).  The video never even kicks in, so I can't see what is going on.  After re-booting a second time, I get the four beeps, one beep, video kicks on, and it's as I described above.  
    -E

  • ORA-22805 - (inserting an XMl type FAILS) I suspect this is a oracle Bug

    We're using
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.7.0 - Production
    Basically when I try to execute the following
    dbms_xmlschema.registerschema
    ('MySchema.xsd',
    sys.UriFactory.getUri('/Location/MySchema.xsd'),
    genTables=>TRUE);
    this generates a table for us with the name "xmlt_ds_0"
    when we try to insert into this table, we get an error
    INSERT INTO tddb.xmlt_ds_0
    SELECT sys.xmltype.createschemabasedxml(mq.content, 'http://My.Schema.xsd')
    FROM message_queue mq
    WHERE mq.sys_id = 148100
    ORA-22805: cannot insert NULL object into object tables or nested tables
    Now this works for most xml files, it just one or two that fail, however these files that have failed are well formed, and valid (ie: conform to the scehema)
    however, if I try to do this
    create table tempTest of xmltype
    XMLSCHEMA "Myschema.xsd"
    ELEMENT "schedule"
    then insert into this
    INSERT INTO tempTest
    SELECT sys.xmltype.createschemabasedxml(mq.content, 'http://My.Schema.xsd')
    FROM message_queue mq
    WHERE mq.sys_id = 148100
    Basically, this works for the same file, I just dont understand why it wouldn't work in the "resitering the schema" way. I strongly suspect this is a Oracle Bug
    Has any one encountered this before, any help would be appriciated.

    FIRST of all...
    If you create the table via registerschema, then you table will be created case-sensitive (in general take notice that with XMLDB everything can be / will be case-sensitive). So this means you will have to do things the following way (mark the double quotes):
    NSERT INTO tddb."xmlt_ds_0"
    SELECT sys.xmltype.createschemabasedxml(mq.content, 'http://My.Schema.xsd')
    FROM message_queue mq
    WHERE mq.sys_id = 148100Your statement (see below) will generate a table the default way, that is a table in uppercase
    create table tempTest of xmltype
    XMLSCHEMA "Myschema.xsd"
    ELEMENT "schedule"so ...this will create a table with the name "TEMPTEST".
    regarding the ORA-22805...
    - can you post the schema
    - can you post the values that cause the error...

  • When install iTunes 11.1.4   It says Apple Mobile Device Service service will not start.  It was started when I began the installation.  Is this an Apple software bug?

    When install iTunes 11.1.4   It says Apple Mobile Device Service service will not start.  It was started when I began the installation.  Is this an Apple software bug?

    I have this issue. It isn't the MSVCR80 issue. No matter what I do nothing will let me even INSTALL Apple Moblie Device. Further details are in my thread:
    https://discussions.apple.com/thread/5831093

  • I recently installed Adobe Flash Player 11 ActiveX--11.4.402.265 and when I open My Mozilla Firefox browser I keep getting this message flashing on my screen: '

    I recently installed Adobe Flash Player 11 ActiveX--11.4.402.265 and when I open My Mozilla Firefox browser I keep getting this message flashing on my screen: 'Adobe Flash Player 11.4 r402 has stopped working" and then "Windows is checking for a solution"
    This flashes a few times then usually stops but not always.
    It happens every time I try to open a new page.
    I fixed this problem by uninstalling Adobe Flash Player 11 and installing Adobe Flash Player 10.3. However, now my IE browser wants me to install Adobe Flash Player 11 again. Although I don't use my IE browser frequently, I DO have to use it sometimes. Will there be an update to Firefox 15.0 to correct this issue?

    Tylerdowner:
    Thank you, your solution worked great.
    mohenryj

Maybe you are looking for

  • Upgrade to Itunes results in no access to Itunes Store

    i am still on itunes 10.4 and when i upgrade to 10.5 or 10.6 i can no longer access the itunes store. I am running windows 7.

  • How to configure dreamweaver for CodeIgniter Project ?

    Hello , is it possible to configure DW in order to work with CodeIgniter ??? if yes , please did you know how to do that , I begin thanks

  • Where are all of my photos?

    Only 9 of my roughly 3500 JPEG photos have moved from Photoshop to Revel. Where are my photos??

  • ORA- 1555 problem

    hi all, im wrking in a three tier architecture & im getting ORA-1555 error frequently by a same query but im unable to trace from which progam ist executing this sql... Is there any mechanism to find out sid,serial no of that sql..?

  • Determine partner role based on partner number/Guid.

    I need to determine whether a partner (against a repair order) is a consumer (BP) or dealer (organisation). How can I determine this based on partner number/guid?.  I'm sure there's a BAPI etc to show the role information. Gary King