How to upload 1 picture to existing album

Hello all, is it possible to upload only 1 picture to an existing album in mobile me?

floydstyle wrote:
Hello all, is it possible to upload only 1 picture to an existing album in mobile me?
Yes. Drag the picture to one of your existing MobileMe albums listed (in the 'Library' view) and drop it on the album name. To the right of the album name is an icon that looks a bit like radio-waves. Click the icon and it'll trigger a re-synchronization of your local album with the MobileMe website -- pushing the new image up to the hosted gallery.

Similar Messages

  • How do i rotate pictures in ipad albums?

    How do I rotate pictures in ipad albums?  The icon they show in the user instructions does not appear on my ipad.

    You need a third party app to rotate the photos. The ability to do that directly within in the photos app does not exist in iOS 4. It is supposed to be one of the new features of the iOS 5 coming sometime soon.
    You and download a free photo editing app called PhotoPad by ZAGG in the app store. You can use this app to rotate, crop, etc and then resave the photos after you change them.

  • How do you move pictures from one album to another

    how do you move pictures from one album to another?

    Pictures can appear in any number of albums.
    To move from one album to another, add the picture to the new album and then right click on the picture, select Remove from album and then select the album you want to remove it from.
    If you need further help, please let us know which version of Photoshop Elements you are using and which operating system you are running on.
    Brian

  • How to upload my pictures taken through my iphone 4s to icloud

    how to upload my pictures taken through my iphone 4s to icloud? how to enable automatically upload to icloud. also how to check whether the photos are uploaded? pls help.

    Hello Stephen,
    I read your post, and it sounds as though you'd like to learn more about Photo Stream and iCloud. I have linked to an article that provides information you may find helpful:
    My Photo Stream FAQ - Apple Support
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • HT201269 How can I transfer pictures from an album to my iPhone?

    How can I transfer pictures from an album on my PC to my Iphone that is synced to my iMac?

    That very basic function of the iPhone is covered quite nicely in the User Guide.  I suggest you read it.
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • How do I delete pictures from my albums other the camera roll and My photo stream

    How do I delete pictures from my albums other then the camera roll and my photo stream

    Photos in albums that were transferred from your computer via the iTunes sync/transfer process are removed the same way. Move the photo or photos you want to delete from the selected album or folder of photos on your computer followed by a sync.

  • How do you import pictures to an album in Photos?

    Hi,
    I've just started using the new photos application after migrating from iPhoto and now I can't seem to import pictures to an album? How do you do this?
    It seems photos has imported everything from an SD Card and my iPad and lumped it all into one "Moment".
    Does anyone have any suggestions?

    Great thanks for your suggestions! I'll have a play around and see if I can make it work
    I have the same problem. It's lumped around 1,000 pictures into one moment which spans 3 countries and 2 weeks of travel. It's also merged photos I had on my iPad which are the same but a different resolution, so now I have duplicates but no easy way to determine which is the lessor quality.
    I'm pretty disappointed with the removal of functions with the new app May need to go looking for a replacement I think, unless Apple can demonstrate an interest in improving the experience.

  • How to upload employees picture thru API

    Hi All,
    Can anybody say me how to upload the employees pictures thru PER_IMAGE_UPLOAD_PKG.LOAD(). Here i am having 2500 employees photos.
    and if it is step wise manner it will be more helpful and where we have to place the pictures in server , in which location

    Okay. This is pretty old code, and I don't quite remember how it works entirely, but here it is. I created a Formbuilder form with some custom java beans to read the directory where the badge photos resided, and create a SQL*Loader control file for each .jpg file. Here is the main code, from the client_pkg package and the OK button when-button-pressed trigger:
    PACKAGE client_pkg IS
    staging_dir varchar2(200) := 'c:\userapps\empphotos';
    photo_dir varchar2(200) := '\\Netser1\server dir\APPD\Human Resources Badging System\Photos';
    template varchar2(2000) := 'options (bindsize 400000)' || chr(10)
         ||'load data' || chr(10)
         ||'infile ''$INFILE$'' "fix $FILESIZE$"' || chr(10)
         ||'$OPERATION$' || chr(10)
         ||'into table per_images' || chr(10)
         ||'(image raw ($FILESIZE$), -- filesize' || chr(10)
         ||'parent_id constant $PERSON_ID$,' || chr(10)
         ||'table_name constant "PER_PEOPLE_F",' || chr(10)
         ||'image_id char "hr.per_images_s.nextval")' || chr(10)
    missing_template varchar2(2000) := 'options (bindsize 400000)' || chr(10)
         ||'LOAD DATA' || chr(10)
         ||'INFILE ''$INFILE$'' "fix $FILESIZE$"' || chr(10)
         ||'$OPERATION$' || chr(10)
         ||'INTO TABLE lac.lac_photo_dir' || chr(10)
         ||'     (IMAGE raw($FILESIZE$) -- filesize' || chr(10)
         ||' , FILENAME constant "$FILENAME$"' || chr(10)
         ||'     , FILESIZE constant $FILESIZE$' || chr(10)
         ||'     , FILEDATE constant "$FILEDATE$"' || chr(10)
         ||'     )' || chr(10)
    END client_pkg;
    --OK Button - When-Button-Pressed
    declare
         alert_msg varchar2(2000);
         button_pressed number;
         in_file Text_IO.File_Type;
         out_file Text_IO.File_Type;
         log_file Text_IO.File_Type;
         v_buffer varchar2(200);
         v_ctl_txt varchar2(2000);
         v_dir_find_string varchar2(20) := 'Directory of ';
         v_dirstring varchar2(200);
         v_pos integer;
         v_slash varchar2(2) := '\';
         v_filesize varchar2(20);
         v_filename varchar2(20);
         v_ctl_filename varchar2(120);
         v_log_filename varchar2(120);
         v_operation varchar2(20);
         v_emp_num varchar2(20);
         v_emp_name varchar2(80);
         v_payroll_id number;
         v_person_id number;
         v_load_count integer;
         v_qry_count integer;
         v_instance varchar2(20);
         v_username varchar2(20);
         v_password varchar2(20);
         v_connect_string varchar2(100);
         v_exec_string varchar2(200);
         v_success_count integer;
         v_beg_pos integer;
         v_end_pos integer;
         cursor c_badges(p_payroll_id in number) is
              select xref.emp_num
              , ppf.employee_number || ' - ' || ppf.full_name emp_name
              , xref.filename
              , ppf.person_id
    , decode(pi.image_id, null, 'N', 'Y') image_exists_yn
    from hr.per_all_people_f ppf
              , hr.per_all_assignments_f paf
              , lac.lac_emp_badge_xref xref
    , hr.per_images pi
              where paf.person_id=ppf.person_id
              and xref.emp_num = ppf.employee_number
              and sysdate between ppf.effective_start_date and ppf.effective_end_date
              and sysdate between paf.effective_start_date and paf.effective_end_date
              and paf.assignment_type<>'B'
    --          and paf.payroll_id = p_payroll_id
              and lower(filename) like '%.jpg'
    --          and ppf.employee_number in ('00012','08278') -- Temp debugging line
    and pi.parent_id(+) = paf.person_id
              order by emp_num
         cursor c_photo_dir is
         select xr.emp_num
         , pd.filename
         , pd.filesize
         , pd.filedate
         from lac.lac_emp_badge_xref xr
         , lac.lac_photo_dir pd
         where xr.filename(+) = pd.filename
         and xr.emp_num is null
         and lower(pd.filename) like '%.jpg'
         order by pd.filename
    begin
    break;
    :System.Message_Level := '5';
         v_instance := get_application_property(CONNECT_STRING);
         v_username := get_application_property(USERNAME);
         v_password := get_application_property(PASSWORD);
         v_connect_string := v_username || '/' || v_password || '@' || v_instance;
    if :replace_cb = 'Y' then
              v_operation := 'Replace';
    else
         v_operation := 'Append';
    end if;
         v_load_count := 0;
    set_custom_property('FILEIO_BEAN',1,'SOURCEDIR',:photo_file_dir);
         set_custom_property('EXEC_BEAN',1,'CMDSTRING','echo TEST');
    for v_badges in c_badges(to_number(:payroll_list))
    loop
              :work_file := v_badges.filename;
    set_custom_property('FILEIO_BEAN',1,'SOURCEFNAME',:work_file);
    v_filesize := get_custom_property('FILEIO_BEAN',1,'FILELENGTH');
    --          alert_msg := 'File Size for ' || :work_file || ' = ' || v_filesize || chr(10);
    --          SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
    --          button_pressed := Show_Alert('GENERIC_ALERT');
              if v_badges.image_exists_yn = 'Y' then
                   delete from hr.per_images
                   where parent_id = to_number(v_badges.person_id);
                   commit;
              end if;
              v_ctl_txt := client_pkg.template;
              v_ctl_txt := replace(v_ctl_txt, '$OPERATION$', v_operation);
              v_ctl_txt := replace(v_ctl_txt, '$INFILE$', :photo_file_dir || v_slash || v_badges.filename);
              v_ctl_txt := replace(v_ctl_txt, '$FILESIZE$', v_filesize);
              v_ctl_txt := replace(v_ctl_txt, '$PERSON_ID$', v_badges.person_id);
              v_ctl_filename := 'sqlldr' || v_badges.emp_num || '.ctl';
              v_ctl_filename := :staging_dir || v_slash || v_ctl_filename;
              v_log_filename := replace(v_ctl_filename,'.ctl','.log');
              out_file := Text_IO.Fopen(v_ctl_filename, 'w');
              text_io.put_line(out_file, v_ctl_txt);
              text_io.fclose(out_file);
              v_exec_string := 'sqlldr ' || v_connect_string || ' control=' || v_ctl_filename
              || ' log=' || v_log_filename;
    --          alert_msg := 'before, v_exec_string= ' || v_exec_string || chr(10);
    --          SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
    --          button_pressed := Show_Alert('GENERIC_ALERT');
              :emp_name := v_emp_name;
              synchronize;
              set_custom_property('EXEC_BEAN',1,'CMDSTRING',v_exec_string);
    --          alert_msg := 'after, v_exec_string= ' || v_exec_string || chr(10);
    --          SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
    --          button_pressed := Show_Alert('GENERIC_ALERT');
              v_operation := 'Append';
              v_load_count := v_load_count + 1;
              exit when v_load_count >= nvl(:proc_limit,99999);
    end loop;
         set_custom_property('EXEC_BEAN',1,'CMDSTRING','echo TEST');
    if false then     
    v_operation := 'Append';
         for v_photo_dir in c_photo_dir
         loop
              v_pos := instr(v_photo_dir.filename,'.jpg');
              v_end_pos := v_pos - 1;
              v_pos := instr(v_photo_dir.filename,'-',-1,1);
              if v_pos > 0 then
                   v_beg_pos := v_pos + 1;
              else
                   v_beg_pos := 1;
              end if;
              v_emp_num := lpad(substr(v_photo_dir.filename,v_beg_pos, v_end_pos + 1 - v_beg_pos),5,'0');
              v_payroll_id := to_number(:payroll_list);
              begin          
                   select ppf.employee_number || ' - ' || ppf.full_name
                        , ppf.person_id
                        into v_emp_name
                        , v_person_id
              from hr.per_all_people_f ppf
                        , hr.per_all_assignments_f paf
              , hr.per_images pi
                        where paf.person_id=ppf.person_id
                        and sysdate between ppf.effective_start_date and ppf.effective_end_date
                        and sysdate between paf.effective_start_date and paf.effective_end_date
                        and paf.assignment_type<>'B'
              and pi.parent_id(+) = paf.person_id
              and decode(pi.image_id, null, 'N', 'Y')='N'
              and ppf.employee_number = v_emp_num
    --          and paf.payroll_id = v_payroll_id
              exception
                   when no_data_found then
                   v_emp_name := null;
                   v_person_id := null;
                   when others then
                        alert_msg := 'Error looking up Employee: ' || v_emp_num || chr(10) || sqlerrm;
                        SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
                        button_pressed := Show_Alert('GENERIC_ALERT');
                   raise form_trigger_failure;
         end;
              if v_person_id is not null then
                   :work_file := v_photo_dir.filename;
                   v_ctl_txt := client_pkg.template;
                   v_ctl_txt := replace(v_ctl_txt, '$OPERATION$', v_operation);
                   v_ctl_txt := replace(v_ctl_txt, '$INFILE$', :photo_file_dir || v_slash || v_photo_dir.filename);
                   v_ctl_txt := replace(v_ctl_txt, '$FILESIZE$', v_photo_dir.filesize);
                   v_ctl_txt := replace(v_ctl_txt, '$PERSON_ID$', v_person_id);
                   v_ctl_filename := 'sqlldr' || v_emp_num || '.ctl';
                   v_ctl_filename := :staging_dir || v_slash || v_ctl_filename;
                   v_log_filename := replace(v_ctl_filename,'.ctl','.log');
                   out_file := Text_IO.Fopen(v_ctl_filename, 'w');
                   text_io.put_line(out_file, v_ctl_txt);
                   text_io.fclose(out_file);
                   v_exec_string := 'sqlldr ' || v_connect_string || ' control=' || v_ctl_filename
                   || ' log=' || v_log_filename;
         --          alert_msg := 'before, v_exec_string= ' || v_exec_string || chr(10);
         --          SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
         --          button_pressed := Show_Alert('GENERIC_ALERT');
                   :emp_name := v_emp_name;
                   synchronize;
                   set_custom_property('EXEC_BEAN',1,'CMDSTRING',v_exec_string);
         --          alert_msg := 'after, v_exec_string= ' || v_exec_string || chr(10);
         --          SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
         --          button_pressed := Show_Alert('GENERIC_ALERT');
                   v_operation := 'Append';
                   v_load_count := v_load_count + 1;
         --          exit when v_load_count >= nvl(:proc_limit,99999);
              end if;
         end loop;     
         set_custom_property('EXEC_BEAN',1,'CMDSTRING','echo TEST');
    return;
    end if;
    exit_form;
    exception
         when no_data_found then
              Text_IO.Fclose (in_file);
         exit_form;
    when others then
    text_io.fclose(in_file);
    text_io.fclose(out_file);
              alert_msg := 'Error outside loop: ' || chr(10) || sqlerrm;
              SET_ALERT_PROPERTY('GENERIC_ALERT',ALERT_MESSAGE_TEXT, alert_msg);
              button_pressed := Show_Alert('GENERIC_ALERT');
              raise form_trigger_failure;          
    end;
    Hope that helps.............Dave

  • HT1338 how to upload email pictures to Facebook..... iMac

    How do I upload email pictures to my facebook account from iMac

    Post in the iPhoto forum where those experts will provide an answer.

  • Forgot how to upload my pictures to the cloud. how to start?

    forgot how to connect to the cloud to upload my pictures. what is the method?

    File Sync Links that may help... all the links I have, since I don't know the cause of your specific problem
    -https://forums.adobe.com/community/creative_cloud/host_sync
    -http://helpx.adobe.com/creative-cloud/help/sync-settings.html
    -http://helpx.adobe.com/creative-cloud/kb/arent-my-files-syncing.html
    -Size Limits https://forums.adobe.com/thread/1488242
    -sync and email link http://forums.adobe.com/thread/1427516?tstart=0
    -Phantom folder problem https://forums.adobe.com/thread/1490445
    -an overview of assets https://assets.adobe.com/files

  • Need help in adding pictures in existing albums on my new ipad

    I have created several albums on my ipad.
    yesterday when I wanted to add more pictures using the edit button and add photos I was unable to choose the one I wanted to see.
    I only got the world copy instead?

    These links may be helpful.
    How To Create Photo Albums http://tinyurl.com/cxm4eoq
    How to Add New Albums in the Photos App on the iPad & Add Photos to the Album
    http://tinyurl.com/7qep7fs
     Cheers, Tom

  • How to upload/download Pictures from W3K Server

    I have an Ipad 4 running IOS7, Wi-Fi only and is connected to my Network.
    I have a Windows 2003 Server which has a File Server which holds all my pictures and I would like to know if there is some way I can access the server to upload pictures from my Ipad to the server and download pictures from the server to my Ipad.
    If this is possible, can you please give me some direction on how to get the Ipad connected to do this?
    Thanks

    I have an Ipad 4 running IOS7, Wi-Fi only and is connected to my Network.
    I have a Windows 2003 Server which has a File Server which holds all my pictures and I would like to know if there is some way I can access the server to upload pictures from my Ipad to the server and download pictures from the server to my Ipad.
    If this is possible, can you please give me some direction on how to get the Ipad connected to do this?
    Thanks

  • How to Upload photo which is existing in portal to R/3

    Hi All,
    Can someone tell me if i want to upload photo from Portal to R/3, how can we do? Already photo is uploaded in portal and now i want the same photo to be transfer/upload in R/3.
    Please advise me...
    Regards
    KN

    Hi Kumari,
        There is no standard component in portal for uploading the photo from portal to R/3.Hence you need to create a new component either using any of these technologies webdynpro/Visual Composer/Jsp Dynpage with the help of BAPI created in backed to enable the service of uploading.
    Hope this helps.
    Regards,
    Vinoth.M

  • How to determine which pictures are in albums?

    With 7000 pictures over 10 years, I decided to group some into albums. This I did. I then came back the next day to continue my task and learned that photos are not "moved" into albums but all 7000 remain in the library. Trouble is I do not know which photos have already been put into albums. When looking at the library is there a way to know which photos belong to an album? Is there an app for that?

    Smart albums can only tell which photos are not in an album. 
    Why isn't there a label under the photo library that indicates that a certain photo is part of the this face, this album and that event?
    Send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • How to upload the data from existing ods to new cube?

    Hi all,
    There is an existing ods and reports are been created for that ods. My task is to create a cube and pull out the data from the ods to cube.
    I have created a cube with update rule. And i want to know to how to load all the data from the existing ods to the newly created cube.
    thanxs
    haritha

    Hi haritha,
    If you've already created the update-rules, try to create cube, than make a mapping between ODS & Cube.
    If done,
    1. Right-Click on ODS, find the menu update data to data target.
    2. Choose for Init.
    If you wanna make it update data to cube automatically, then you must setup the setting in ODS.
    1. double-click on it.
    2. In setting, you'll see the option for "automatically update data to data target".
    3. Choose for it.
    Hopefully it can help you a lot.
    Regards,
    Niel.
    thanks for any points you choose to assign.

