Hitting "Enter" on selected folder icon renames instead of opens

As a former Windows user, I'm used to being able to hit "Enter" to open a selected folder or file in Finder, but hitting "Enter" on a selected folder in OS X merely sets it to rename the file (the same as F2 in Windows). Is there an equivalent of the "Enter" key in Windows in OS X?

Additionally, double-clicking on any folder will open it in a new window. Likewise, double-clicking on any application will launch it, on any file will launch the parent app or open a window if the parent app is already running. Since your a newcomer to the Mac, peruse
Switching from Windows to Mac OS X,
Basic Tutorials on using a Mac,
MacFixIt Tutorials, and
MacTips Learning Centre.
Additionally, *Texas Mac Man* recommends:
Quick Assist.
Welcome to the Switch To A Mac Guides, and
A guide for switching to a Mac.

Similar Messages

  • HT4236 My device iphone 4 is synced with my pc i tunes.when i go to sync photos from list. it by defaults selects all folder icon. selected folder iconis disbale i cannot enable the same

    Hi,
    The selected folder icon is disable wben i try ti sync photos from.
    All folders option is by defaultselected..i cannot selected the specific folder option
    Please assist how i should enable the selected folder option
    Thanks
    Charmie

    Hi,
    The selected folder icon is disable wben i try ti sync photos from.
    All folders option is by defaultselected..i cannot selected the specific folder option
    Please assist how i should enable the selected folder option
    Thanks
    Charmie

  • Word and Excel file and folder icons missing in File Open dialog box

    Running office 365 on Windows 7 Pro: In Word and Excel, when opening and browsing for files in the file Open dialog box, all file and folder icons are missing.  This problem does not occur within Windows Explorer.

    Can you open Word/Excel files normally?
    Go to File>Advanced>Disable hardware graphics acceleration
    Start Office in safe mode to troubleshoot the issue:
    http://office.microsoft.com/en-001/support/why-cant-i-start-my-office-2013-application-HA104011864.aspx
    If the issue persists, do a repair for your Office suites in Control panel>Program and features>Office>Change>Repair
    Tylor Wang
    TechNet Community Support

  • Almost there with a folder & file renaming script

    Hi all,
    I have been trying to write a script that will replace text in every file and folder from given folder, and all of its subfolders and files.
    I have manage to tweek the apple supplied script to rename all files but it keeps crashing when it renames a folder. I am guessing it is because if the parent folder gets renamed all the aliases to the other folders are broken?
    Can anybody please help, I'm sure this script would be of use to many people!
    Here is the script as it stands now
    try
    tell application "Finder"
    set source_folder to choose folder with prompt "Select folder to rename files in:"
    end tell
    end try
    tell application "Finder"
    display dialog "Search and replace in:" buttons {"File Names", "Folder Names", "Both"} default button 3
    set the search_parameter to the button returned of the result
    end tell
    repeat
    tell application "Finder"
    display dialog "Enter text to find in the item names:" default answer "" buttons {"Cancel", "OK"} default button 2
    set the search_string to the text returned of the result
    if the search_string is not "" then exit repeat
    end tell
    end repeat
    repeat
    tell application "Finder"
    display dialog "Enter replacement text:" default answer "" buttons {"Cancel", "OK"} default button 2
    set the replacement_string to the text returned of the result
    if the replacement_string contains ":" then
    beep
    display dialog "A file or folder name cannot contain a colon (:)." buttons {"Cancel", "OK"} default button 2
    else if the replacement_string contains "/" then
    beep
    display dialog "A file or folder name cannot contain a forward slash (/)." buttons {"Cancel", "OK"} default button 2
    else
    exit repeat
    end if
    end tell
    end repeat
    tell application "Finder"
    display dialog "Replace “" & the search_string & "” with “" & the replacement_string & "” in every item name?" buttons {"Cancel", "OK"} default button 2
    end tell
    tell application "Finder"
    set a to every folder of entire contents of source_folder
    repeat with aa in a
    -- looping within folders of selected source folder
    set aastring to aa as string
    set all_files to (every file in aa)
    repeat with ff in all_files
    -- looping within the files for the current folder
    set this_item to ff
    set this_item to (this_item) as alias
    set this_info to info for this_item
    set the current_name to the name of this_info
    set change_flag to false
    if the current_name contains the search_string then
    if the search_parameter is "File Names" then
    set the change_flag to true
    else if the search_parameter is "Both" then
    set the change_flag to true
    end if
    if the change_flag is true then
    -- replace target string using delimiters
    set AppleScript's text item delimiters to the search_string
    set the textitemlist to every text item of the current_name
    set AppleScript's text item delimiters to the replacement_string
    set the newitemname to the textitemlist as string
    set AppleScript's text item delimiters to ""
    my setitem_name(thisitem, newitemname)
    end if
    end if
    end repeat
    -- now we have renamed all the files lets rename the folder
    set this_item to aa
    set this_item to (this_item) as alias
    set this_info to info for this_item
    set the current_name to the name of this_info
    set change_flag to false
    if the current_name contains the search_string then
    if the search_parameter is "Folder Names" then
    set the change_flag to true
    else if the search_parameter is "Both" then
    set the change_flag to true
    end if
    if the change_flag is true then
    -- replace target string using delimiters
    set AppleScript's text item delimiters to the search_string
    set the textitemlist to every text item of the current_name
    set AppleScript's text item delimiters to the replacement_string
    set the newitemname to the textitemlist as string
    set AppleScript's text item delimiters to ""
    my setitem_name(thisitem, newitemname)
    end if
    end if
    end repeat
    end tell
    beep 2
    on setitem_name(thisitem, newitemname)
    tell application "Finder"
    --activate
    set the parentcontainerpath to (the container of this_item) as text
    if not (exists item (the parentcontainerpath & newitemname)) then
    try
    set the name of this_item to newitemname
    on error the error_message number the error_number
    if the error_number is -59 then
    set the error_message to "This name contains improper characters, such as a colon (:)."
    else --the suggested name is too long
    set the error_message to error_message -- "The name is more than 31 characters long."
    end if
    --beep
    tell me to display dialog the error_message default answer newitemname buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {newitemname, button_pressed}
    if the button_pressed is "Skip" then return 0
    my setitem_name(thisitem, newitemname)
    end try
    else --the name already exists
    --beep
    tell me to display dialog "This name is already taken, please rename." default answer newitemname buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {newitemname, button_pressed}
    if the button_pressed is "Skip" then return 0
    my setitem_name(thisitem, newitemname)
    end if
    end tell
    end setitemname
    Message was edited by: James @ Hakoona

    Hmmm, that script is definitely a bit old.
    An alias will still refer to the same file or folder, even if renamed. Your script does not crash on my machine, but the list of folder items to rename is empty. You are doing a lot more work than you really need to - you can just tell the Finder to get a list of file or folders so you don't have to do all that looping. By the way, you do not need the Finder to display the dialogs - normally an application tell statement should just contain terminology for that application (i.e. commands specific to the application).
    The following script replaces your loops through the files and folders with statements that just get all of the files or folders (or both). I also renamed the buttons so that their names/selection can be used elsewhere, such as some of the dialogs.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set source_folder to choose folder with prompt "Select a folder to rename files in:"
    display dialog "Search and replace text in the names of every:" buttons {"file", "folder", "file and folder"} default button 3
    set search_parameter to button returned of the result
    repeat
    display dialog "Enter the text to find in " & search_parameter & " names:" default answer "" buttons {"Cancel", "OK"} default button 2
    set search_string to text returned of the result
    if search_string is not "" then exit repeat
    end repeat
    repeat
    display dialog "Enter the replacement text:" default answer "" buttons {"Cancel", "OK"} default button 2
    set replacement_string to text returned of the result
    try
    if replacement_string contains ":" then error "colon (:)."
    if replacement_string contains "/" then error "forward slash (/)."
    exit repeat
    on error error_message
    beep
    display dialog "A file or folder name cannot contain a " & error_message buttons {"Cancel", "OK"} default button 2
    end try
    end repeat
    display dialog "Replace “" & search_string & "” with “" & replacement_string & "” in every " & search_parameter & " name?" buttons {"Cancel", "OK"} default button 2
    tell application "Finder"
    try
    if search_parameter is "file" then
    set item_list to files of entire contents of source_folder
    else if search_parameter is "folder" then
    set item_list to folders of entire contents of source_folder
    else -- both
    set item_list to entire contents of source_folder
    end if
    on error -- no items
    set item_list to {}
    end try
    if class of item_list is not list then set item_list to {item_list} -- single item
    repeat with this_item in item_list
    set current_name to the name of this_item
    if current_name contains the search_string then
    -- replace target string using delimiters
    set AppleScript's text item delimiters to search_string
    set text_item_list to text items of current_name
    set AppleScript's text item delimiters to replacement_string
    set new_item_name to text_item_list as text
    set AppleScript's text item delimiters to ""
    my set_item_name(this_item, new_item_name)
    end if
    end repeat
    end tell
    beep 2
    on set_item_name(this_item, new_item_name)
    tell application "Finder"
    --activate
    set the parent_container_path to (the container of this_item) as text
    if not (exists item (the parent_container_path & new_item_name)) then
    try
    set the name of this_item to new_item_name
    on error the error_message number the error_number
    if the error_number is -59 then
    set the error_message to "This name contains improper characters, such as a colon (:)."
    else --the suggested name is too long
    set the error_message to error_message -- "The name is more than 31 characters long."
    end if
    --beep
    tell me to display dialog the error_message default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {new_item_name, button_pressed}
    if the button_pressed is "Skip" then return 0
    my set_item_name(this_item, new_item_name)
    end try
    else --the name already exists
    --beep
    tell me to display dialog "This name is already taken, please rename." default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {new_item_name, button_pressed}
    if the button_pressed is "Skip" then return 0
    my set_item_name(this_item, new_item_name)
    end if
    end tell
    end set_item_name
    </pre>

  • Hit enter in url bar and opens new tab automatically

    is it possible, that when i hit enter in the address bar, it must automatically open up a new tab with that adress, just like AM browser has?

    you can open tab easily with CTRL+T
    you can select URL and Click it with + CTRL,it will autometically open with a new tab

  • How do i turn a photo clockwise or anti-clockwise in a folder icon?

    How do i turn a photo clockwise or anti-clockwise in a folder icon?

    if you open the info pane on the folder with  command i
    From this info pane in the upper left you can paste anything you want,  in your case the rotated photo.
    Rotate your photo in Preview, save, select all, copy and paste.

  • System folder icon resources

    Where can I find the resource files for the standard Mac folder icons in both the open and closed state?
    I've looked in the System folder but can't find them.

    /System/Library/CoreServices/CoreTypes.bundle (right click to show package contents)/Contents/Resources
    -mj

  • I cannot get my text to advance to the next line when hitting enter???

    I cannot get my text to advance to the next line when hitting enter.
    Any suggestions??

    When I open Keyboard Shortcuts, the name field under Set: is highlighted in dark blue.  I cannot type a name in it.  The button NEW SET remains ungray.  When I click on the button no change happens to allow me to create new set.
    I also noticed that I am unable to scroll down in the InDesign document using scroll off mouse.
    So I have to click and drag to get around not using the up/down arrows when moving the illustrations.
    If I have to enter text I will use storybook.
    If I have to delete text I will use the InDesign document.
    Very limited with the functionality - I was better off using Adobe InDesign 2.0!
    Will need more time to investigate why the keyboard and mouse are not being recognized.  At this time I will have to use the work-arounds to meet deadlines and revisit later.

  • How do I get the playhead to move to the beginning of the cycle area when selected instead of bar 1 after hitting enter?

    How do I get the playhead to move to the beginning of the cycle area when selected instead of bar 1 after hitting enter?

    Grateful pirate wrote:
    Thanks but I think it's more of a setting thing.
    Worked for years in 9 and know my the key commands. Just takes up  lot of extra time. I know there must be a solution just can't find it myself.
    Thanks again.
    Oh, I see…….when I want something like this to happen I would just engage the >Go To Start<  command (0 on the numeric keyboard in my case) and the play head will position at the beginning of a cycle area (if one is active of course)!
    Hope this helps a bit……..

  • Windows Folder icon instead of Officejet 6500a Plus E710n icon in Devices and Printers

    Can anyone help me to get the OfficeJet 6500a Plus e710n printer icon to display properly in Devices and Printers?
    I recently reinstalled Windows 8.1.  However, when I installed my printer, instead of the printer icon appearing in Devices and Printers I get a generic yellow Windows folder icon.  The Fax icon is OK, just the printer icon is wrong.
    If I double click on the icon, I get a mostly blank page with a message near the top saying: "Updated information is available about your device.  Click here to download or learn more."  If I click on the notice, a dropdown menu appears with "Download updated information" or "Learn more".  If I choose downloaded update information, a new printer window appears which is mostly blank except for a message at the centre of the window which says, "No tasks are available on this page"  The Learn more option just gives me info about updating drivers.
    The printer icon on the Start menu is fine.
    I've used HP Print and Scan Doctor to uninstall and reinstall my printer but this hasn't helped.  The program found a problem with the printer driver and fixed it, but that hasn't changed the icon either.
    I am running Windows 8.1 Pro 64bit fully up to date, and used the latest full version of the HP installation program for the printer (not the basic version) and HP Print and Scan Doctor v4.6.
    This question was solved.
    View Solution.

    Hi,
    Try following these steps and let me know if that may help:
    From the control Panel select Network and internet and open the Network and Sharing Center.
    Click on Change Advanced Sharing Center.
    Ensure that Network Discovery is trned on but uncheck the box next to "Turn on automatic setup of network connected devices".
    From devices and printer right click the printer and select Remove Device, repeat the for the Fax icon.
    Note: if no such option exists for the printer follow the next steps.
    Right click the background area and select Device Mahager.
    Remove any instance of the printer from Imaging Devices, Printers, Print Queues, Multifunction Adaptors, Other Devices (if a such exists).
    Once you are done the printer should no longer appear under Devices and Printers...
    Open teh HP Officejet 6500 E710 software, select Connect a new Printer and check for any differnce.
    Hope that helps,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Mavericks Folders displays as PLIST instead of the blue folder icon

    Some days ago some of my folders start to show in the finder as PLIST instead of the normal blue folder icon. The number of folders that shows in that way are increasing, i don't know what trigger this. I have tried with restoring the permissions, but nothing seems to fix the problem.
    i'm using mavericks 10.9.5. i also attached a screenshoot. Hope someone cans help me.
    https://38.media.tumblr.com/9fb877a0f3cc1cd142ea84bc5605cdf1/tumblr_nf1l0u9Xg91r o9q1no1_400.png

    Do a backup.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.finder.plist.  Move the .plist to your desktop.
    Re-launch Finder by restarting and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer one.

  • When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?

    When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?
    All of a sudden I noticed that most of the folders on my computer were no longer using the folder icon, but the generic document icon. I had to manually change back the icon being used by opening Get Info for each folder and copying and pasting the generic folder icon from some folders that remained unchanged. Now whenever I create a New Folder (right click -> "New Folder"), the icon that shows up is the generic document icon (white page with top right corner turned down). And I have to manually change it so it shows up as a folder in Finder or on my desktop. I don't know why or how this switch happened. All of the folders now on my computer look ok, but I need to change the default so when I create a New Folder it uses the correct icon.
    I have also Forced Relaunch of my Finder and rebooted the system. I downloaded Candybar but am not sure what will fix anything, so I haven't proceeded.
    Anyone know how I can do this? Thanks.

    Anyone?

  • How can i use text only instead of text plus the folder icon in the bookmarks toolbar; older firefox allowed this.

    I prefer using text only instead of text plus a folder icon in the bookmarks toolbar because it used less space and I can display more bookmark folders in that toolbar. Is that possible in Firefox 4.0? It was possible in the earlier versions of Firefox. If it is possible in Firefox 4.0 how do I do that? Thank you.

    First install the "Stylish:" extension then you have thousands of styles available to choose from, most consist of only a few lines, and you can modify them to suit yourself.
    * '''Stylish''' :: Add-ons for Firefox<br>https://addons.mozilla.org/firefox/addon/stylish/
    * '''Bookmarks Toolbar Fx4 Blue/Folders, Red/Bookmarks'''<br>http://userstyles.org/styles/46947/
    * '''some styles I use:'''<br>http://kb.mozillazine.org/User:Dmcritchie

  • Camera icon displays instead of Trash-Can upon selecting a message in the conversation

    iPhone 5
    iOS 8
    Camera icon displays instead of Trash-Can upon selecting a message in the conversation and clicking on 'Copy/Speak/More...'
    After restart, now it shows Trash-Can again.

    Many were saying that you just needed to turn your phone off and turn it back on after upgrading to ios8.1, so that you could then delete single messages.
    It worked when I did it the first time, but today while sending text messages the trash can disappeared while I was trying to delete some messages.
    Any help would be greatly appreciated.

  • How can i select the next column instead of next row when press enter key

    I need to know how can i select the next column instead of next row when i press the enter key.By default ,when i press enter key the next row is selected and the column remain unchanged but I wants opposite that is the row should remain unchanged but column index will changed.
    Thanks to all.

    Well, the right arrow key will already move you to the next column, so the easiest way to do this is to modify the InputMap to have the Enter key invoke the same Action as the right arrow key.
    You can search the forum for my "Table Actions" (without the space) example that will show you how to do this.

Maybe you are looking for