Macintosh Software Search: Try our fast new search technology  
|
DESCRIPTION

FilesInymCM is a contextual menu item for:

  • Showing/hiding/toggling the display of extensions of selected files in the Finder
  • Appending, prepending or renaming selected files in the Finder with the contents of the clipboard.
  • Changing the character case of the selected files in the Finder.

These operations can be applied to a folder's contents or the folder itself. Use the system preference pane to specify your preference.

FilesInymCM is part of the Limit Point Software "Utilities Bundle." Visit the Utilities home page at Utilities for a list of all the software available. Updates are always free, and new products always included.

WHAT'S NEW
Version 1.0.2:
  • Added commands to change the character case of the selected files in the Finder.
Version 1.0.1:
  • Fixed a bug that could prevent the plugin from loading.
  • Added commands to append, prepend and rename selected file names with the clipboard contents.
  • Added an option in the preference pane to specify whether the program should operate on the contents of a folder or the folder itself.
REQUIREMENTS
Mac OS X 10.4 or later.


SCREENSHOT

Developer:Limit Point Software
Downloads:528
  - Version d/l:191
Utilities:Contextual Menus
License:Shareware
Date:10 May 2008
Platform:PPC/Intel
OTHER PEOPLE SUGGEST
    No similar products suggested yet
    Suggest something else:
    FilesInymCM User Reviews (4 posts)Write A Review
    Feb 22 2008

    BRIAN.MCGONIGLE  What garbage! Just create two applescripts to do the same thing for free! Here's the code:

    Filename: "Hide Selected File Extensions"

    Code:

    tell application "Finder"

    set the selection_list to selection

    if (count of selection_list) < 1 then

    return

    else

    repeat with the_item in selection_list

    set the extension_state to get extension hidden of the_item

    if the extension_state is not true then

    set the extension hidden of the_item to true

    end if

    end repeat

    end if

    end tell

    Filename: "Show Selected File Extensions"

    Code:

    tell application "Finder"

    set the selection_list to selection

    if (count of selection_list) < 1 then

    return

    else

    repeat with the_item in selection_list

    set the extension_state to get extension hidden of the_item

    if the extension_state is true then

    set the extension hidden of the_item to false

    end if

    end repeat

    end if

    end tell

    Just put both scripts in your "~/Library/Scripts/Applications/Finder" folder and enable the script menu. Done.  (Version 1.0)

    [ 3 Replies - Reply ]
    View all 4 posts >>