I have a Compressor custom setting that refuses to delete.

No matter how many times I delete it, it reappears when I open Compressor again. If I change it, it creates a new setting with that name and path and re-creates the old one when I open Compressor again. I'm at my wits end. I WANT IT GONE. What do I do?

simply do this:
QUIT compressor.app
access your home directory/Library/Application Support/Compressor/ . Use option+finder menu/Go to access ~/Library because it's hidden in OSX 10.7
list this directory and use the OSX Finder to DELETE (move to trash) the specific setting
DELETE (move to trash) the DIRECTORY "com.apple.Compressor.savedState" from your home directory/Library/Saved Application State/com.apple.Compressor.savedState ... else use unix command rm -vfd ~/Library/Saved\ Application\ State/com.apple.Compressor.savedState
restart comressor.app. The setting should not be there.
post your result here for others.
HTH

Similar Messages

  • I have the iPhone 4, and yesterday I synced my photos onto iTunes, but now I have albums on my phone that cannot be deleted, and there is not an option to delete the items in the albums individually... How do I get rid of these unwanted albums? Windows 7

    I have the iPhone 4, and yesterday I synced my photos onto iTunes, but now I have albums on my phone that cannot be deleted, and there is not an option to delete the items in the albums individually... How do I get rid of these unwanted albums? Using Windows 7.

    If you used iTunes to get the photos on the phone, then use the same iTunes and uncheck the music you don't want and do another sync.

  • I just got my iphone 4s today and came home and plugged it into my itunes and restored it to my account but something is wrong it seems to have gone to the setting that I had on my iphone 4. How do I get it back to how I had it?

    I just got an iphone 4s and went to itunes to get all the stuff that I had on my last phone onto my new phone. I think that I have put all my setting for my old phone onto my new phone. My old phone being a iphone 4. Is there anyway I can get my phone back to how I got it earlier today?

    No, no one here can help you, & neither can/will Apple. Only Orange can authorize the unlocking of your phone, & typical of most carriers, they will only do so for customers using the phone on their network.
    Either establish service with Orange, then request the phone be unlocked, or sell it to someone that can use it on their network.

  • I'm trying to download a movie, but I keep getting message error that I have no more room and that I must delete some photos or videos in order to download more movies. How do I delete the videos in order to order more?

    I'm trying to purchase and download a movie, but I keep getting message error that I have no space. The error states that I must delete some photos or videos in order to download. I've gone to iPod then edit and deleted some videos, but I'm still getting the message. What is the correct way to delete the videos and should they still be there.

    They wont still be there if you delete them,but if you have those same photos on the main computer.

  • I have songs on my iphone that i cannot delete. way?

    hey,
    I have some songs on my iphone that I cannot delete. way is that?
    as well, I transferred music to I tunes that I can't see on my iphone after syncing and auto filling.
    thank you
    sivan

    They are songs that you have in the cloud, they can't be deleted from there - but you should be able to hide them from the Music app via Settings > iTunes & App Store > Music (in the 'Show All' section) 'off'

  • I have my Iphone 3gs set to "do not delete before asking", but after viewing an email it very often disappears without me deleting. How can I correct this?

    My email messages often disappear after I read them without me deleting them.  I have the option on mail settings clicked that states "do not delete with asking". Why is this happening and how can I correct it. When I return to read the email again, it is gone.

    tantar wrote:
    I have the option on mail settings clicked that states "do not delete with asking".
    There is no such option in the mail settings.
    Who is your email provider? Is it a POP or IMAP account? So you also have a computer set up to access that email account? If so, if the mail client on the computer is set to use the POP3 protocol, it may be deleting the mail from the server as it downloads it. That is the default behavior with POP3.

  • I have an email from China that I cannot delete

    When I attempt to delete this email (4 duplicates) from the main Inbox or the POP account it was sent to it returns everytime I click on the Inbox or the specific account. I have deleted them several times and emptied the trash without any luck. It's the email that just keeps giving.
    MacBookPro   Mac OS X (10.4.8)  
    MacBookPro   Mac OS X (10.4.8)  

    me too. I now have two sets of three each. Cannot delete them.
    Mina are not from China, they are each different.
    I have one idea about it: I think in both these cases, i did something funny with marking them as junk. Maybe it was that they already were makred as junk, and then i did it again, thinking it would send them to the junk mailbox or something.
    Maybe this is what makes them stick...? .....

  • When I delete using the "clear resent history", with all boxes checked, I still have a bunch of urls that won't delete.

    when you go to TOOLS>CLEAR RECENT HISTORY and check all the boxes, except "form & search history" is a light check mark and can't be changed. The top is set for "everything". When I click the clear now button. After a couple of minutes. The icon clears and I close the browser. When I click the browser and start putting in a url, Some urls that I was looking at still show up. These are not any of my favorites. How do I delete these sites???
    Thanks
    Ernie
    PS- I'm using firefox 4 and have windows 7.

    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    This will open the "Edit This Bookmark" dialog and you can click the Remove button to remove the bookmark if you want to remove such a bookmarked entry.<br />
    * https://support.mozilla.com/kb/Clearing+Location+bar+history
    * https://support.mozilla.com/kb/Cannot+clear+Location+bar+history

  • Good morning I have a message in my setting that want me to download ios7.1.1 is it safe for my phone, Good morning I have a message in my setting that want me to download ios7.1.1 is it safe for my phone

    Good morning I have a message in setting that want me to download iso7.1.1 is it safe for me to download

    For what silly reason do you believe it is not safe?
    If it were not safe, Apple would not have released it.

  • What is the recommended way to handle mouse click events for custom nodes that subclass Panes?

    Hi,
    I have created a custom node that is a StackPane containing a Label on top of a Polygon.
    import javafx.scene.control.Label;
    import javafx.scene.layout.StackPane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Polygon;
    public class CustomHexagon extends StackPane {
        private Polygon hexagon;
        private Label overlayText;
        public CustomHexagon( String text, double... points ) {
            this.hexagon = new Polygon( points );
            this.overlayText = new Label( text );
            overlayText.setStyle( "-fx-font-weight: bold;" );
            hexagon.setStroke( Color.GREEN );
            hexagon.setStrokeWidth( 5.0 );
            hexagon.setFill( Color.WHITE );
            this.getChildren().addAll( hexagon, overlayText );
    // Lays out the node where it should be according to the points provided for the Polygon.
            this.setLayoutX( points[0] - getLayoutBounds().getMinX() );
            this.setLayoutY( points[1] - getLayoutBounds().getMinY() );
    // Show the border of the StackPane.
            this.setStyle( "-fx-border-color: black; -fx-border-width: 1; -fx-border-style: dashed;");
        public String getOverlayText() {
            return overlayText.getText();
    I want to display a tesselation of these custom hexagons. Because a CustomHexagon is a StackPane, not a Polygon, MouseClick events can be picked up when the mouse is clicked outside of the stroke of the hexagon but still within the StackPane (which takes up a rectangle larger than the hexagon). The following program demonstrates this.
    public class Main extends Application {
        @Override
        public void start(Stage primaryStage) {     
            Group root = new Group();
            CustomHexagon[] hexagons = {
                new CustomHexagon( "00", 10.0, 10.0, 30.0, 10.0, 40.0, 27.3205080756, 30.0, 44.6410161512, 10.0, 44.6410161512, 0.0, 27.3205080756 ),
                new CustomHexagon( "01", 70.0, 10.0, 90.0, 10.0, 100.0, 27.3205080756, 90.0, 44.6410161512, 70.0, 44.6410161512, 60.0, 27.3205080756 ),
                new CustomHexagon( "02", 130.0, 10.0, 150.0, 10.0, 160.0, 27.3205080756, 150.0, 44.6410161512, 130.0, 44.6410161512, 120.0, 27.3205080756 ),
                new CustomHexagon( "03", 190.0, 10.0, 210.0, 10.0, 220.0, 27.3205080756, 210.0, 44.6410161512, 190.0, 44.6410161512, 180.0, 27.3205080756 ),
                new CustomHexagon( "04", 250.0, 10.0, 270.0, 10.0, 280.0, 27.3205080756, 270.0, 44.6410161512, 250.0, 44.6410161512, 240.0, 27.3205080756 ),
                new CustomHexagon( "10", 40.0, 27.3205080756, 60.0, 27.3205080756, 70.0, 44.6410161512, 60.0, 61.961524226799995, 40.0, 61.961524226799995, 30.0, 44.6410161512 ),
                new CustomHexagon( "11", 100.0, 27.3205080756, 120.0, 27.3205080756, 130.0, 44.6410161512, 120.0, 61.961524226799995, 100.0, 61.961524226799995, 90.0, 44.6410161512 ),
                new CustomHexagon( "12", 160.0, 27.3205080756, 180.0, 27.3205080756, 190.0, 44.6410161512, 180.0, 61.961524226799995, 160.0, 61.961524226799995, 150.0, 44.6410161512 ),
                new CustomHexagon( "13", 220.0, 27.3205080756, 240.0, 27.3205080756, 250.0, 44.6410161512, 240.0, 61.961524226799995, 220.0, 61.961524226799995, 210.0, 44.6410161512 ),
                new CustomHexagon( "14", 280.0, 27.3205080756, 300.0, 27.3205080756, 310.0, 44.6410161512, 300.0, 61.961524226799995, 280.0, 61.961524226799995, 270.0, 44.6410161512 ),
                new CustomHexagon( "20", 10.0, 44.6410161512, 30.0, 44.6410161512, 40.0, 61.961524226799995, 30.0, 79.2820323024, 10.0, 79.2820323024, 0.0, 61.961524226799995 ),
                new CustomHexagon( "21", 70.0, 44.6410161512, 90.0, 44.6410161512, 100.0, 61.961524226799995, 90.0, 79.2820323024, 70.0, 79.2820323024, 60.0, 61.961524226799995 ),
                new CustomHexagon( "22", 130.0, 44.6410161512, 150.0, 44.6410161512, 160.0, 61.961524226799995, 150.0, 79.2820323024, 130.0, 79.2820323024, 120.0, 61.961524226799995 ),
                new CustomHexagon( "23", 190.0, 44.6410161512, 210.0, 44.6410161512, 220.0, 61.961524226799995, 210.0, 79.2820323024, 190.0, 79.2820323024, 180.0, 61.961524226799995 ),
                new CustomHexagon( "24", 250.0, 44.6410161512, 270.0, 44.6410161512, 280.0, 61.961524226799995, 270.0, 79.2820323024, 250.0, 79.2820323024, 240.0, 61.961524226799995 ),
                new CustomHexagon( "30", 40.0, 61.961524226799995, 60.0, 61.961524226799995, 70.0, 79.2820323024, 60.0, 96.602540378, 40.0, 96.602540378, 30.0, 79.2820323024 ),
                new CustomHexagon( "31", 100.0, 61.961524226799995, 120.0, 61.961524226799995, 130.0, 79.2820323024, 120.0, 96.602540378, 100.0, 96.602540378, 90.0, 79.2820323024 ),
                new CustomHexagon( "32", 160.0, 61.961524226799995, 180.0, 61.961524226799995, 190.0, 79.2820323024, 180.0, 96.602540378, 160.0, 96.602540378, 150.0, 79.2820323024 ),
                new CustomHexagon( "33", 220.0, 61.961524226799995, 240.0, 61.961524226799995, 250.0, 79.2820323024, 240.0, 96.602540378, 220.0, 96.602540378, 210.0, 79.2820323024 ),
                new CustomHexagon( "34", 280.0, 61.961524226799995, 300.0, 61.961524226799995, 310.0, 79.2820323024, 300.0, 96.602540378, 280.0, 96.602540378, 270.0, 79.2820323024 ),
                new CustomHexagon( "40", 10.0, 79.2820323024, 30.0, 79.2820323024, 40.0, 96.602540378, 30.0, 113.9230484536, 10.0, 113.9230484536, 0.0, 96.602540378 ),
                new CustomHexagon( "41", 70.0, 79.2820323024, 90.0, 79.2820323024, 100.0, 96.602540378, 90.0, 113.9230484536, 70.0, 113.9230484536, 60.0, 96.602540378 ),
                new CustomHexagon( "42", 130.0, 79.2820323024, 150.0, 79.2820323024, 160.0, 96.602540378, 150.0, 113.9230484536, 130.0, 113.9230484536, 120.0, 96.602540378 ),
                new CustomHexagon( "43", 190.0, 79.2820323024, 210.0, 79.2820323024, 220.0, 96.602540378, 210.0, 113.9230484536, 190.0, 113.9230484536, 180.0, 96.602540378 ),
                new CustomHexagon( "44", 250.0, 79.2820323024, 270.0, 79.2820323024, 280.0, 96.602540378, 270.0, 113.9230484536, 250.0, 113.9230484536, 240.0, 96.602540378 )
            EventHandler<MouseEvent> mouseClickedHandler = new EventHandler<MouseEvent>() {
                @Override
                public void handle(MouseEvent t) {
                    CustomHexagon h = (CustomHexagon) t.getSource();
                    System.out.println( h.getOverlayText() );
            for ( CustomHexagon hexagon : hexagons ) {
                hexagon.setOnMouseClicked( mouseClickedHandler );
            root.getChildren().addAll( hexagons );
            Scene scene = new Scene(root, 400, 400);
            primaryStage.setTitle("Example");
            primaryStage.setScene(scene);
            primaryStage.show();
        public static void main(String[] args) {
            launch(args);
    After running this program, when one clicks within the intersection of two StackPanes (borders shown by dashed lines), the target of the mouse click event will be the StackPane on top as determined by the order in which they were added to their parent.
    This is a problem because there is only a small "T" shaped area within each hexagon that when clicked will target that hexagon with an event, rather than adjacent nodes.
    I would appreciate any reccomendations to solve this problem.
    Thanks,
    James Giller

    Hello, this is an evergreen. Just call setPickOnBounds(false) on the CustomHexagon.
    An issue tracking this problem is open here: https://javafx-jira.kenai.com/browse/RT-17024

  • I recently tried to download two movies.  Would not complete download. Movies were removed from que, however, the Ipade now shows 10MB of "Other" content that I cannot delete. Any suggestions?

    Tried to download two movies. Neither was successful. Apple removed them from download que and reimbursed cost. Now I have 10MB of "Other" content that I cannot delete.  There are NO movies listed on the Ipad or Itunes to delete.  Any suggestions?

    To Scxy1234: I also don't know why my paste special options only had 3 choices excluding "device independent bitmap'
    To Steve Fan: I created the new second user account in my window 8. It was set as a standard account, not as administrator account as my first original user account. Specifically, i used the same email address with this forum account's to
    create this second user account. It means that the second user account in my laptop also was a Microsoft account.
    Can you guess what happened after i had logged in to the second user account? I opened some random websites by firefox, copied and pasted all text and pictures on these websites into a word document and onenote successfully without any problems!!!!
    I saved this word document and exported this onenote section to a Usb. After that, i switched from second standard user account to my window administrator account and opened the two files which were saved to Usb previously. They were opened and displayed
    normally as the same as what i previously had seen in the second user account, i.e. pasted text and pictures were displayed normally. However, when i opened the same web address again to copy the same text and pictures to word and onenote, there were only
    text lines pasted successfully, excluding pictures! This old strange problem happened again when using original administrator account for logging in window. In contrast, when using the second standard user account to log in window, copying and pasting text
    and online pictures of Microsoft office worked normally.
    I truly don't figure out the reason(s) caused this strange problem. I think my case is a special case because i tried all solutions other people had tried but nothing worked.
    Please help me!
    p/s: when i logged in the second standard user account, i opened the paste special options in word and there were only 3 choices under paste special options, excluding "device independent bitmap"

  • Files that won't delete

    I have a multitude of files that will not delete for any reason whatsoever. When I try and open them the message "can't be opened because the original item can't be found" and the following options occur "Delete Allias", "Fix Allias", and "OK". I've tried to delete the allias as well as fix the allias but nothing seems to happen. The main reason I'm trying to delete these files is because they are taking up a lot of space. Any and all help would be fantastic as I have no idea how to go about this anymore>
    Thanks.

    These are just a few of the files that won't let me delete them.

  • I have Canon Pixma MP560 printer that I would like to connect to my I Mac wirelessly. I do not have the set up CD_ROM as the printer was used by another person previously. Will this printer be compatible and can I download the software needed from inter

    I have a Canon Pixma MP560 that I would like to link up with my I Mac (snow leopard 10.6.8) wirelessly. The printer was owned by another person previously and I do not have the set up CD-ROM. Will this printer be compatible and can I download the required software from the internet?
    Thank you.

    Apple's Knowledge Base for Snow Leopard & Lion Printer solutions and suggestions.
    Either call Canon or visit their customer support website.

  • How can i save the shapes that i have drawn to custom shapes?

    hi using Lasso i have created a good shpae that i require in my work. so now i want to save that shape i have drawn to custom shapes so that i can use it later also in my future works. how to achieve this? Thanks in advance.

    Hello, right click inside your selection, select "make work path", then go to edit>define custom shape... It will now be availalbe to be reused immediately.
    To make sure it is permanently saved, go to edit>Presets>presets manager, change the drop down to custom shapes, target the new shape, and clic on Save set...

  • HT201441 I restored my phone and now it is asking me to activate it and i am trying but it is saying i cant activate my phone with my own id that i have to use the id that i used to set up my iphone the very first day i got it but that is the id. help ple

    I restored my phone and now it is asking me to activate it and i am trying but it is saying i cant activate my phone with my own id that i have to use the id that i used to set up my iphone the very first day i got it but that is the id. help please

    You can try calling Apple support at 0800-761-0880 and explaining the situation to them. Perhaps there will be something they can do to help. Try asking to speak with a Customer Relations representative, though I don't know if they have them in Brazil.
    Regards.

Maybe you are looking for

  • Can't factory restore my Apple TV

    After a failed sync, I have been trying to get my AppleTV working again. On startup, I get the startup sequence where I can ultimately choose Reset, Diagnostics or Factory Restore. Reset ends up back at the same screen. Diagnostics says everything is

  • Disable the CTRL + Copy Option in Webdynpro abap

    Hi All , I Have one requirement , I have created Text View and Formatted Text View . now client asking me to avoid the coping the text by using CTRL + C , anyhow Right click copy will not work in Webdynpro abap , now they came with CTRL + C option sh

  • Re: Can't upgrade Qosmio X300-130 to Win 7 64bit

    Hi. is it not possible to upgrade my X300-130 to Windows 7? It says that the BIOS does not allow 64-bit. Please answer. Alex.

  • Anti-Virus-Software on SAP-Apps - Exclude list

    Hi All, we are planing to install the Anti-Virus-Software Forefront on our Windows SAP-Application-Server (Dialog Instances). The exclude list for the virusscanner: C:\usr\sap\MRP\D20\work C:\usr\sap\DAA\SMDA97\work C:\usr\sap\MRP\work C:\WINDOWS\NTD

  • Where Is The Edge Code Compiler?

    I was just wondering where the Java Compiler is supposed to be accessed in the Edge Code application? I have a fairly long Java source code program which pretty badly needs compilation as soon as possible.