Yosemite's Mail Drop upload progress bar?

With Yosemite's Mail Drop is there a way to see how the uploading of the file/s is progressing? When sending large attachments I have no idea in what state the upload is, if it is uploading or not and how much time it will take.

Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
Feedback

Similar Messages

  • My files are not uploading; progress bar stops and I get an error message

    Last night (dec. 23) I was trying to upload 30 photo files. The progress bar works, but it either stalls or at the end I get an error message. These are time critical, I have a client waiting for the photos. I tried sending just a couple of photos, but the same issue happens. Please give me a solution.

    Hi Lory Hawley,
    Have you been able to upload your files? What is the error that you're receiving?
    For starters, please try the following:
    Clear the browser cache and try again.
    Try a different browser (see System requirements | Acrobat.com for a list of supported browsers).
    Please let us know how it goes.
    Best,
    Sara

  • How to Reduce Image Size and show upload Progress Bar

    i need to capture an image from the camera and send it to the server. however to reduce the amount of data transmitted i want to shrink the image and lower its resolution.
    I have code that currently does the following :
    UIImage *testImage = [UIImage imageNamed:@"image1.png"]; // this would come from image picker
    NSData * imageData = UIImagePNGRepresentation(testImage);
    // skipped code that showed URL string setup
    NSString *postLength = [NSString stringWithFormat:@"%d", [imageData length]];
    NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
    [request setURL:[NSURL URLWithString:urlString]];
    [request setHTTPMethod:@"POST"];
    [request setValue:postLength forHTTPHeaderField:@"Content-Length"];
    [request setHTTPBody:imageData];
    NSURLConnection *conn=[[NSURLConnection alloc] initWithRequest:request delegate:self];
    1. need some way to shrink the image size to reduce data traffic
    2. need some way to indicate a progress bar as data is being transfered to the server

    1. The size is visible in the metadata panel, set the dropdown to EXIF. In addition, in the Grid, with Ctrl-J, you can set the options so that you will see the cropped size in the rectangle surrounding the photo.
    2. You cannot, in one action, upload to multiple galleries. Each upload is its own action. I don't know if there is a plug-in to let you upload from LR to 500px in one action; clearly there are plug-ins for Flickr and Smugmug and several others. There should be no need to re-import. Normally, the plug-ins I mentioned will take a TIFF, resize it according to your directions, convert to JPG and upload.

  • E-mail sending with progress bar

    OK so I have a application that allows the user to send an e-mail with multiple attachments. It works fine but I want to add a progress bar - when the user clicks SEND, a new window should pop-up with a progress bar and a OK button after the mail has been successfuly sent.
    Any ideas how to accomplish this?
    Mail sending is handled by this class and is called from a frame:
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.FileDataSource;
    import javax.activation.DataHandler;
    import java.util.Properties;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.Vector;
    import java.io.File;
    import java.io.*;
    public class Mailer implements Runnable {
    boolean success = false;
    String sendToAddress, ccAddress, sendFromAddress,
    subject, messageText, filename, smtpServer;
    mainFrame2 frame;
    public Mailer(String sendToAddress, String ccAddress, String sendFromAddress, String subject, String messageText, String filename,
    String smtpServer, mainFrame2 frame)
    this.sendToAddress = sendToAddress;
    this.ccAddress = ccAddress ;
    this.sendFromAddress = sendFromAddress;
    this.subject = subject;
    this.messageText = messageText ;
    this.filename = filename;
    this.smtpServer = smtpServer ;
    this.frame = frame;
    public void run() {  
    sendMail();
    public void sendMail() {
    Properties props = System.getProperties();
    props.put("mail.smtp.host", smtpServer);
    Session session = Session.getInstance(props, null);
    MimeMessage msg = new MimeMessage(session);
    Multipart mp = new MimeMultipart();
    BodyPart body = new MimeBodyPart();
    BodyPart attachment = new MimeBodyPart();
    try {
    msg.setFrom(new InternetAddress(sendFromAddress));
    msg.setRecipient(javax.mail.Message.RecipientType.TO,
    new InternetAddress(sendToAddress));
    if(ccAddress.length()>3)
    msg.setRecipient(javax.mail.Message.RecipientType.CC, new InternetAddress(ccAddress));
    msg.setSubject(subject);
    msg.setSentDate(new Date());
    msg.addHeaderLine("MIME-Version: 1.0");
    msg.addHeaderLine("Content-type: text/html; charset=\"windows-1251\"");
    body.setText(messageText);
    FileDataSource fds = new FileDataSource(new File(filename));
    DataHandler dh = new DataHandler(fds);
    attachment.setDataHandler(dh);
    attachment.setFileName(filename.substring(filename.lastIndexOf("\\", filename.length())+1));
    mp.addBodyPart(body);
    mp.addBodyPart(attachment);
    // this here is for the attachments, I've already collected them into a Vector
    for(int i=0; i < frame.attachedFiles.files.size(); i++)
    int chertichka = frame.attachedFiles.files.get(i).toString().lastIndexOf("\\");
    String ime = frame.attachedFiles.files.get(i).toString().substring(chertichka+1);
    BodyPart attachment1 = new MimeBodyPart();
    FileDataSource fds1 = new FileDataSource(new File(frame.attachedFiles.files.get(i).toString()));
    DataHandler dh1 = new DataHandler(fds1);
    attachment1.setDataHandler(dh1);
    attachment1.setFileName(ime);
    mp.addBodyPart(attachment1);
    turgData.doc_to_attach = "";
    msg.setContent(mp);
    Transport.send(msg);
    } catch (MessagingException e) {
    e.printStackTrace();
    success = true;
    public static boolean isEmailAddress(String text)
    if(text.indexOf(" ")>-1) return false;
    int kliomba = text.indexOf("@");
    int dotCom = text.lastIndexOf(".");
    if(kliomba < 2 || kliomba >(text.length()-4)) return false;
    else if(dotCom > (text.length()-2)) return false;
    else return true;
    public boolean isSent()
    return success;
    Please provide some code on how to put a progress bar in a pop-up window after the user clicks SEND. Also, the send button should be disabled until the mail has been sent.
    PLZ help me out ;)))

    Hi,
    Check the links for Email Adapter,If u want to send the Attachment then give me ur mail id i will send you one doc which will explain u how to send Email in Attachment.
    Receiver Mail Adapter.
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    /people/community.user/blog/2006/09/07/email-reporting
    /people/community.user/blog/2006/09/08/email-report-as-attachment-excelword
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    eMail Reporting
    /people/community.user/blog/2006/09/07/email-reporting
    Regards,
    Phani
    Reward points if Helpful

  • Yosemite upgrade, stuck at 50% progress bar

    Some guys faced the same issue. But I couldn't restart to safe mode with shift, and recovery mode turn off wifi doesn't help to me. I tried to verify and repair the disk and permissions as Apple Care told me when I called, but not help. I also tried to use internet recovery with cmd option R and reinstall 10.9, but after reinstallation and reboot, it also stuck with some error log file, and I couldn't save this log file to my HD because I don't have permission it said.
    Anyone can help me with that? I tried to use cmd S and sudo command could't be recognized in that mode. Maybe someone can help me go to safe mode without shift and let me turn off file vault (not sure whether it's on) or delete some apps.
    Or any other ways to reinstall 10.9 without losing current files? I didn't back up.
    Please help me.

    This worked for my MBP 17" mid-2010 after 10 hours of minor panic watching progress bar stuck at 50%:
    Reboot and hold SHIFT key to go into Safe Mode and keep holding that SHIFT key.
    *Patience is the key to the Shift key*
    Keep the Shift key down.
    Do not let go of Shift key until you go to Italy when the computer does its Venetian blinds thing and goes into Safe Mode.
    Check whether you have any login items. Do this via via Sys Preferences > Users & Groups
    It is going to be slow. You are in SafeMode.
    Remove any login apps.
    Run any updates for Yosemite (e.g. Pages, Numbers, Keynote) within Safe Mode.
    Reboot. 
    Remember, YMMV

  • Coldfusion upload progress bar with title

    Anyone have idea about the AJAX script with uploading process bar and also the label of file title to database

    AFAIK, there is no built in ajax upload for CF8 (.. or CF9). There are however third party options. But there is not just one ..
    http://www.google.com/#hl=en&source=hp&q=coldfusionfileupload+ajax
    These are the top 2 results from google right now. The examples look pretty thorough.
    http://www.coldfusionjedi.com/index.cfm/2008/2/27/Can-you-do-file-uploads-with-ColdFusion- 8s-Ajax-features
    http://www.bennadel.com/blog/1244-ColdFusion-jQuery-And-AJAX-File-Upload-Demo.htm
    Message was edited by: -==cfSearching==-

  • Upload Progress Bar

    When uploading large files the upload bar does not move. I assume this is a bug. It would be nice to see the upload bar move and also show a percentage complete beside the uploading word. The issue is with large files it becomes hard to tell is the upload working or frozen?

    I discovered an interesting thing today about the upload. While in Google Chrome and uploading a large file you can click back and forth between Files and Apps and in the lower left-hand corner it will show the upload % very briefly.
    IE: Upload (20%) - (with 20% replacing the percentage of upload.)
    I do not know if this works in other browsers. Seeing this they should be able to pull that info and display it beside the Uploading word.
    Adobe: Please add this functionality.

  • Upload progress bar in coldfusion

    Hi,
    Does anyone have a working example of this? I tried all the usual ones (swfoject) but they only ever come with php examples.
    Thanks,
    H.

    I would take a look at the ColdFusion Flash form examples available through http://www.asfusion.com.  Might give you a few ideas as to what you want.
    -Joe

  • Folio Builder Panel - progress bars?

    Not a major thing, I know, but still...
    What happened to the upload progress bars in the Folio Builder Panel? I do like being able to monitor progress.

    OK, I might be mistaken - the bars are there when updating an article, or when adding a single article to an existing folio. With multi-article import, there were no bars. Didn't we get to see loading bars when importing multiple articles? Or is old age setting in?

  • Blueprints progress bar

    Hi all,
    I've successfully followed the progress bar tutorial and created the project described. So, I thought that I'd have a go at adding the progress bar to another web app that I'm working on. I have now just added the progress bar to my project (I've literally just dragged and dropped the progress bar onto a page and have not plumbed it in at all), but I'm getting the following javascript exception:
    'bpui' is undefined
    Does anyone know why this is happening? I've compared the libraries of my web app and of the tutorial app and I can't see any difference. I'm really not sure what is causing the problem.
    Any help would be gratefully received!!
    Kind regards,
    Sian

    The first time I used the progressbar this was all I had in my web.xml
    <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    After it gave me all those problems with the __package__ thing so my web.xml ended up like this
    <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
    <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    And now I got the same ol' problem all of a sudden. I don't know what's wrong. I use the Visual Pack by the way and the project was first started with Creator 2.1. Is there anything I should know?
    I think I should better check out the source so as to get the whole picture of shale-remoting...
    Thanks guys...I hope we solve this thing together

  • Mail Drop Progress Bar?

    How can I tell if Mail Drop is working?  No progress bar is visible during upload or download.

    Found the download progress on the attachment icon in Apple Mail Yosemite.  Still can't see any indication of how the upload is progressing.

  • Progress Bars in File Upload Behavours

    Progress Bars in File Upload Behavours would be great.

    I think we need to be realistic ;)
    KTML4 - isn't going to happen, it was dropped, other 3rd party products are surfacing,
    sadly, we'll not see that again.
    Calendar was a separate Interakt application (not really a toolkit item)
    like the ADDT form control date/calendar picker - so I doubt that will happen
    That said - it would still get my vote for a comeback.
    Ajax tool - need to specify EXACTLY what tool and how it would expand on the ADDT and how it would relate to SPRY and other Components now being made available for DWCS4 ie YUI etc
    atb
    Paul

  • Creating Progress Bar for File Upload

    Hi, I'm trying to implement a progress bar indicator for a file upload in WebDynpro, without very good results.
    I'm using a fileupload UI element, a TimerTrigger and a ProgressIndicator UI elements for this purpose.
    It seems that using the fileupload UI element the iview is locked during the file upload, and therefore it prevents for the timer triggered action to be performed (this action updates the progress bar).
    Additionally I havent been able to capture the transfered bytes from the upload. Maybe I'm using the wrong elements?
    How could I achieve this. Has anyone done it?
    I would really appreciate all the help I could get.
    Homer Vargas

    Hi,
    Can anyone please tell me the way to upload file from client system to server.
    The code i have is as follows:-
    Jsp:-
    function saveImage(){
         //projectname.javafilename
         var strStatus = "save";
         document.saveImageForm.action="/irj/servlet/prt/portal/prtroot/TestXML.TextImageLink?frmstatus="+ strStatus;
         document.saveImageForm.method="post";
         document.saveImageForm.submit();     
    <form name="saveImageForm" encrypt="multipart/form-data">
    <table width="388" cellpadding="1" cellspacing="1" bgcolor="#F0F0F0" border='0'>
           <tr>
                 <td><font color="blue" face="verdana" size="2">IMAGE:</font></td><td><input id="image" type="file" name="image" value=""/></td>
         </tr>
    <tr>
         <td><input type="submit" name="submit" value="Submit" onclick="saveImage();"/></td>
         </tr>
    </table>
    </form>
    now i am not getting what to write in java file
    using IPortalComponentRequest.
    Using the jsp file upload in tomcat is working but here it is not working
    please help meee
    Thanks in Advance
    Regards
    Sirisha

  • How to use a progress bar with java mail?

    Hi, i'm new here.
    I want if someone can recommend me how to show a progress bar with java mail.
    Because, i send a message but the screen freeze, and the progress bar never appear, after the send progress finish.
    Thanks

    So why would the code we post be any different than the code in the tutorial? Why do you think our code would be easier to understand? The tutorial contains explanations about the code.
    Did you download the code and execute it? Did it work? Then customize the code to suit your situation. We can't give you the code because we don't know exactly what you are attempting to do. We don't know how you have changed to demo code so that it no longer works. Its up to you to compare your code with the demo code to see what the difference is.

  • Black screen/progress bar with Yosemite startup

    Since installing Yosemite on my relatively new imac, when I boot up i get a black screen with the Apple logo and a progress bar, which takes about 90 seconds to load. I've tried disc first aid, verify/repair permissions etc , done a new install from my backup disc but it still persists. is this now the way of the yosemite world?
    Thanks
    Bruce

    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

Maybe you are looking for