Can't remove music from Flash file

I decided not to use a music (wav) file and want to delete it
from my file. I deleted it from the library and also the layer it
was on. I publish the file and the sound still plays! I have no
idea how to get rid of it!

jacwright wrote:
> I decided not to use a music (wav) file and want to
delete it from my file. I
> deleted it from the library and also the layer it was
on. I publish the file
> and the sound still plays! I have no idea how to get rid
of it!
You must be previewing an old file, perhaps cached. If there
is no sound, it's impossible
for flash to play it :)
Save it under new name and publish again.
Best Regards
Urami
"Eat one live toad in the morning and nothing worse will
happen to you for the rest of the day."
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • How can I remove music from my iPhone that's not on a playlist, or checked off in the Sync window in any of the possible categories (Playlist, genre, artist, etc)? HELP! It's taking up SO much space on my phone

    How can I remove music from my iPhone that's not on a playlist, or checked off in the Sync window in any of the possible categories (Playlist, genre, artist, etc)? HELP! It's taking up SO much space on my phone but I cannot see a way to remove any of it

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Iweb question. How can you remove music from a page?

    How can you remove music from a your welcome page on iweb? Dumb but I can'f figure it out.

    Hi ...
    Try posting in the iWeb forum here.

  • If I subscribe to match, can I remove music from my hard drive and still listen to it?

    I'm interested in Match, but want to know if the music has to be on my computer to access it on my iPod/iPhone?  In other words, once I sync my library (over 100,000 songs) can I remove them from my hard drive (of course having them backed up on my own) and still access them?

    First off, if you have a library with over 25,000 songs in it, you will not be able to even sign up for iTunes Match.  When you try, you will get a message that you are not eligible.
    No, you cannot selectively choose which songs go to iCloud to get around this 25k limit, iTunes Match wants all or nothing.
    The way around this is to set up multiple iTunes libraries, each with fewer than 25,000 songs in it.  While this is inconvenient on your computer, if you send them to the iCloud this way and they will all be available on your iDevices.
    Apart from that issue, the answer to your question is "Yes." 
    However, when you play a song, it downloads to your device or computer while it is playing and will stay there until it is removed again.  iTunes Match does not stream songs, it downloads them and plays them, although songs will start playing before they have been completely downloaded.

  • Can't remove keywords from multiple files

    I can't believe I can't get this working.
    Say I have 15 images with the same 10 keywords in every file. One of the keywords is "banana" and I want to remove it from all 15 files.
    I select all the 15 files. When I do that one becomes "active" (it gets lighter gray highlight than the 14 other images).
    I then go to the Keywording panel and manually remove "banana" from the list.
    When I look through files to see the change all but the one that was active STILL has the "banana" keyword applied.
    I have also tried selecting the 15 files and made the file without the banana keyword active and run "Sync Metadata" and removed "banana" from the "Keywords" field in the dialog box. Same thing happens. No change to the files that aren't active.
    What am I doing wrong?
    Thanks in advance,
    Unicorn

    Simple. Don't take photos of bananas!
    Actually, I believe you need to select the photos in the Grid, not in the filmstrip. Then, removing keywords should work as expected, and then when you try to remove the keyword, this keyword will be removed from all selected photos.

  • Correct code for removing margin from Flash file

    I have an embedded flash file in an .asp page and it's
    bulging the table it's embedded in, I added css in the body for a
    "0" margin but it's not working, can someone follow the link below
    and tell me what i'm doing wrong
    thanks!!!!!!!!!!
    http://www.lamsystems.com/new_lam_5_08/home.asp
    steve

    Could someone tell me if I should be able to add parameters
    to this code and get results. I have found mention of values like
    <param name="loop" value="true" />
    but when I used it nothing changed on playback.

  • Can't remove music from my iPhone

    I have tried everything to remove music I no longer want from my iPhone.  I purchased an iMatch subscription and followed all the instructions to delete music from the Cloud.  Even after syching the music is STILL on my iPhone.  Any thoughts on how to remove it???

    Hi fadedmadonna,
    It seems you would like more information about deleting content when using an iTunes Match subscription. The following article provides information which you may find helpful:
    Delete songs and music videos from your iTunes library with an iTunes Match subscription - Apple Support
    Thank you for contributing to Apple Support Communities.
    Take care,
    Bobby_D

  • Can't remove music from IPhone 3G

    I have had the phone for a short time and adding music is no problem but when I try to take it off I am unable to do so.

    Thank you, I know that the changes have to be made in iTunes. The problems is when I connect my phone it brings me to the register you iPhone /terms window. I click on accept and hit save. It does nothing from their. It just stays on that window. It will not let me go to the general tabs like with my iPod now summmry tab nothing. That is why I am unable to remve the music from the phone or sync or update my calendar and contacts. Which is why I have been trying to get help in this fourm.
    Anyother Ideas please pass my way I keep trying them all and unless I can figure it out soon I will have to take the phone to the Apple store and have a pro look at it.
    Thankyou for your help though.

  • How can i remove password from pdf file that i lost password to

    i have 2 pdf's that are atleast 6 months old i need to check information in i dont ever remember putting a password on them but i cant gain access to them...any ways i can remove these password?

    Adobe Reader can't remove passwords at all. Adobe Acrobat can, but only if you know what the password is.

  • Antivirus software is blocking Bonjour install - can I remove Bonjour from install file?

    My work laptop has some restrictions that prevent me from installing Itunes 10.7 with Bounjour. Earlier it could be done by unzipping the instal file and delete the Bonjour install file, then install Itunes. I have some problems doing it with the new Itunes installer, anf would very much like some suggestions to how it can be done.

    I would think first about removing your anti-virus software. If you cannot do that, then you should disable it before doing any system software updates.

  • I can not remove spaces from TEXT file..

    Hi All,
    please advise me why the following code not remove the spaces or tab from the text file.
        try
            FileReader fr = new FileReader("D:\\Test\\a.txt");
    BufferedReader br = new BufferedReader(fr);
    Pattern p;
      Matcher m;
    String line;
    String afterReplace = "";
      String inputText = "";
    while((line = br.readLine()) != null)
       inputText = line;
      p = Pattern.compile("\\s+|\t");
      m = p.matcher(inputText);
      System.out.println(afterReplace);
      afterReplace = afterReplace + m.replaceAll(" ") + "\r\n";
      System.out.println(afterReplace);
    fr.close();
          catch (Exception e){
      System.err.println("Error: " + e.getMessage());
      }my regards
    Wael

    many thanks for you , i try to used it for the following text but the results same.
    McNair was shot and killed last weekend in what police say was a murder-suicide.  (July 9)                      Nation / World                          By:  AP                                 
     Comments: text ( 0 ) |  video ( 0 )    + Add a comment        
          Be the first to  add a comment .                                                           
           1          2          3          4          5                 Your Rating               <br>                                                                                                                                                                                                                                                                                                       
        Popularity                                                                                                                                    Your Name:                Your Comment:                                                                                                 
     http://videos.kansascity.com/vmix_hosted_apps/p/media?id=4999903&amp;item_index=&amp;genre_id=00000840 
                                                                     Your Email:                                     Friend's Email:                                     Your Message:                                                                                                                                                                                                                          
    Top Videos                                       Nation / World                       
                    Sports                                       Entertainment                                       Business                                       Lifestyle                                       
    Archive                                       User Submitted                                       Politics                                       Ink                                       Local                                       
    Selects                                                                                                                   
     all                        Sort By:                  Most Recent        Most Popular   
              Highest Rated                                                                 Loading...      
                               <br>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
     All users : If you have not already done so, Click "Record a Comment" to begin. Next, click "Allow" to use your camera.<br><br>  
     Additional Info for Mac users : If you do not see video (after clicking 'allow'), do the following:<br>      Click on the blue "gear" icon   in the lower right corner to bring up the settings window.     Click on the webcam icon.       If you are using a built in iSight camera, 
    choose USB Video Class Video from the pulldown menu. You should see video immediately.<br><br>       Click "close" button.   
    Record! You must record at least ten seconds before 
    you can stop.                

  • HT4847 Can I remove music from the i cloud to save storage in the cloud

    Hi I would like to remove some music in the cloud from my phone  I have i match that syncs  from my phone and computer  there are songs I do not like and I need storage in the cloud  Does anyone know how to do this Thanks

    See if this Apple Support kb helps you : http://support.apple.com/kb/ht4915

  • Can I remove music from my Iphone without using a computer?

    I have downloaded some music and podcasts from Itunes. Is it possible to remove them without connecting my phone to my computer?

    Swipe left-to-right across the song, hit delete.

  • Can't remove music from iphone 4s.

    i went into itunes, clicked on the iphone tab then unchecked every artist, album and playlist that i had on the phone. i then pressed sync and it showed i have nothing on my player but they still show on my phone. any advice?
    thank you

    Hello Lowball,
    Thanks for using Apple Support Communities.
    For more information, take a look at:
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/kb/HT5772
    Music
    Open the section below for the device you are using.
    iPhone, iPad, or iPod touch
    Before you delete, find out if you'll be able to download the song you deleted again (it depends on where you live). To delete a song:
    Tap the Music app.
    Tap the Songs category.
    Swipe left to right over the song you want to delete.
    Tap Delete.
    Have a nice day,
    Mario

  • CAN NOT REMOVE PHOTOS FROM STREAMING FILE

    I HAVE TRIED TURNNING OFF MY PHOTO STREAM ON MY DEVICE AND RESTING IT IN i CLOUD, BUT I STILL HAVE ALL THE PHOTOS IN MY i PAD2 PHOTO STREAM ALBUM. I HAVE EVEN GONE IN TO MANAGE STORAGE AND TURNED OFF THE BACKUP OPTIONS FOR THE CAMERA ROLL AND DELETED BACKUP. AND STILL CAN NOT GET RID OF THE PHOTO STREAM PHOTOS????
    PLEASE HELP ANYONE!!!

    Photo Stream FAQ
    http://support.apple.com/kb/HT4486
    Reset Photo Stream
    http://support.apple.com/kb/HT4890

