Uploading a slideshow to Mobile Me

I spent hours preparing a slideshow and when I uploaded the album to Mobile Me, the slideshow did not upload as I had designed it. It just looks plain, no music and no special effects. How do I upload the slideshow? That information was not in the online information and no Apple Care help is available after 8 pm CST.

As already pointed out export the slideshow via the File ➙ Export ➙ Slideshow menu option where you'll get the following options:
Click to view full size
You'll get a QT file of your slideshow that you can import into iPhoto and then add to a MMe gallery like in this MMe gallery: Movie MMe Gallery.
You can have movies and photos in the same gallery if so desired.
NOTE: If you import the resulting QT movie into iMovie you can then export it out of iMovie to a MMe gallery and get multiple sized versions for those visitors with different internet connection speeds. This is an example of that:iMovie to MMe Gallery
OT
Message was edited by: Old Toad

Similar Messages

  • How do I upload a slideshow to a website

    How do I upload a slideshow to a website?

      If you use Share >> On-line Album it’s possible to use one of the templates and save to your hard drive.
    You can then upload the resources folder using FTP and link to the index.html file.
    FTP allows you to drag and drop to your website. If you don’t have and FTP application you can Google to find one. I use Cute FTP which is very good.
    Alternatively if you are located in Europe you can use Adobe’s Photoshop showcase or Photoshop.com in the US.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • How do I upload a slideshow in an email from a mac?

    how do I upload a slideshow in an email from a mac?

    Your best bet would be to send the slideshow through a huge file sharing service.  Most if not all of them are free.  The top 3 majors ones I can think of off the top of my little head are:
    Rapidshare
    Transfer Big Files
    Mega

  • How do I upload a slideshow from iphoto to my iphone?

    How do I upload a slideshow from iphoto to my iphone?

    Open the iPhoto Library package with the Finder
    Click to view full size
    and move the folder named "iPod Photo Cache" to the Trash.  Launch iPhoto and try syncing again.
    OT

  • Am i allowed to upload a slideshow made in iPhoto to Facebook? It has no music

    Am i allowed to upload a slideshow created in iphoto onto Facebook? I have not used any music

    Just to complete the picture:
    Apple’s royalty-free jingles and sound effects included with the iLife applications are all free to use, as clearly stated in section 2.C of the iLife Software License Agreement:
    “You may use the Apple and third party audio content (“Audio Content”) contained in or otherwise included with the Apple software, on a royalty-free basis, to create your own original soundtracks for your video and audio projects. You may broadcast and/or distribute your own soundtracks that were created using the Audio Content, however, individual samples, sound sets, or audio content may not be commercially or otherwise distributed on a standalone basis, nor may they be repackaged in whole or in part as audio samples, sound files, sound effects or music beds.”
    http://images.apple.com/legal/sla/docs/ilife09.pdf

  • Upload Lightroom slideshow to Sandvox Website

    Hi I am a Mac user and would like to know, can I upload a slideshow from Lightroom 4 to my Website created in Sandvox, I need to do this on a regular basis, on several different pages on my website. Can anyone give me an idea as to the path I need to use.
    Richard

      If you use Share >> On-line Album it’s possible to use one of the templates and save to your hard drive.
    You can then upload the resources folder using FTP and link to the index.html file.
    FTP allows you to drag and drop to your website. If you don’t have and FTP application you can Google to find one. I use Cute FTP which is very good.
    Alternatively if you are located in Europe you can use Adobe’s Photoshop showcase or Photoshop.com in the US.

  • How do i upload pictures from my mobile phone to email account?

    how do i upload pictures from my mobile phone to my yahoo account?

    I'm a little confused as to why you are asking this in a Firefox forum. I think Yahoo might be a better place to ask.

  • I want to upload some files from mobile phone to webserver? how? thanks!

    I want to upload some files from mobile phone to webserver? how? thanks!

    The vibrating phone was created in Java. Some british company is selling the program to women for on the go fun. I'm pretty sure the actual code in the program is only a few lines.
    Oh... you were talking to the other guy. He wants a java app to upload something to a JSP or database server.

  • Export a slideshow to Mobile me

    Hi, I've created a slideshow in Aperture and added a soundtrack. The slideshow is 4min 12secs long.
    I would like to export it to my MobileMe account for friends to view. I see that under the "Export" option I can make the slideshow suitable for MobileMe/ Youtube, but how do I (can I ?) actually export it to my Mobile me account for viewing.... ?
    The MobileMe button/option is greyed out...
    Thanks for any help..... Gerry

    shutterspeed33d
    Thanks for your help. I had previously exported using the 'Export' button on the top right corner, incorrectly thinking it would allow me to export to MobileMe, which in fact it didn't...
    So I tried alternative ways, ie, File>export... etc.... this did not work. However doing as you suggested, exporting using the provided 'Export' button, then exporting to desktop, then dragging back into Aperture as a new project, did create the slideshow complete with music track. Which I was then able to upload to MobileMe, via Aperture...
    Again thanks for your help, It's a good workaround, and it does the trick, but it's a pity that it cant be done more directly by using the MobileMe link provided, after creating the slideshow. Which seems more logical.....
    I think I'll use feedback to Aperture on this one, this action could certainly be easier... But thank you again...
    Regards..... Gerry

  • Problem using email to upload image files to Mobile Me gallery

    I will cross post this question to both Mail and Mobile Me discussion groups because I don't know where my problem lies.
    I have published a gallery page from iPhoto to my Mobile Me gallery. There are two ways to upload additional photos. I am not having trouble adding image files with the Upload feature. I cannot get the email function to work. The emails I send to the email address for the gallery bounce back to my mail inbox.
    Subject: Delivery Notification: Delivery has failed
    and in the body of the bounced email:
    Recipient address: [email protected]
    Reason: SMTP transmission failure has occurred
    Diagnostic code: smtp;521 5.2.1 Fatal failure of WOA
    Remote system: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25) (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Original-envelope-id: [email protected]
    Reporting-MTA: dns;asmtp028-bge351000 (tcp-daemon)
    Original-recipient: rfc822;[email protected]
    Final-recipient: rfc822;[email protected]
    Action: failed
    Status: 5.2.1 (SMTP transmission failure has occurred)
    Remote-MTA: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25)
    (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Diagnostic-code: smtp;521 5.2.1 Fatal failure of WOA
    One of the images I am trying to attach is a jpeg file of 61 kb.
    I have tried to drag the image from my desktop to the body of the email. I have tried using the "attach" function and selecting the file name. I am not sending any text with these files.
    When I built these albums, I checked and enabled all the options.
    I am having this same issue when I try to upload via email to any of my Mobile Me gallery pages.
    There is currently one photo displayed here:
    http://gallery.me.com/tplattenberger#100352
    If anyone wishes to try to upload to that gallery using email (Send to Album) that would be great and if successful, that might provide a clue to my problem.
    As I say, I currently have one photo there. If you find a lot more, please do not add.
    What's the problem?
    Tom

    The images I am trying are newly created and old.
    A weird hint perhaps...
    I just copied an image from Apple's home page and pasted it into the email and tried again...
    it worked.
    So I tried again, dragging from iPhoto and it did not work... the email bounced back.
    So I tried again, this time using copy and paste (like I did from Apple's page) from iPhoto... it did not work.
    Tom

  • Slideshow on mobile me gallery

    What is the easiest way to post a slideshow (with itunes music) on my mobile me gallery?

    Roger:
    Here's how to easily get a slideshow (one converted to a QT movie) online to be viewed:
    1 - export the slideshow via the File->Export->Slideshow. Select either Medium or Large for the size.
    2 - import that QT movie file into iPhoto.
    3 - create an album and add the QT movie
    4 - select that album and click on the MobileMe button in the lower toolbar of iPhoto. If it's not there go to View->Toolbar and select MobileMe.
    5 - select the options in the drop down window in iPhoto and hit the Publish button.
    That's it. Once the gallery is published you'll get a URL for it and can send that URL to those who you want to view it.
    If you would like to have multiple sizes in the gallery for access by computers and cell phones import the QT movie into iMovie and export it to MobileMe. You'll get a MMe gallery with up to 4 sizes like this one:iMovie to MMe Gallery.

  • IPhoto vs Aperture uploaded image quality to Mobile Me

    I realize this may have been discussed, but by my tests the exact same album loaded up to Mobile Me gallery via iPhoto looks better than Aperture...how can this be? I searched for topics about image quality and Mobile Me and found many complaints but little in the way of solutions. While, for me, this seems to be a solution, it is sad that my "pro" app is doing a worse job than a "consumer" app, not to mention the additional importing needed to use iPhoto. And this is v7.1.5 of iPhoto. Anyone have any other solutions for image quality involving Aperture and Mobile Me galleries? Thanks.

    So the album finished uploading and the difference is amazing! I was very hesitant to send a link to my client after Aperture had uploaded the album...the images were that soft. But the iPhoto, while still a touch soft look 10X's better. Same album...just different programs used to upload to Mobile Me gallery. I'm not sure what is going on with Aperture, but Apple really needs to figure it out.

  • Uploading files from a mobile phone

    Hello.
    I'm trying to do a file uploader via an HTTP-Post Request to send files to a server from java enabled mobile phones using internet... is it possible?.. Some idea?
    Thanks in advance for any help, and sorry my English
    Daniele

    first of all not all the mobile phone support file system if you want to uplaod a file(in form of recordstore) contained within yourt jar file that
    will be created after the installation can be uplaoded just open the outputstream connection to server and sumbit it simple as that

  • When uploading from Aperture to Mobile Me.....

    Does Aperture convert Raw files while uploading versions or do I need to convert first and then upload.
    Thank you in advance.

    I believe it uses the previews (JPEG) it generates for every master and version to post the image to Mobile me. It uses the same previews with all iLife applications as well.
    You control the size of previews in the Aperture Preferences.
    Once you set the preview size, Select all the images you are going to upload, and select Image\Update Preview. Then drag the images to the Mobile Me Gallery. It does the rest for you.
    Hope this helps.

Maybe you are looking for

  • Multiple vendor payments with a single u201CYOURSELFu201D cheque

    Hi, How do we handle multiple vendor payments with a single u201CYOURSELFu201D cheque, drawn in favor of the paying banker? OR NEFT transfers in SAP. Thanks, M. Senthil

  • Mac 10.5.4 update

    Don't know if this is specific to LR 2.0 only or not, but when I switch Spaces, then click on LR in the dock, the dock goes away, but LR is not switched back in. So far, this is the only thing amiss with the 10.5.4 update. Too early to tell. Worst ca

  • Insert a PDF?

    Post Author: MaCook CA Forum: Crystal Reports I want to know if it is possible to insert a pdf document into CR XI. I see there are other ways to get the image into the report but they are not as legible as I would like them to be. Any thoughts or su

  • Blurry images in browser

    hi Can anyone help me understand why images look fine in Fireworks and in Dreamweaver, but then in FF current and in Safari they look really blurry? http://www.bluehippotravel.com/spahotels-new3.php The left nav buttons (3 of them) which are images a

  • Bold 9900 - help please, upgrading from 8520 perhaps

    Hi all I have the 8520, and in the new year perhaps upgrading to the Bold 9900. On my 8520 I use the side button every day, to jump straight to the Instant Messaging folder, to use BBM and WhatsApp. I see the 9900 does not have that.  Is there any wa