Messages Opening Image Cache Folder when Sending Files

Messages / iChat seems to be opening my image cache folder every time I send an image to my contacts the image cache folder opens in Finder and stays open with the copied image. Is there a way to get rid of this? It's really annoying. It started happening after I updated to Mavericks.
Thanks!

Hi,
I don't have an answer for this one.
Are you finding those items are zipped before Sending ?
Where are they from?
I get them zipped when sending a pic dragged from a Browser or from iPhoto but not from the Desktop or a Finder window.
10:44 pm      Tuesday; November 5, 2013
  iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb (Snow Leopard 10.6.8)
 Mac OS X (10.6.8),
 Couple of iPhones and an iPad

Similar Messages

  • Iphoto gives message "no images were selected" when hit print button.  Yet the the images are clearly selected in the print window.  I've printed hundreds of images without a problem before.  Iphoto 6.0.6, MAC 10.5.8

    Iphoto gives message "no images were selected" when hit print button.  Yet the the images are clearly selected in the print window.  I've printed hundreds of images without a problem before.  Iphoto 6.0.6, MAC 10.5.8, Suggestions?

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • Premiere Pro crashes when sending files to media encoder

    Premiere Pro CC keeps crashing when sending files to Media Encoder. This is a new problem. I cleaned the cache, typed purge into terminal, checked the sharing in the preferences library and verified/repaired disk permissions. What else can I try? Help, I have urgent deadlines this week!

    I am using the most updated version of PPro CC with OS 10.8.5. It seems to have issues with certain sequences and not others.  It also may be the files themselves.  They play fine in the program viewer and I have sent them to Media Encoder before, but if I create a new sequence with the same settings and copy the files into it, the same thing happens. I have a lot of 29.97 720x480 (1.21 pixels) and 1440x1080 (PAR 1.333) footage to edit together and create dvds out of (not my idea - it's a job) and I am in the middle of trying various ways of encoding to make it as clear as possible.
    Currently I am using 1440x1080i HD anamorphic sequence settings encoding into 1440x1080 p HD anamorphic with frame blending, maximum render quality, Target bit rate of 30 VBR 2 pass. Then combining those files with other sequences into a longer 1440x1080 p HD anamorphic sequence and encoding MPEG 2-DVD NTSC widescreen progressive 100% quality, VBR 2 pass and the output is much better. This has been working, and today suddenly it stopped and started crashing. Any ideas?

  • Remember to open the specific folder when you go file-open in dreamweaver.

    Hi, everytime I go to 'file - open', the default folder under 'look in' is 'my documents'. Once I opened a local folder in dreamweaver, I need dreamweaver to remember that folder for all the time.
    I know I can modify required folder as a default folder in words 2003 this way: Tools - Options - File Locations - highlight Documents - click Modify - browse the folder I need the application to remember.
    The question is what is the equivalent this in dreamweaver to modify, just like in word?
    Thank you for your help,

    If you go to Window | Files and select the site you are working on (screen shot posted), then when you go to File | Open, it will take you to that sites root folder.  Is that what you were looking for?
    Gary

  • Error when send file by RMI

    I take application RMI client, server.
    Client will auto print screen by 3 seconds, when send to server.
    Server delete picture old and update picture new.
    But client only send a first time, next time is throw Exception "java.io.IOException: Write error"
    Server_
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface IUpload extends Remote{
         public void close() throws RemoteException;
         public void sendData(byte[] data, int offset, int length) throws RemoteException;
         public void sendFileName(String fileName) throws RemoteException;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.rmi.RemoteException;
    import java.rmi.server.UnicastRemoteObject;
    import java.util.Date;
    public class UploadServer extends UnicastRemoteObject implements IUpload{
        public UploadServer() throws RemoteException {
              super();
         FileOutputStream fout = null;
         public void close() throws RemoteException {
              if(fout != null) {
                   try {
                        fout.close();
                   } catch (IOException e) {
                        e.printStackTrace();
         public void sendData(byte[] data, int offset, int length) throws RemoteException {
              if(fout != null) {
                   try {
                    fout.flush();
                        fout.write(data, offset, length);
                        fout.flush();
                   } catch (IOException e) {
                        System.out.println("Error sendData " + e);
                System.out.println("Nhan file " + (new Date()).toString());
         public void sendFileName(String fileName) throws RemoteException {
            File file = new File(fileName);
            if ( file.exists() ){  
                System.out.println("File nay da ton tai va da xoa");
                file.delete(); 
            else {
                System.out.println("File nay chua ton tai");
            if(fout == null) {
                   try {
                        fout = new FileOutputStream(fileName);
                   } catch (Exception e) {
                        System.out.println("Err sendFileName " + e);
    import java.rmi.Naming;
    import java.rmi.RemoteException;
    public class RunServer {
         public static void main(String[] args) throws RemoteException {
            //java.rmi.registry.LocateRegistry.createRegistry(8585);
            IUpload download = new UploadServer();
            try {
                Naming.rebind("Server", download);
                System.out.println("Khoi dong server thanh cong...");
            catch (Exception exp){
                System.out.println("Err " + exp);  
    Client_
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import java.rmi.Naming;
    import javax.imageio.*;
    public class CaptureScreen {
        String outFileName;
        public CaptureScreen(String fileName) {
            outFileName = fileName;
        public void Send() throws Exception
            Toolkit toolkit = Toolkit.getDefaultToolkit();
            Dimension screenSize = toolkit.getScreenSize();
            Rectangle screenRect = new Rectangle(screenSize);
            Robot robot = new Robot();
            BufferedImage image =
                    robot.createScreenCapture(screenRect);
            ImageIO.write( image, "jpg", new File(outFileName) );
            try {
                IUpload upload = (IUpload)Naming.lookup("//localhost/Server");
                upload.sendFileName(outFileName);
                FileInputStream fin = new FileInputStream(outFileName);
                byte[] data = new byte[8000];
                int lengthFile = fin.read(data);
                int offset = 0;
                while ( lengthFile != -1  )
                    upload.sendData(data, offset, lengthFile);
                    lengthFile = fin.read(data);
                upload.close();
                fin.close();
            catch (Exception exp){
                System.out.println( exp.toString() );
    public class RunClient {
        public static void main(String[] args) throws Exception
            while (true)
                try {
                    System.out.println("Waiting 3 seconds....");
                    Thread.sleep(3000);
                catch (Exception exp){
                    System.out.println("Err " + exp);    
                CaptureScreen screen = new CaptureScreen("screen.jpg");
                screen.Send();   
    }

    throw Exception "java.io.IOException: Write error"Who threw it, the client or the server? At what line of code?
    You'd be better off declaring those remote methods to also throw IOException and let it be thrown back to the client if it happens, rather than catching it silently inside the server. That way the client knows the server is failing and can made a decision about whether to continue.The client should also show the complete stack trace, not just the message.

  • Signatures disappear when sending file attachment in iPad Mail

    Whenever I send an attachment from GoodReader or Pages the file appears at the bottom of the message and my default signature disappears.  How can I send files with a signature?

    Hi,
    Attachment Content is not Mandatory to enter unless you wish to override the Attachment Property.
    Basically we use this content along with Encoded Image Property like chart, spc and image loader action block.
    If you are loading file from system using Proper path in Attachment Section then no need to use Attachment Content section.
    Ensure that you have set the Attachment Content Type to "application/pdf" to send pdf files and a valid File path in Attachment section.
    Hope this helps!!
    Regards,
    Adarsh

  • Tabs disappear and open a new window when editing files in Wordpress

    When editing files in Wordpress built-in code editor, if I highlight and try to copy/paste to another file or even within the same file the tab I am on will often abruptly close and then reopen itself in a whole new window. This is extremely disruptive. I have to close the window that popped open and go back to my browser instance with the open tabs and create a new tab for that page then restore my tabs in their previous order. The have to do it all over again a few minutes later.
    Never had any type of trouble like this with previous versions of Firefox, and nothing else has changed on this PC.

    Hi Nicolas,
    I don't know about a pop-up, but if you are trying to open a page (page 2) in a new window (internet explorer window), then do the following:
    Instead of using a navigate pushbutton, use a hyperlink component.
    In the URL selection option insert the URL (web address) of page 2. You can find the URL by going to SE80, in the repository browser select "BSP Application" and "THE TECHNICAL NAME OF YOUR BPS". Open your BSP and go to the folder "pages with flow logic" and find your "page 2". Double click on your page and then select the "properties" tab and navigate to the bottom where you will see the pages URL.
    Insert this URL address into your hyperlink component back in the Web Interface Builder.
    Leave the Target selection as parent. Make sure your internet explorer enhanced options are set to "not reuse the same window" under the browser options.
    Good luck.
    Rael

  • System error when send file with Sender File Adapter

    Hi all,
    I have configured a "File To ABAP Proxy" scenario. After configuring, i executed a "Test Configuration" in Integration Directory and it's all OK. But this file unable to reach into ABAP Proxy Target. In the Runtime WorkBench\Message Monitoring,  I get an error message in below:
    Engine: Adapter Engine     
    Status: *System Error     *
    Start: 15.08.2008 14:04:01     
    End: 15.08.2008 14:19:01           
    Sender Service: BS_XI_SERVER     
    Interface Servic: urn://FILE_TO_PROXY
    MI_EMPLOYEE_OB
    In this case, I don't know why my Sender File Adapter is error and why status is "System Error" and why it can't reach into Target System. Can it concern a role user?
    ( For more clearly: I configured the source file and the path correctly. And i used the xml file with the content and the document name correctly. In general, the Sender Adapter File don't convert the sender file and its content is same as the Payload in the "Test Configuration", i think it is all OK.)
    Could anyone please help me to resolve this problem, anyone can explain this error, how can i resolve this error?
    Thanks a lot in advance,
    Vinh Vo

    Hi Chirag,
    1.I source structure is very simple as below:
    <ns0:MT_MATERIAL xmlns:ns0="urn://FILE_TO_PROXY">
       <MATERIAL>
          <WERKS>1000</WERKS>
          <MATNR>MAT00001</MATNR>
          <MAKTX>Chemical Material</MAKTX>
       </MATERIAL>
    </ns0:MT_MATERIAL>
    2. the Communication Channel Monitoring in Runtim WorkBench\Adapter Engine is OK for my Sender File Communication Channel, it's in Blue Light.
    However, i don't know what's FCC?
    Thanks and best regards,
    Vinh Vo

  • How to stop request for admin password when sending files to trash?

    I am requested the admin password when ever sending a file to trash using the mouse or the context menu.
    How to stop this annoying request?
    It was not like this before.
    I am working on a non admin account for security reasons. I got admin details here of cause.
    Thanks for you help!
         Till Kopper

    I gave my working account admin abilities in the system preferences. logged out and back in. Run the command line "sudo rm -rf ~/.Trash" as Topher Kessler suggested. Now my own password was accepted (before this ine and the admins accounts one failed). No there is no annoying request for the admin passowrd when sending a file to trash. changed my work account for no admintrative in the system prefs and logged out and in.
    Problem solved.
    THanks to Topher Kessler!
    (how to give you now the 10 point you deserve?)

  • Freezes when sending files

    Hello! My Skype recently updated to 7.0.102 and now every time I start sending files to any of my contacts, Skype basically freezes. Sometimes I can scroll in the chat but it takes forever. It does not necessarily crash, as whoever I'm sending the file to does recieve it and when it's done Skype un-freezes. I've tried logging in and out, as well as restarting my computer but the problem remains. Is this a bug with the new update? Does this happen to anyone else? Should I re-install Skype?

    hola yo tengo un problema similar al tuyo, tambien empezo cuando actualice ayer mi skype a la version 7.0.102,  es que cuando inicio sesion con mi cuenta hotmail, abre normal, pero cuando empieza a cargar las notificaciones se congela completamente y me sale el mensaje que ha dejado de funcionar

  • Archiving  file in different folder in sender file adapter

    Hi,
    I have a requirement in witch i have to pick 7 different file from seven different folder.
    for this I am using advance selection tab and defining all the other folder path.
    but my problem is I have to archive the different file in different folder .
    For exm..
    /folder1/file1.txt need to be archive in /archive_filder1/file1.txt
    /folder2/file2.txt need to be archive in /archive_filder2/file2.txt
    /folder3/file3.txt need to be archive in /archive_filder3/file3.txt
    can any one tell me that how to  define the dynamic  archive folder path??.
    regards,
    Navneet

    Hi Navneet
    In File Access parameters --> Target Directory
    Use this type of Directory name
    \XIDEV_STORES\%store%\sapoutbound
    here %store% will be changed accordingly
    e.g. if file will come for store 001 then this %Store% will be replaced by 001 and file will be placed in this 001 folder and if file will come for store 002 then this %Store% will be replaced by 002 and file will be placed in this 002 folder over FTP.
    For to achieve this Go to Advanced tab 
    For Variable Substitution check mark Enable
    Now speciofy the parameter values for Variable Name and Reference
    Under Vriable name specify = store
    Under Reference specify = payload:WP_PLU02,1,IDOC,1,EDI_DC40,1,RCVPRN,1     -
    You have to give full path name here that where this store variable is located into IDOC.
    Hope this example will help you
    Regards
    Dheeraj Kumar

  • Error message when sending files

    Hi! I am a long time user of Firefox and would like to use it on my Samsung Galaxy Note 2, but am having some issues. When I save a image using Firefox (press and hold on images to save), I cannot send the image via text. I get the message: unable to attach, file not supported. I am able to save images with no problem using the built-in browser and with Dolphin. It would be great if there is a way to fix it--I would love to use Firefox on my Android phone. Thanks!

    We can lock this one, she also posted in Lightroom: http://forums.adobe.com/thread/1285090
    Virginie, creating multiple threads for a similar problem means that you will have a hard time to follow up.
    I would also recommend that you change your user name to something different than an email.

  • Mail blooms two messages when sending file through dock

    Just upgraded to Leopard from Tiger. When I drag a .doc or .mp3 to Mail in the Dock, Mail opens two new messages instead of one.
    Has anyone else seen this?

    I've seen this same bug, and reported it. It only happens with certain file formats and in certsin conditions, though.

  • .psd file reducing size when sending file to web guy who is using PC (1020x750 changing to 640x471)

    I have created a layered .psd file for a client of mine for his website who is dealing with a web guy in India to programme it. The guy in India is using a PC.
    The file when I send it out is sized 1020pixels x 750pixels, at 72dpi. When the web guy opens it at the other end he is saying it is 640pixels x 471pixels.
    Has anyone experience this before? Is there something I am setting up wrong within my .psd file?

    You might be using Snow Leopard 10.6 and you  might have sent the message without noticing the option in the lower right of your message window.
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-2516338-18245/355-193/Screen+s hot+2010-01-13+at+5.32.18+PM.png

  • Can't create new folder in home folder when saving files

    In gnome, when I want to save any file in my home folder, and I want to create a new folder in my own home. The new folder appeares for several minutes and then disappears.
    If I create new folder in other directory. There is no such problem.
    Also I can create new folder in my own home directory in nautilus or by mkdir.
    any one can help me.....
    Thanks very much....

    I think either way should work OK - it's less of a security risk to use a standard account for "everything", including web browsing, but I confess I don't myself do this. You would again have to authenticate with an admin username/password if you do download and install from the standard account.
    Whichever way you do it, this article may be relevant:
    *About file quarantine in Mac OS X v10.5 and v10.6*
    http://support.apple.com/kb/HT3662
    It includes the following:
    If you have multiple user accounts on your Mac, the user account that downloaded the file is the only user account that can remove the quarantine attribute to the file. All other user accounts can open the quarantine file, but they will be presented with the quarantine dialog box asking "Are you sure you want to open it?" every time they open the file.
    --------------------

Maybe you are looking for

  • Payables Open Interface Pgm fails without any error(Very urgent)

    All, I'm into an integration project where in I'm pushing Invoice doc from a third party appln to Oracle apps (11.5.10.2) thru payables open interface. The integration is smooth till today. We pushed a record today, but the concurrent neither picks u

  • Why can't I send emails after iOS5 upgrade of iPhone 3GS?

    Having upgraded to iOS5, my iPhone 3GS will receive but will no longer send emails.  The error message says that it cannot send mail because the recipient [named] was rejected by the server.  This happens whether I am trying to reply to an incoming m

  • Error on iTunes 8.2.1. in iStore  (-42404)

    I recently lost my Spotlight and other apps, went to Discussions, tried various suggested things (repairing permissions, etc) and couldn't restore them, so had to resort to re-installing my OS X CD's and then upgrading to 10.4.11, and doing a lot of

  • Newbie:  Blocking Actions in JavaScript

    Hello, I want to do something that should be very simple.  I want too prevent a form from being submitted if a dropdown has a particular value and a signature is present in a signature block.  I would be happy to block the signature from taking place

  • Generation of webservice client

    in jdev 9.05 it is possible to generate a very simple webservice client which respect the original package names indicated in the wsdl by jdev:packageName is this not possible in version 10. I only seem to be able to generate a very complicated clien