Maybe you are looking for

  • Problem in invoking the partner web service

    Hi All, I have a BPEL process which is compiling successfully and able to deploy in Oracle AS 10.1.3.1. But When I am trying to Initiate it thorws IndexOutOfBoundsException. I am trying to invoke an operation in the partner service whose message have

  • Movement types data not capturing from BW cube data load

    Dear Experts, We are supporting BPC 10.0 Netweaver consolidation activities. As a part of the monthly consolidation, we are loading the ECC data available in the BW cubes into BPC. 0FIGL_C10 cube: From this standard cube we are capturing the movement

  • Keep client in Home Directory

    Any one have ideas as to how to "lock" limit linux system file system browsing from applications interfaces. We tried a few ideas - 1) rbash - creates issues with the exec function, setting systems into KDE kiosk mode works well with integrated kde a

  • Cisco 3850 AP licenses.

    I'm hoping somebody can help me, I am about to deploy 3850s on a site with ~ 30 x 2602i AP's I have a couple of questions. 1. I can't figure out whether I need to buy licenses or not for the 3850s, I don't understand the difference between the MA and

  • Pictures will not load to memory card

    Palm Treo 650 with 4gb memory card.  It takes pictures but gives the message "cannot load file" when I'm trying to load it to the memory card.  Pictures will load to the internal memory if set that way, but I need to use the card because of limited r