Maybe you are looking for

  • ORA-06502: PL/SQL: numeric or value error: Bulk bind: Error in define (WWV-11230)

    Hello, I'm running into the above error when running a master/detail form. I can also run the form as a portlet and the form comes up but if I try to save, query or reset, I also get the error. I have portal 3.0.9.8.0 and I do have other master detai

  • JAX-WS: SAXParseException parsing MSN Search WSDL file

    I'd like my java app to use JAX WS to make calls to the SOAP API for Microsoft's Live Search. The WSDL file is located at: http://soap.search.msn.com/webservices.asmx?wsdl I download that file and called it msn.wsdl. I then ran the command "wsimport

  • JPA/TopLink

    Hi Everyone, I am using JPA with vendor implementation toplink. For some complex queries like START WITH EMPLOYEE_ID = 100 CONNECT BY PRIOR EMPLOYEE_ID = MANAGER_ID ORDER SIBLINGS BY LAST_NAME, I am plannign to use TOplink api like ReadAllQuery and E

  • Error on Send Pipeline

    Hi There, I am getting the below error, what frustrate me is that the same pipeline most of the time does work and now n then I get there below error, I am thinking maybe there is an issue with the Pipeline or the data from SQL. There was a failure e

  • Java update for safari and os x

    i am having grave difficulty using thompson learning, because it does not support the common os x browsers, and netscape does not recognise the jre 1.5 that i have installed. can apple provide some serious update to safari, or could someone advice me