Deleteing files quick 1 by 1 help needed

So I have my holiday photos and am scrolling through them one by one and using cmd&backspace to delete unwanted photos.
thing is after that the selection goes back to the top of the list. this is not efficient for me. on windows when doing something like this it would select the next file in the list making it very easy to quickly delete unwanted files.
any ideas how i can do this?
i use quick look to view the photos as i go then delete. I just started and realise its inefficient

Interestingly, when in list view, the cursor doesn't move to the top of the window's list. However, it doesn't select the next item, either because that's assuming something not in evidences; i.e., assuming in knows what the user wants to do. CMD+click allows you to select multiple, noncontiguous items, then, CMD+delete moves them to the Trash.

Similar Messages

  • How do I delete files  that  are no longer neede . I have tried everything that i know but no luck, when ever I write something in word and i,m finished with it  i click don't save , but when i open word ,guies what the file is still there , I have tried

    hello  I have tried everything to get rid of files  that I no longer need in word,  when I am finished with them  it asks do i want to save them i say no ,but when i open word again  the files are still in word ,I have tried to grag them to the trash can no luck, also went to finder to try there but no luck so what am I doing wrong it is very frustrating , as I no longer want these files kept in word  ????

    Which OS? Lion? If so, you're getting bit by the resume feature. Welcome to the iOS world of nonthinking, wherein the OS decides everything for you, whether or not that's what you want. Salient details described in http://www.apple.com/macosx/whats-new/features.html#resume   See these for steps to resolve: http://hints.macworld.com/article.php?story=20110918051930924 http://osxdaily.com/2011/08/01/turn-off-resume-per-app-in-mac-os-x-lion/ http://restoremenot.info/

  • File naming issue/workflow help needed...

    I shoot weddings and am continually frustrated with A2's file naming. Any suggestions or help would be greatly appreciated as it's killing my workflow.
    THE GOOD: I import the images with the file name I want and the metadata I want. I then edit out, deleting bad images and leaving borderline images (as outtakes) in the project while putting my selects together for the client in a smart album. I put the selects in a smart album based on their rating and keywords. The selects are not sequential, so I "select all" and make "batch change" putting them in sequence.
    THE BAD: Here is where I always encounter my first problem. Any images I have have worked on (in Photoshop) for my website now have different names. So when I export all in the album, the worked-on versions don't fit in sequentially. And some stacks have the edited image on top, and others do not.
    The other problem is when a bride places an order. I find the corresponding file and externally edit it. It now resides in the smart album with a different name than all the files around it. I put the print size in the exported version name and I have to open the dialog box for every single image and re-type the size in the custom name space. I have an order with 295 different images and it's killing me. The other problem is when the bride goes to re-order a print she has, the number on the back has no connection to the numbers on my site or the smart album.
    I find I'm going back to Photomechanic more often just to organize and name images because it actually changes the name of the file instead of "masking" it as A2 seems to do.
    Is there a way to keep A2 from doing this and how do I get the adjusted image to be the pick of the stack?
    Thanks-Kevin

    I happily paid the 20 bucks for 'A Better Finder Renamer' and was able to have it batch rename RAW files to my needs. It uses simple Boolean logic to cut or add to a file name and can read time stamps from the file.
    http://www.apple.com/downloads/macosx/productivity_tools/abetterfinderrename.htm l

  • Trying to create a shell script to cut/paste files in finder. Help needed.

    I'm trying to create an automator shell script to cut/paste. It'll function exactly like copy/paste. i.e. I'll just copy file/files with command+c like always, but then I'll create an automator which uses the "mv" terminal app to move the files which works exactly like cut paste.
    I need some help since I don't know the syntax for creating shell scripts.
    What I did so far is to do it in automator with Apple Script which goes like the following:
    on run {input, parameters}
    tell application "Finder"
    set theWindow to window 1
    set thePath to quoted form of (POSIX path of (target of theWindow as string))
    end tell
    tell application "Terminal"
    do script with command "mv \"" & input & "\"" & thePath in window 1
    end tell
    return input
    end run
    This gets the copied file path from clipboard before, as input, and then recognizes the active finder window as thePath so then executes the mv command for the input file to the thePath window.
    It doesn't work as expected since it connects both file/window paths into a single path instead of leaving a space between them so the mv command can't recognize two separate paths.
    What's the correct syntax for that line
    do script with command "mv \"" & input & "\"" & thePath in window 1
    to leave a space between input and thePath under the mv command?
    Also this requires the terminal app to be open in the background.
    After I get this to work I want to do the exact same thing using shell script within automator, so I won't need Terminal to be open all the time.
    And the next step will be to cut/paste multiple files/folders but that should be easy to do once I get the hang of it.

    Try using:
    on run {input, parameters}
    tell application "Finder"
    set theWindow to window 1
    set thePath to quoted form of (POSIX path of (target of theWindow as string))
    end tell
    do shell script "mv \"" & input & "\" " & thePath
    return input
    end run
    (45977)

  • File Sender Content Conversion: Help needed

    Hello Experts,
    i need help with file sender content conversion:
    i have a file which looks like this:
    12329460  24.01.09/07:01  167     Y010122851  136086  43300007            E70115  1L2_96_1
    12329660  25.01.09/07:02  157     Y010122851  136086  43390007            E711J5  1L2_96_1
    as you can see 8 fields, separated with whitespaces
    and i want and xml file which looks like this:
    <DT_DATA_FILESENDER>
      <Recordset>
          <Data> 
            <field1>12329460</field1>
            <field2>24.01.09/07:01</field2>
            <field3>167</field3>    
            <field4>Y010122851</field4> 
            <field5>136086</field5> 
            <field6>43300007</field6>
            <field7>E70115</field7> 
            <field8>1L2_96_1</field8
         </Data>
          <Data> 
            <field1>12329660</field1>
            <field2>25.01.09/07:02</field2>
            <field3>157</field3>    
            <field4>Y010122851</field4> 
            <field5>136086</field5> 
            <field6>43390007</field6>
            <field7>E711J5</field7> 
            <field8>1L2_96_1</field8
         </Data>
      </Recordset>
    Would you please let me know how the datatype has to look like?
    And especially how the FCC has to be configured for this scenario?
    Thanks in advance,
    Chris

    > With fixed lengths i get it working,
    >
    > but with de fieldseparator 0X09 it does not work,
    > would you please tell me the complete FCC config not only the fieldSeparation line?
    Well Christian,
    There is one thing, eithere you can use fieldSeparator or fieldFixedLengths you can not use both together. So in your case do not use fieldSeparator.
    The complete FCC is almost same as given in the blog in my previous reply. See the final output in that blog and create your data type accordingly. e.g.
    Recordset
    ------Item 0...unbound
    --------Field1 0..1
    --------Field2 0..1
    --------Field3 0..1
    --------Field8 0..1
    Regards,
    Sarvesh

  • Moving files into new folders (help needed)

    Hi it would be grate if some one could help me....
    in/with my program i need to move a file (mp3) from one folder into a new folder???

    ...i was and i also tried with out it...here is my code (for both classes!)
    it does not have the returnTo()...i took it out...this is working...but the mp3 files need to be moved into the files that have been created or already exist...
    import java.io.File;
    import cs1.Keyboard;
    public class DirectoryList  {
    /* This program lists the files in a directory specified by
        the user.  The user is asked to type in a directory name.
        If the name entered by the user is not a directory, a
        message is printed and the program ends.
    static String directoryName;  // Directory name entered by the user.
    static File directory;        // File object referring to the directory.
    static String[] files;        // Array of file names in the directory.
        String[] arguments;
    public static void main(String[] args) {
        System.out.print("Enter a directory name: ");
        directoryName = Keyboard.readString().trim();
        directory = new File(directoryName);
        if (directory.isDirectory() == false) {
            if (directory.exists() == false)
               System.out.print("There is no such directory!");
            else
               System.out.print("That file is not a directory.");
        else {
            files = directory.list();
            System.out.println("Files in directory \"" + directory + "\":");
            for (int i = 0; i < files.length; i++)
                System.out.println("   " + files);
    } // end main()
    import java.io.*;
    public class ReadID3
        static String artist;
        static int index = 0;
        public static void main(String[] arguments)
            DirectoryList.main(arguments);
            if (DirectoryList.directory.exists() == true)
            for(int index = 0; index < DirectoryList.files.length; index++)
                try
                    File song = new File(DirectoryList.directoryName + File.separator + DirectoryList.files[index]);
                    FileInputStream file = new FileInputStream(song);
                    int size = (int)song.length();
                    file.skip(size - 128);
                    byte[] last128 = new byte[128];
                    file.read(last128);
                    String id3 = new String(last128);
                    String tag = id3.substring(0, 3);
                        if (tag.equals("TAG"))
                            System.out.println("\nTitle: " + id3.substring(3, 32));
                            System.out.println("Artist: " + id3.substring(33, 62));
                            System.out.println("Album: " + id3.substring(63, 91));
                            System.out.println("Year: " + id3.substring(93, 97));
                            artist = id3.substring(33, 62);
                            createFiles();
                                File newLocation = new File( DirectoryList.directoryName + File.separator + artist);
                                System.out.println("'song' exists? "+song.exists());
                                System.out.println("'newLocation' already exists? "+newLocation.exists());
                                System.out.println("Renaming succeeded? "+song.renameTo(newLocation));
                        else
                            System.out.println(arguments[0] + " does not contain"
                            + " ID3 info."); 
                            file.close();
                catch (Exception e)
                    System.out.println("Error � " + e.toString());
        public static void createFiles()
                File f = new File(DirectoryList.directoryName + File.separator + artist);
                f.mkdir();

  • Moving files between different devices, help needed.

    Hi people, i need some help working this out. I am about to buy a Tablet, it will be my first tablet.
    In a few days the iPad 3 comes out and that would be nice, But...I have 2 old PPC macs, both Running on 10.5.8 and an android Phone. I'm guessing that because the iPad doesn't have a micro SD card slot or a proper usb port, getting files from it to all of my other kit is going to be a big pain. I understand that Apple has finally made iOS5 which i'm told is non computer reliant, so in theory, i can buy an iPad, take it home, turn it on, set it up and use it, without having to connect it to a computer with iTunes on it.
    I am aware that iPad will come with iCloud, but i'm guessing Apple won't allow any of my kit listed above, to access that except maybe a windows computer. I could use bluetooth?
    Is it possible to access files i would store in iCloud from any device, anywhere in the world just by logging in over the internet browser? Or am i going to have to not use iCloud and instead use Google Docs, Dropbox, or some other combination of online storage to move file around, or get a completely diferent tablet.
    I'm also concidering an Asus Transformer Prime Tablet plus docking keyboard as that does have a full sized usb port and a micro SD card slot and a full sized SD card slot as well, plus an extra battery.

    Yes sorry, i missed a bit out. I would use iCloud from the iPad itself, to backup the iPad so that when it crashes i can restore it, but would have to keep a copy of any files in Dropbox, that i might need to share inter platform. As i tend to keep multi backups anyway coz over the years i've had 2 Hard disk failures and 1 memory stick failure. That approach is not too much hasel. Not as elegant as just using one on line storage area but Hey, Big companies are never going to make their stuff work properly with everyone elses, that would be way too idealic. It was hard enough to get them to use standard file formats.
    Thanks again.

  • Deploying Files with Group Policy - Help Needed

    Hi,
    I am trying to use group policy to deploy files and folders to our server estate. The policy I have created first creates a folder on each server's C drive and then coppies a set of files to this folder from a network share. The folder creation works fine
    but the files copy fails. In the Application logs on the servers it displays the following error:
    The computer 'ILMT' preference item in the 'GPO - Servers_Production_ALL {CC026B58-FA3B-4399-AA00-AE8E844B2B47}' Group Policy object did not apply because it failed with error code '0x80070005 Access is denied.' This error was suppressed.
    Can anyone advise what exactly does not have access here? I don't know what I need to enable to get this to work.
    Can anyone help?
    Many thanks
    James

    The copy is on a file server share. presumably if I just give everybody read access to the share that would suffice?
    No it won't.
    "Sharing" requires several actions:
    a) create the folder
    b) share the folder
    c) grant NTFS permissions on the folder
    I think you've neglected action (c).
    For your scenario, you need to grant the "server computers" read permissions to the folder.
    You can add individual computer accounts, or a group, or "domain computers".
    (In a similar way, you could grant access to a user, a group, or "domain users")
    [if you need everybody (users) *AND* everything (computers), you could grant permissions to "authenticated users" since that principal includes *BOTH* users and also computers]
    Note that "domain computers" and "authenticated users" include all types of domain member computers, i.e. servers, workstations, etc.
    Also, note that granting a "computer account" access to a folder or share, does *NOT* mean that a user account on that computer can access the remote share, i.e. permission is granted to the computer account, and a logged-in user account on
    that computer does not inherit any kind of access to the remote share by virtue of being logged in.
    This means that the computer can access the share but the user cannot access the share. Because the computer account is an identity/principal of it's own accord.
    [None of which really has anything to do with Group Policy at all - it's how Windows does file sharing and ACLs... ;)
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • My Multiple Saves On A Flash File Gone? [URGENT HELP NEEDED]

    Hey guys,
    I am very disappointed with the fact that I've been working on a school project on a Flash file for numerous days, and yesterday, I was close to completetion when I found out that none my saves were updated. Basically, I spent hours working on the project and I saved my Flash file multiple times; however, I just opened my Flash file today and found out that all of the updates that I had made on the file were gone. Is there any way I can still recover the file/updates through cache possible, and what may have gone wrong?
    What I have Tried To Solve The Issue:
    - I have done a full scan of the computer but only found the non-updated file.
    - I had dragged the saved file onto my USB the previous day before I turned off the computer, but the Flash file on the USB is the non-updated file as well.
    - Try to find a cache, unsuccessfully.
    - Browsed this forum but found nothing.
    - I even checked my Recycling Bin.
    Other Info:
    - I am using Flash CS3.
    - The folder which contained my Flash file has all of the images that I had edited with PhotoShop CS3, as well as the images that I had downloaded online. It's only the Flash file that is old.
    Please help me out on this as soon as possible as it's a school project. My hours worth of time is gone and I really don't want to have to start again while there may be a solution to this out there. Thank you very much.

    You best bet is to get your san folks to give you some disk space for a mount point on the last node in the cluster. Once they assign the lun (not raw) have your SAs make it a mounted file system such as /dbbackup.
    Run all of your rman backups on your last node on the cluster. The only draw back is, if that node dies, then you will not be able to run backups. but your backups would be safe as they are on the san.
    Only way to have a mounted file system on all nodes in your cluser is to have some sort of third party file system cluster ware .. such as veritas or OCFS2 - then all nodes could see it.
    I feel the first node in the cluster (the primary node) is the most busy out of the rest .. so thats why the suggestion of running rman on the last node in the cluster.

  • Nokia E7-00 Help Needed

    Problem 1: I got a Nokia E7-00 from a friend a week ago. The day I got it, I filled it with lots and lots of applications including games. Now, often it gives an error: "Memory Full: Close some applications and try again". I read the following on another support website:
    In order to free memory, you could also remove or move the following:
    Messages from Inbox, Drafts and Sent folders in Messaging.
    Retrieved e-mail messages from the phone memory.
    Saved Web pages. Clear the web browser cache to free some memory (select Options > Clear privacy data > Cache). 
    Saved images, videos, or sound files.
    Contact information.
    Calendar notes.
    Downloaded application packages.
    If there are applications which are not needed any more, uninstall them (select Menu > Settings > Data mgr. > App.mgr. > Installed apps.).
    Any other data that you no longer need
    I have done this but still not working. On another website I read about deleting files from C:/resources/help but these files cannot be deleted.
    Please guide me to solve this problem.
    Problem 2: Wifi not working. I have a Wifi connection in my room and in my high school. Wifi was working fine until yesterday. Now, it searches for the connection but says connection unavailable. I am using the same wifi on my laptop, and Nokia 5630XM and its working fine on them. Please help me with this problem
    Problem 3: It is not actually a problem but more of a query. When will Symbian Belle be available for Nokia E7?
    Keenly waiting for the answers. Thank you 

    I will suggest you a quick and easy fix for you mate.
    1. Back up you important stuff on the nokia suite
    2. Hard reset , wipe everything off your nokia e7
    3. Run it a few days without any third party apps and see how it goes.
    4. Symbian belle is available now, you should check with your latest nokia suite. If its not then maybe your country is not ready for the update.
    HOPE THIS HELPS
    Join my movement to bring a change in NOKIA for good by supporting my FORUM
    http://discussions.europe.nokia.com/t5/Eseries-and-Communicators/NOKIA-MODERATORS-ONLY/td-p/1318965

  • How do I store and delete files on the iphone

    how do I store and delete files on the iphone

    Files/documents need to be stored/associated within an app on the iPad, unlike 'normal' computers there is no file system which allows you to save files with no means of being able to read/use them. So if you want to store a file on the iPad you first need an app on the iPad that supports that file type.
    How you then get the file onto the iPad and into the app will depend on what the app is and what transfer method(s) it supports. e.g. some apps use the file sharing section at the bottom of the device's apps tab when connected to your computer's iTunes, some apps support the transfer of files via your wifi network, the iBooks app uses the Books section of your iTunes (and the device's Books tab) to sync content, and other transfer methods include email attachments, Dropbox etc. The file is then found by going into your chosen app and opening/using the file.

  • NSS Delay Purge for deleted files not deleted volumes

    Does anyone know how to set the "Delay Purge" for deleted files on an
    NSS volume, not, deleted volumes. I have a problem in our company, they
    want to use the automatic purge feature for deleted files but, they
    want to set a "Delay" on the purging. I know you can set the Delay
    Purge for deleted volumes, but I can't find a setting (if it even
    exist) for Delay Purge for deleted files. Can anyone help. Thank you.
    BTY, there're running NW 6.0 NSS 3.05.

    I use toolbox and cron to rune a manual purge pass on the server once a
    week.
    A line in crontab:
    00 02 * * 0 purge sys: -a -d=35
    will purge volume sys every sunday at 2:00 and purge all files deleted 35
    and more days before.
    Klaus
    "Montero" <[email protected]> wrote in message
    news:[email protected] ups.com...
    > Thanks for your input Massino, I guess I should refrase the question:
    > Does anyone know HOW to delay the purging of deleted files on an NSS
    > volume? If i'm going about it the wrong way, can you tell me how it can
    > be done? Thank you.
    >
    > Sam
    >
    > Massimo Rosen wrote:
    >> Hi,
    >>
    >> [email protected] wrote:
    >> >
    >> > Does anyone know how to set the "Delay Purge" for deleted files on an
    >> > NSS volume,
    >>
    >> Such a thing doesn't exist.
    >>
    >> CU,
    >> --
    >> Massimo Rosen
    >> Novell Support Connection Sysop
    >> No emails please!
    >> http://www.cfc-it.de
    >

  • How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts- 18   movies need to go-.

    How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts… 18 plus movies need to go….  Thank you.

    Instead of removing the music from the cloud or the iTunes library why not shuffle your music using a Smart Playlist which excludes the holiday music, or tracks that are not checked. For example, use this very simple Smart Playlist:

  • Hi, WWhen I turn on my mac pc, enter my account password my page wont load up , I can access the internet through my families account but not mine. There is a message telling me I need to delete files but the page won't load anything. Any help appreciated

    Hi
    When I turn on my pc and log into my account there is a message telling me I need to delete files. But the page won't load up anything to allow mw to do this. I am concerned I may have lost all my personal info.
    I can log into other family members accounts but not mine.
    Any help appreciated
    Thanks

    You only have to clone your mac when using certain cable modem.  You don't clone your mac when using dsl.
    Greetings from Northern Ontario, Canada

  • I need help with Tiger 10.4.11 saving / deleting files on a Win 2003 Server

    Some of my Mac users are experiencing extremely slow file saves to my Windows Server 2003 server. It is not specific to file types. Illustrator, Quark all take forever and the file size is not the issue either. They are also having to force quit Finder after attempting to delete files from the Server.
    I have found that if they boot into Safe Boot they can delete the files without a problem. As soon as I do a normal login the problem returns.
    The problem seems to be specific to the machine. If user A logs on to her Mac she has problems deleting files from the server. If she logs into a Mac that isn't having problems (using her login) she doesn't have problems. If User B who has no problems on her Mac logs into User A's Mac then User B will have the same problems.
    In order to rebind the Mac to the Active Directory I had to remove the Mac from AD. So I don't think it's the Computer's SID. I even tried unbinding the Mac, changing it's name and then Binding it to AD. Same problems.
    I thought it was the Mac and just wasted a day wiping the Mac and reinstalling everything on it, but when I went to delete a file from the Server, finder locked up and I had to force quit finder.
    I even changed the IP Address of one of the Macs having problems, but that didn't work either.
    I've done a Permission repair as well with no change.
    Anyone help?

    OK, there was a System Events in the System Preferences>Accounts>Login Items, but after removing it and restarting I still had to force quit finder after attempting to delete some files off of the server.
    I do not have (or can't find) the /private/var/run/startupitems.
    The Library/StartupItems has 2 entries: AdobeVersionQueCS2 and IntegoCommon, both of which I removed the other day and tried to delete files after rebooting with the usual (not good) result.
    In the System/Library/StartupItems there are 16 items. I will list them as I am not sure what shouldn't be there. I believe that they should all be from Apple though:
    Apache
    AppleShare
    AuthServer
    CrashReporter
    Disks
    FibreChannel
    IFCStart
    IPServices
    Metadata
    NetworkTime
    NFS
    NIS
    PrintingServices
    RemoteDesktopAgent
    SNMP
    Thanks for your help so far.

Maybe you are looking for

  • Using Mail 5.3, how do I add secondary Comcast email accounts?

    I've recently switched to Comcast, and I am now having trouble setting up secondary accounts through Mail.  My primary account works fine, but my additional accounts cannot be set-up (even when trying to set them up on my wife's iMac, they won't work

  • XI to RFC processed successfully but not working

    Hello, I finally configured my RFC - XI - RFC async scenario. If I go to SXMB_MONI the message is processes OK, the mapping is OK too because I can see the output payload data in the technical routing tab. But, the destination RFC must change a DataB

  • Question about Media Player for Mac??

    Hello guys, I'm a new guy for mac. I met a problem, my windows mediaplayer cant use yesterday. When I click the icon, it displayed a error message. When I clicked the send roport button, the mediaplayer will shut down automaticlly. And how to make sa

  • Mac OS X Leopard/10.5 compatibility

    I want to upgrade to Leopard on my desktop, but unlike CS3 compatibility paper, there seems to be no mention of Flex 2's compatibility on Adobe's site. I know that Flex is built on Eclipse, and Eclipse is built on Java. I know some people are having

  • What is end-to-end?

    On the front page of this site, Java is said to provide "end-to-end" solutions. What does "END-TO-END" means precisely? Can you tell me or give me a link to the explanation? Thank you!