Onyx to make .ds_Store invisible

Like others I have a file (.DS_Store) visible on my desktop that is just sorta annoying. From reading other posts I know this is an important file and I don't want to hose up my system. Someone suggested making the file invisible using Onyx but the thread does not explain how to use Onyx to do so.
I downloaded the latest version of Onyx. Can anyone provide guidance on how to use it to make .DS_Store invisible? If this is a bad idea for a newbie Mac user to be dabbling in just say so and I can live with .DS_Store on my desktop.

.DS_Store files aren't important system files, they're files made by Finder that keep track of window and icon positions for the folder the .DS_Store file is in. Feel free to delete them, the worst thing that could happen is your desktop icons reset their positions. They reappear anyway, with default icon/window settings (I'm STILL trying to make some kind of script that deletes all .DS_Store files because of all my messed up window sizes and positions )
Anyway, open up OnyX (click Cancel for the Verifying Startup Volume popup), type in your password, click Parameters, then Finder, and uncheck "Show hidden files and folders".

Similar Messages

  • Make fields invisible in SAPLBBP_MON_SC 1200

    Dear SRM-gurus,
    for making fields unvisible in Shopping Cart Detail you can go to SE51 --> SAPLBBP_SC_UI_ITS --> e.g. 100 and set fields whether "Invisible" or in Screen Painter double-click on the specific field and enter "MOR" in the 4th group field.
    This works perfectly for SAPLBBP_SC_UI_ITS.
    Now we'd like make the same restriction of fields in "Monitor Shopping Cart" transaction.
    --> SE51 --> SAPLBBP_MON_SC --> 1200
    Here when I click on Layout and set the field as "Invisible" this works alright for the description of the fields (e.g. Description) BUT for all the fields where values can be entered there is no way to make them invisible in transaction BBP_MON_SC. No matter if I set Invisible and/or the value MOR in 4th group field.
    Do you have any idea how I can also make the dropdown and value fields invisible (not available)?
    Thanks a lot for your help.Points will be given!
    Best regards,
    Henning

    Hi Henning,
    The trick cannot work in SAPLBBP_MON_SC_1200, because in the application there is no handling for the modification group. That is the difference with SAPLBBP_SC_UI_ITS / 0100. We used the trick there to avoid modifications in HTML because HTML has no modification-assistent and ABAP does.
    In your case I would suggest to modify the HTML-template (service BBP_MON_SC, template SAPLBBP_MON_SC 1200 ) to hide the unwanted fields simply by deleting or commenting the unwanted tablerows.
    Regards,
    Hendrik-Jan

  • Screen is not Visible after make it invisible

    I maked the screen fields together and formed group1and dinamically changed to invisible by setting
    loop at  screen.
    if screen-GROUP1 = 'INB'.
    screen-Invisible = 1 .
    modify screen.
    endif.
    endloop.
    But when i tried to make visible the group1 its not showing ..please provide the valued information
    regards
    sarath

    How are you making the group1 fields visible? I think you need to have a condition around the part of the code that makes fields invisible otherwise they will always be made invisible:
    loop at screen.
      if screen-GROUP1 = 'INB'.
        if <some condition where fields must be made invisible>
          screen-Invisible = 1 .
          modify screen.
        endif.
      endif.
    endloop.

  • In snow leopard, how make files "invisible"?

    in snow leopard, how make files "invisible"?

    You can make files or folders invisible from the Terminal. Enter the following command:
    chflags hidden
    Don't press enter yet. Put a space after the the word hidden and then drag and drop the item you want to hide into the Terminal window. Now press enter. The item will disappear from view.
    You'd better copy that path down though, because if you want to unhide it, you need to know the full path and file or folder name.
    As a test, I did one as:
    chflags hidden /Users/myaccount/Desktop/test.tif
    This of course is a file named test.tif sitting on the desktop of my user account. Upon hitting enter, it disappeared. To get it back, you unhide it:
    chflags nohidden /Users/myaccount/Desktop/test.tif
    The item will reappear. You can see where it would be very important to have that entire path written down. If you forget the name or where it is, you'll be lucky to find it by guessing. It's either that, or you'll have to use the trick to show hidden and system files. Then you'll be able to see the hidden item you're dragging and dropping item into Terminal to unhide it.

  • /Volumes is now visible. How do I make it invisible????

    Simple question...
    /Volumes is now visible. I don't understand why. But anyway...
    How do I make it invisible????
    Thanks

    This has happened many times before and a poster, Kappy, gave a great answer. I like saving particularly good/important posts for references later on.
    This one was given by Kappy and I take no credit for the good advice. If he posts here and it has solved your problem please give him the "answered" post.
    Here it is:
    Open your Terminal app (Utilities folder) and at the prompt enter the following lines pressing return at the end of each line. Comments will be indented:
    prompt> cd /
    prompt> sudo pico .hidden
    You will be asked to enter your admin password. It will not be echoed.
    The editor will open the .hidden file for editing. Enter the filename or foldername of each item you want hidden - one entry per line. When you are finished press CONTROL-X. You will be asked if you want to save the file. Enter "y" (Yes) and press return. You will be asked for the filename to save or use .hidden. Simply press return to save the file and exit the editor. You will be returned to the prompt.
    prompt> cat .hidden
    Will list the contents of the file to the Terminal window. This will verify that what you did worked correctly.
    You can now quit the Terminal. On your next restart the offending files and folders will now be hidden as they should be.
    The .hidden file contains no pathnames, just the file or folder. For example, mine reads as follows:
    SDKDesktop:/ skapplin$ cat .hidden
    etc
    tmp
    var
    SDKDesktop:/ skapplin$

  • How to make jButton invisible but workable in Eclipse Visual Editor

    SOS, to all Programmers, thx for your attention i recently encounter a problem when i do my codings in eclipse visual editor, i can;t seem to make my jButton invisible, i plan to
    insert image then put jButton over them, make them invisible so i can just click the image and go elsewhere (E.g. a pop up box or link), but i try all ways and it can't work, plz spot the solution for me. thanks in advance.

    You can't click an invisible button, so you'll have to put the image on the button (as icon) or add a MouseListener to whatever component you're using to show the image.

  • Exception when trying to make cursor invisible

    i don't want my application to display a window, so i'm creating a custom cursor from a 1X1 transparent image, and set the cursor to that... after trying that i get an exception...
    here's the code:
    try
                BufferedImage ec=new BufferedImage(1,1,BufferedImage.TYPE_INT_ARGB);
                Cursor cc=Toolkit.getDefaultToolkit().createCustomCursor(ec,
                        new Point(1,1),"");
                frame.setCursor(cc);
            catch(Exception e)
                System.out.println("Couldn't make cursor invisible: "+e.toString());
                e.printStackTrace();
            }and here's the exception:
    java.lang.IndexOutOfBoundsException: invalid hotSpot
         at sun.awt.CustomCursor.<init>(CustomCursor.java:61)
         at sun.awt.X11CustomCursor.<init>(X11CustomCursor.java:26)
         at sun.awt.X11.XCustomCursor.<init>(XCustomCursor.java:27)
         at sun.awt.X11.XToolkit.createCustomCursor(XToolkit.java:742)
         at no_germs.pong.Game.<init>(Game.java:101)
         at no_germs.pong.GameLauncher.<init>(GameLauncher.java:157)
         at no_germs.pong.GameLauncher.main(GameLauncher.java:87)
    what's my problem, and is there a way around it? if not, can i make the cursor invisible some other way?

    Image image = Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, new int[16 * 16], 0, 16));
    Cursor transparentCursor = Toolkit.getDefaultToolkit().createCustomCursor(image, new Point(0, 0), "transparentCursor");
    frame.setCursor(transparentCursor);

  • Possible to make faces invisible?

    Good luck in 2012.
    Is it possible in iMovie 09 to make faces invisible, f.e. with a blurred oval? How to fix this?
    Thanks in advance.

    Today I got in another forum the tip to look at this video:
    http://www.youtube.com/watch?v=ellyC3P81QQ
    That's great. This method will do fine.

  • Make fields invisible based on selection in module pool screen

    I have a several fields in my module pool screen.
    There i have a box called Ref Obj.
    Inside the box i have fields a b c d e f.
    suppose my input has parameter 1.
    I need to show only fielda a and b inside the box
    suppose my input has parameter 2.
    I need to show only fielda c and d inside the box
    suppose my input has parameter 3.
    I need to show only fielda e and f inside the box
    suppose my input has parameter 4.
    I should not show any fields and box should be invisible.
    I would appreciate if any one could help me regarding this
    Thanks in advance

    hi,
    go through this code, and make the required changes according to u'r requirement but the logic is same.
    TABLES: mara , lfa1.
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p_matnr LIKE mara-matnr DEFAULT 'M633640000' MODIF ID m1,
                p_ersda LIKE mara-ersda DEFAULT '30.06.2004' MODIF ID m2,
                p_aenam LIKE mara-aenam DEFAULT 'DOVIND' MODIF ID m3,
                p_matkl  LIKE mara-matkl DEFAULT '0000' MODIF ID m4,
                p_meins LIKE mara-meins DEFAULT 'ST' MODIF ID m5,
                p_mbrsh LIKE mara-mbrsh DEFAULT 'M' MODIF ID m6,
                p_vpsta LIKE mara-vpsta DEFAULT 'KV' MODIF ID m7.
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME.
    PARAMETERS: p_lifnr LIKE lfa1-lifnr DEFAULT 5070001063 MODIF ID s1 ,
                p_land1 LIKE lfa1-land1 DEFAULT 'FR' MODIF ID s1,
                p_name1 LIKE lfa1-name1 DEFAULT 'HONDA' MODIF ID s3,
                p_ort01 LIKE lfa1-ort01 DEFAULT 'PARIS' MODIF ID s4.
    SELECTION-SCREEN: END OF BLOCK b2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'M1' .
          screen-input = 0.
          MODIFY SCREEN.
        ELSE.
          IF screen-group1 = 'M2' .
            screen-invisible = 1.
            MODIFY SCREEN.
          ELSE.
            IF screen-group1 = 'M3' .
              screen-intensified = 1.
              MODIFY SCREEN.
            ELSE.
              IF screen-group1 = 'M5' .
                screen-length = 10.
                MODIFY SCREEN.
              ELSE.
                IF screen-group1 = 'M6' .
                  screen-active = 0.
                  MODIFY SCREEN.
                ELSE.
                  IF screen-group1 = 'M7' .
                    screen-display_3d = 1.
                    MODIFY SCREEN.
                  ELSE.
                    IF screen-group1 = 'M4' .
                      screen-output = 0.
                      MODIFY SCREEN.
                    ELSE.
                      IF screen-group1 = 'S1' AND
                      screen-name = 'P_LIFNR'.
                        screen-values_in_combo = 1.
                        MODIFY SCREEN.
                      ELSE.
                        IF screen-group1 = 'S1' AND
                        screen-name = 'P_LAND1'.
                          MODIFY SCREEN.
                        ENDIF.
                      ENDIF.
                    ENDIF.
                  ENDIF.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    <b>please reward points if helpfull.</b>
    with regards,
    radhika kolluru.

  • JavaScript to make button invisible button visible again

    Hi
    I have been trying to create a form in LiveCycle Designer (part of Acrobat Pro ) that keeps a button (call it #1)invisible until another button (call it #2) is clicked, at which click event the invisible button(#1) becomes visible. I've been using JavaScript and either setting the #1's presence as "invisible" in the object editor or scripting it as a formready event presence = "invisible". I've scripted in the click event for #2: #1.presence = "visible". This doesn't work to get #1 to show on #2's click. I've tried a few more similar script with no success.
    I'm relatively new to Designer, though have some experience with JS.
    Is there another way to script to initially make an object "invisible" and get it to become visible by a runtime event?
    I would appreciate any help.
    Kind Regards,
    Stephen

    Template needs to be saved as Dynamic in order to see those dynamic features working. You have that saved as Dynamic and still have no luck try the following....
    #1.presence = "visible";
    xfa.layout.relayout();
    Note: 1. A button name can not start with "#" hope you are using some meaningful names.

  • Can I make text invisible?

    Back in the days, I used invisible text format to make editing and organizing comments in MS Word. I used them like headers, but they didn't have to be there. When I printed the doc, I turned "invisible text off" and the visible text formatted itself (the space used by invisible text—whether a line or paragraph—closed up).
    It was a very handy way to organize large docs, by using headings, but not having to delete them when printing.
    I don't see a way to do that in Pages. Did I miss something?

    Robert
    Not the same thing, it still occupies space.
    Brentbin
    Comments do not directly shrink main text. Only the screen view changes to accomodate the comments. They need to be turned off when printing however.
    Peter

  • Make tabs invisible in BP (business partner master creation)

    Hi,
    How do I disable tabs which are not necessary in BP transaction code?
    I want only few tabs which are relevant and make all other invisible.
    Your inputs are appreciated.
    Regards
    Komal

    Hi,
    ...in the IMG: Field selection for BP.
    Rg
    Lorenz

  • PDF Maker producing invisible text

    When I use PDF Maker in Word 2003 SP3 on Windows XP SP3, some of the text in my headers and footers is rendered invisibly. It's still there in the PDF, becasue I can select it in Acrobat 7.0 Professional and even cut it to the clipboard. It's just invisible.
    Curiously, not all header and footer text is affected. For example, left-hand page headers appear normally, right-hand headers are invisible.
    If I print to Adobe PDF, rather than using PDF Maker, the headers and footers are fine.
    This has only started happening recently. A few weeks ago, I had no problems.
    Any ideas?

    If you really have just 7.0, then try an update (download the updates from Adobe.com > downloads > updates). Be sure to install the updates in order. The last time I thought that the font issue was big was with AA5.0, but maybe it is still and issue.

  • SNC tab on SU01 - make it invisible or uneditable

    Dear all,
    We are looking for a alternative to make this tab/field SNC  unchangable or invisible in SU01 ?
    Could you please suggest ?
    Thanks in advance and best regards,

    You can use the same approach (transaction variant) as in your previous question about the SMTP address, particularly if you have already made that change.
    Other options you might want to take a look into:
    - If I remember correctly, the check in SU01 SNC tab is the same as the check in SNC1 => it is checking the maximum authority. They user needs * for the user group of object S_USER_GRP. Please check that to see whether exclusing something will prevent use of it completely.
    - I heard about BAdI's which have replaced the previous user exists in SU01. Perhaps one of them are capable to influencing the visibility of the tabs, now that SNC is always visible.
    - Use SU01D for everything, and create your own little user administration transaction to do that which you still need SU01 for (considering that SSO and user provisioning replaces much of it's work, as per your previous questions). Roles can be assigned in PFCG.
    Cheers,
    Julius

  • Make Tab Invisible or Inactive

    I'm developing in LabWindows/CVI 2013.
    I have a tab control on a panel with 3 tabs.  The 3rd tab is "Future Features".
    Presently I have the tab set to "Initially dimmed".
    When the panel is displayed you can still see the tab and click on it and see all the controls on that tab.  (you can't operate them and that's good)
    I'd rather have it not accessible at all.
    Is there any way to make the tab invisible?
    Or make it so when you click the tab, it doesn't switch to that tab?
    I don't want the operator to see the "work in progress" on that tab.
    Kirk
    Solved!
    Go to Solution.

    To hide a tab page you can use SetTabPageAttribute with attribute ATTR_VISIBLE. There is no built-in way to make a tab page visible but not selectable, but you can set a calback for the tab control and trap EVENT_ACTIVE_TAB_CHANGE to return to another page when the unwanted one is selected, but the operator will briefly see the "forbidden" one.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

Maybe you are looking for