How to move pictures from one album to another?

I tried to create an album called 'selfies' but when I clicked on some of my photos to this album, about 175 photos moved by mistake in this album.  When I tried some out, my choice seems to be only to remove them!  I don't want to delete one of them, just move them out of the album 'selfie '!

If you are viewing a photo album you should be able to secondary click (click right click or control) and one of the options should be 'delete album '.

Tags: Mac OS & System Software

Similar Questions

  • How to move pictures from one folder to another folder?

    Heyya! I am trying to move images off 1 folder in another folder how do? Please answer as soon as possible!

    Highlight the files > right click Select Cup > right in the new folder click select Paste

    I hope this helps.

  • Can I move pictures from one album to another within the Photos app?

    Organize photos

    Yes. It is done in the same way that you add any photo album. -AJ

  • How to move photos from one Collection to another Collection

    Some, while the rear I hung some pictures from one Collection to another Collection.

    Later, I noticed that I had lost the ability to edit images moved.

    Please explain how can I move photos between Collections without causing problems?

    Cliff

    However, I can't figure out how to move photos from a private Collection to another more appropriate called Collection. I had thought that drag would do the trick. But I was wrong.

    Well, I think it's the right way to do it. Why do you think it's wrong? What is going on? Describe in detail or show a screenshot. State of the edited, complete error messages, Word for Word.

  • How to move email from one dish to another?

    My old computer broke down, I have the hard drive and the data are ok. How can I move old email on my new computer?

    You should be able to move (copy) as if nothing has happened by following the instructions in the article to move data from Thunderbird to a new computer .

  • can or how to move pictures from 1 folder to another

    I have several pictures of food left for a portfolio that I put in 1 folder. How can I accomplish this?

    I have several pictures of food left for a portfolio that I put in 1 folder. How can I accomplish this?

    Try, next time around, specify that you are using the opersating system. That would make things simpler, sometimes.

    Generally, you start by creating a folder just for that, then you can use 2 methods...

    1. drag and Drop option

    Left click on the image and HOLD > then drag it to the folder just created > then drop (let go the hold).

    2 go to the option.
    Right click on the image > select the Move To option > navigate to the new folder > select this folder > click on move.

    If you do not Move To option in your context menu from right vClick, use this tutorial:

    For Vista: http://www.vistax64.com/tutorials/89196-context-menu-add-copy-folder-move-folder.html

    For Win 7: http://www.sevenforums.com/tutorials/516-context-menu-add-copy-folder-move-folder.html

    To move multiple images in another folder...

    Left-click on one of the images (any will do) > Ctrl-key-press and HOLD > clcik left the following image > while holding down the Ctrl key, move to the next left click photo and so on and so on until you have selected all the photos >

    then you can use the drag and drop or move to the method.

  • Move photos from one album to another

    I just try to get some photos to the correct album?

    Hello

    Thanks for the reply.

    Please refer to the links and check if it helps.

    http://Windows.Microsoft.com/en-in/Windows-8/organize-photos#1TC=T1

    Libraries: How to add or delete a folder

    http://Windows.Microsoft.com/en-in/Windows-8/Add-folders-library

    I suggest you send the application in the Windows Live forum for assistance:

    Reference:

    http://answers.Microsoft.com/en-us/windowslive/Forum/Gallery

    Thank you.

  • How to move code from one class to another?

    I have a .fla file.

    Here, I have a few keyframes with labels.

    On the .fla file in the property in the field of the class I have adde class MyMatching.

    I also have the main code:

    package 
    {
         import flash.display.MovieClip;
         import flash.events.MouseEvent;
         import flash.text.TextField;
         
         public class MyMatching extends MovieClip 
         {
              var play_btn:MyButton = new MyButton();
              var kyky:MyTimer;
              
              public function MyMatching():void
              {
                   welcomeScreen();
              }
              
              public function welcomeScreen():void 
              {
                   stop();
                   trace("working");
                   play_btn.x = 210;
                   play_btn.y = 300;
                   addChild(play_btn);
                   play_btn.addEventListener(MouseEvent.CLICK, goToLevel_1);
              }          
                   
              public function goToLevel_1(event:MouseEvent)
              {
                   trace("level 1");
                   play_btn.visible = false;
                   gotoAndStop('Level1Screen');               
                   if (kyky==undefined) {
                        kyky = new MyTimer();
                   }
              }
         }
         
    }
    

    And I have another class:

    package 
    {
         import flash.display.MovieClip;
         import flash.display.Stage;
         import flash.utils.getTimer;
         import flash.text.TextField;
    
         public class MyTimer extends Stage
         {
              import flash.utils.getTimer;
              var gameStartTime:uint;
              var gameTime:uint;
              var gameTimeField:TextField;
              function mainFunction():void
              {
                   gameTimeField = new TextField();
                   addChild(gameTimeField);
                   gameStartTime=getTimer();
                   gameTime=0;
                   addEventListener(Event.ENTER_FRAME,showTime);
              }
              function showTime(event:Event)
              {
                   gameTime=getTimer()-gameStartTime;
                   gameTimeField.text="You plaing: "+clockTime(gameTime);
              }
              function clockTime(ms:int)
              {
                   var seconds:int=Math.floor(ms/1000);
                   var minutes:int=Math.floor(seconds/60);
                   seconds-=minutes*60;
                   var timeString:String=minutes+":"+String(seconds+100).substr(1,2);
                   return timeString;
              }
         }
         
    }
    

    Ho can I play MyTimer class code in the function goToLevel_1 (this furnished function in my main class MyMatching)?

    Thank you.

    First your class MyTimer is sloppy and poorly written.

    Why does go on stage? The more compact class to extend the circumstances is Sprite.

    In addition, it is very important to get the habit of data type declarations. Not only it is advisable, in your case the good compiler will throw error because even if you return the string, function returns nothing.

    In addition, it is important to declare namespaces as public private and protected within the classes. No function clickTime (): String but private function clockTime (): String or publicfunction clickTime (): String.

    How to show your time elsewhere - you just create instnace of it and add it to the list of disaply:

    var myTimer:MyTimer = new MyTimer();

    addChild (myTimer);

    That said, your class should look like this:

    package
    {
         import flash.display.Sprite;
         import flash.events.Event;
         import flash.display.MovieClip;
         import flash.utils.getTimer;
         import flash.text.TextField;
    
         public class MyTimer extends Sprite
         {
              private var gameStartTime:uint;
              private var gameTime:uint;
              private var gameTimeField:TextField;
    
              public function MyTimer()
              {
                   gameTimeField = new TextField();
                   addChild(gameTimeField);
                   gameStartTime = getTimer();
                   gameTime = 0;
                   addEventListener(Event.ENTER_FRAME,showTime);
              }
    
              private function showTime(event:Event):void
              {
                   gameTime = getTimer() - gameStartTime;
                   gameTimeField.text = "You playing: " + clockTime(gameTime);
              }
    
              private function clockTime(ms:int):String
              {
                   var seconds:int = Math.floor(ms / 1000);
                   var minutes:int = Math.floor(seconds / 60);
                   var timeString:String = minutes + ":" + String(seconds + 100).substr(1, 2);
                   return timeString;
              }
         }
    }
    
  • How can I move notes from one folder to another?

    I thought that some of my notes were missing, but it seems that some are stored in icloud and the other in different files associated with my personal email address.  How can I make sure that they are all on the icloud (in case I lose my phone, when I update my phone, etc.)?  How can I move them from one folder to another?  I not create separate records in the first place. I guess it happened when I updated to the current IOS.  Thanks for your help!

    Slide left on each note you want to move to your iCloud folder. Move and delete option is available. The rest is simple.

  • Whenever I have move photos from one folder to another file, the picture is no longer accessible.

    I use Windows XP - perfectly up-to-date.  Whenever I have move photos from one folder to another file, the picture is no longer available and cannot be removed with using unlocker.  This has happened for several years.  I copy pictures and new folders whenever I want to move them, but sometimes I forget and move them and then I lose the picture I'm trying.  I also noticed that there is a strange file that opens in the trash that won't let me remove it without using unlocker. These files start with "Dd" followed be a number.  When I delete these use unlocker, another will appear the a different number on this subject.  It is a very maddening problem.  It is not possible for me to do a system restore because it lasts for quite awhile.  Please help - I'm tired of losing pictures that I can't replace.  Thank you for your help.

    Hi JB_11321,

    Thanks for the reply.

    Have you tried methods 1 and 3 mentioned in my previous post?

    We meet after completing the steps so that we can better help you.

  • How to move items from one profile to a local storage

    original title: move items from one profile to a local storage

    How to move items from one profile to a local storage to free up space under this profile?

    Hi MartySlaught,

    ·         You want to move the files in your user account on a different medium (external hard drive)?

    If so, you can do this only for your personal files. You can refer to the following.

    a. make sure that your external USB hard drive or a USB flash drive is connected to your computer.

    b. open the directory on your computer where are the files you want to transfer. Press 'Ctrl' key and click each file you want to transfer.

    c. click on the option "Move selected files" on the left side of the window. Then select the external USB hard disk or USB flash drive. The files will be moved from the computer to the external hard drive.

    See also:

    Microsoft Windows XP - move a file or folder

    Microsoft Windows XP - move files by dragging

  • How can I move photos from one folder to another?

    * Original title: photos

    How can I move photos from one folder to another?

    A way - http://windows.microsoft.com/en-US/windows7/Move-and-copy-files-using-drag-and-drop

    More here - §ion_5 http://windows.microsoft.com/en-us/windows/working-with-files-folders#1TC=windows-7

  • How can I easily move photos from one folder to another?

    How can I easily move photos from one folder to another?

    On Mon, 15 Sep 2014 23:49:43 + 0000, Frygardener wrote:

    How can I easily move photos from one folder to another?

    Images or any other type of files, there are many easy ways to do
    This. And here's one: click on the file and press Ctr + C (copy). Then go to
    the folder that you want and press Ctrl + V (paste).

  • How can I move photos from one date to another in my catalog? Downloaded LR of photos taken over several days to a date. LR6 PC Win7

    How can I move photos from one date to another in my catalog? Downloaded LR of photos taken over several days to a date. LR6 Win7 PC.

    Hi bubba43,

    Please select the images in the library grid mode Module and then drag and drop them in another folder you want.

    Kind regards

    Tanuj

  • Ability to move songs from one playlist to another

    I want to spend the songs in a playlist to another. It seems, that you can´t move the songs, but you can add them to other playlists. After that, I have to remove it from the previous list.

    It is extra work that can be avoided, if "move" menu will be executed in ITunes. "

    I'm not the first person who wants the same thing. See, for example move the songs in a playlist to another, -playlist-to-another-on-iPad/td-p/120348 https://community.spotify.com/t5/Help-iOS-iPhone-iPad/How-to-move-songs-from-one

    I am running Windows, ITunes 12.3.2.35 64-bit

    Yet another candidate for iTunes comments. That said if you have done the selection and used the right click Add to Playlist option is really so difficult to then click on remove, while the tracks are always selected in the original list?

    TT2

Maybe you are looking for