Photoshop auto saving images from internet?

I've just received an image through an email which when I opened it automatically opened in my Photoshop album (only starter edition 3.0), however when I clicked to view the next image I saw an image I had randomly viewed on the bbc site half an hour earlier. The further on I clicked, the more images came up from working on the internet today. Can Adobe automatically save images you view but have not copied to any files? It seems quite strange and surely it will take me ages to find my actual photos in the future. Does anyone know what this is and how to turn it off?! Many thanks

Sounds like you have Watched folders switched on [Edit/Prefs] and it is pointing to the folder structure that includes IE's cache folder.

Similar Messages

  • Saving images from internet

    how do i save images from the internet to my iphone photo library?

    Page 79 of the manual:
    "Saving Images from an Email Message or Webpage
    You can add images attached to an email message or webpage to your Photo Library.
    Add a photo to your Photo Library: Press and hold the photo, then tap Save Image.
    The image is added to the Camera Roll album. You can upload your Camera Roll
    pictures to your computer’s photo application by connecting iPhone to your computer. "
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • Saving Images from Internet to iPhoto

    New issue with Mountain Lion upgrade. When I "right-click" on an image on the internet, FaceBook, web site, etc. and select the "import into iPhoto library" option I receive an error that says "safari can't communicate with iPhoto" and I can't save the photo. It used to work just fine before the upgrade. Any ideas?

    Tried it here and got the same error as you did. Tried turning off Safari extensions and it worked. Turned extensions back on to see if there was one that was causing the problem and it still worked!
    Try turning off extensions on your Safari and see if you get the same behavior.

  • Saving images from camera raw in new CC suite

    Hi Im having trouble re saving images from new adobe cc bridge camera raw, images once saved then show in bridge with no adjustments done in camera raw and the images are downsized to KB size images even from a 9.20mb raw image, Ive looked at setting or rather preferences and totally lost please help!!
    Thank you
    Jon

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/bridge

  • How can I keep people from saving images from my website?

    How can I keep people from saving images from my website?

    Hi,
    have a look at this thread
    http://discussions.apple.com/thread.jspa?messageID=5645821&tstart=0#5645821
    and the link I posted in that thread
    However there's no way to avoid that people grab photos from your website. Nevertheless there are ways for making it a little more difficult.
    Regards,
    Cédric

  • Saving images from web on itouch?

    My itouch stopped saving images from Safari?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Safari and Clear History, Cookies and Data
    - Try a different browser like Chrome

  • I saved images from an imessage.  now when I open Imessage, the pictures will not go away. When I press "done" the pictures remain. Cannot send a message

    I saved images from an imessage.  Now when I open Imessage, the pictures are displayed on the screen.  When I click on "done" the images do not go away.
    Therefore, I cannot send a message.

    Quit the app completely and try again. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Or try this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Issues saving images from the internet!!!

    I just got my iPhone 4s and I am having issues saving photos from Tumblr onto my phone. The tap and hold does not work, it doesn't come up with the menu at the bottom to save the photo, it just gives me the option to copy the photo which doesn't help me one tiny bit. Am I being stupid or something? It seems so simple...

    is this wap or wifi internet? if its wap like over gprs go to tools in the browser options when on the page and go to view images you can save them from ther. if its wifi then you cant

  • Saving images from facebook...low-res? Please help

    Hi. I'm working on our school's yearbook through walsworthyearbooks' online design. I saved an image from facebook that we need, but it turns out incredibly small and pixelated. Walsworth staff can't help me.
    I put the image in photoshop, and it looks to be a normal size, and is not pixelated. the image I'm trying to put in right now is 400X474 pixels and I changed the resolution from 72 to 150 on photoshop.  I've tried PNG and JPEG.
    What can I do? I even tried taking a screenshot of the image on facebook so that it wouldn't be saved directly from facebook. The image fits the entire screen, so I don't know why it would turn out so small and messy when put into an online designer.

    Put a link to the facebook image here. If the image on facebook is 400px by 474pixels the image should print quite well as a portrait sized around  2" x 2.37"  for 200 DPI should be good for a yearbook image.

  • Saving pics from Internet on Ipod Touch

    Does anyone know how I can save pics off the internet or from email onto my Ipod Touch? Seems like apple looked over this feature....

    Hi,
    Touch and hold the picture, the option to save will pop up, saved images can be found in you "photos" app....
    ...all provided you have 2.0 software of course.
    Regards,
    Dud.

  • Saving Images from URL

    Hi
    i am trying to save an image from the internet i am able to view them in my program but when i try to save i get the Error
    javax.imageio.IIOException: Can't read input file!
    If anyone could point out were i am going wrong or give a few suggestions on what to do this would be very helpful.
    Below is the code i am using to to get the image from the internet and try to save it
    public Image loadURL()
         Image image = null;
         try
              URL url = new URL(UrlLocation);     
              image = ImageIO.read(url);               
              File2 = url.toString();               
         catch (IOException e)
              e.printStackTrace();
         return image;     
    public void saveImage(String ImageType)
              try
                   FileDialog openfiledialog = new FileDialog(new Frame(),
                   "Please choose Image to save",FileDialog.SAVE);
                   openfiledialog.setVisible(true);          
                   if (openfiledialog.getFile() != null)
                        File file = new File(openfiledialog.getDirectory(),
                        openfiledialog.getFile() + "." + ImageType);                                   
                            File outputfile = file;               
                        ImageIO.write(out, ImageType, outputfile);
              catch (IOException e)
                   e.printStackTrace();
         }

    Umm, you need to actually read the image bytes from the external webserver. It will do you good to read the javadoc for URLConnection (retrieved through URL). You can read an InputStream from it, and then you can for example put what you read into an ByteArrayOutputStream. You can ask this output stream for a byte array containing what has been written to it, and then you can write this byte array into a FileOutputStream. There may be ways to make this more effective, but these steps are essentially what should happen to solve your problem.

  • How to copy and paste images from Internet to keynote on iPad?

    I want to make presentations on the go using Internet images and keynote. How can I get images from websites copied into my photo album, as that seems to be the only way you can add a image in keynote. Is there legal problems involved in it? Because I can do it no problem using my desktop etc.
    Thanks,
    Dave

    Click and drag is your friend!
    This thread probably belongs in the safari area, but anyway:
    If you click and hold, there should be a cursor that appears with a file. Then, simply drag it to your desktop where the file will appear.
    Or:
    Right-click (control-click) the picture and there should be a 'save image' or 'save image as' option. Select that, then save it!
    Afterwards, simply find the file in your screen saver options in system preferences, and then select it.
    Good Luck!

  • Photoshop CS5 - drag images from web into photoshop issue

    Has anyone had this happen or know a solution? Photoshop CS5 at work does this, but the one I bought for home doesn't... weird
    When I drag an image from the web directly into Photoshop, the program almost freezes, I can select tools, but cant use them, I can get the handles to display with Free Transform, but then cant scale it. I have to actually close the file, then re-open it to continue working.

              The exact same thing happens with my photoshop CS5! very irritating! My boyfriends photoshop CS5 works fine and does not have this problem either! HELP!

  • Problem uninstalling Photoshop CC & opening images from Lightroom

    I have installed Photoshop CC 2014 on my Windows 7 64 bit PC and want to uninstall the previous CC version.  However, when I try to uninstall I get the attached message. I have followed all the instructions and still keep getting this message.  I have run the Cleaning Tool but it doesn't list the CC version only the 2014 under Creative Cloud. Any suggestions would be greatly appreciated as I don't need 3 versions of PS on my PC.
    My second problem is that when I click on Edit in Photoshop CC 2014, in Lightroom 5.5, it opens Photoshop but the image doesn't appear.  It was working initially but for some reason has stopped working.

    Im running on the latest version of osx and having the exact same problem with opening files in photoshop cc 2014 from Lightroom. Would be great if someone had a fix for this.

  • Saving images from Muse gallery.

    Hi,
    My client has recently addressed an inquiry to me. He was trying to download images from any gallery-page on the website that i designed from him: http://www.andreyisakov.com
    It is a simple gallery created with a lightbox slideshow widget.
    However, it is only possible to save the entire webpage, i.e. the gallery as a whole. There seems to be no way to save a single image (tried in Safari and Chrome both on Win and Mac).
    Does anybody know the solution to the problem or a workaround making it possible to save images from Muse gallery?
    Many thanks in advance!

    Hi
    Users can save the image displayed on page with a right click action > save image.
    Are you looking for some specific function for saving image files on page ?
    Thanks,
    Sanjit

Maybe you are looking for

  • I lost my emac G4 installation disk, how can i get my admin password back?

    I lost my emac G4 installation disk, how can i get my admin password back?

  • Payment cancellation records with debit amount 0 can't be extracted to BW?

    Payment cancellation records with debit amount 0 can't be extracted to BW? We use 0FI_AP_4 to extract R3 data to an ODS.  We restrict the data selection in the ODS start routine of update rule to select company code range and accounting document type

  • Hsodbc

    Hi I followe these url and step to connect from Oracle to sqlserver http://www.dba-oracle.com/t_heterogeneous_database_connections_sql_server.htm SERVER X -- SYBASE SERVER Z -- ORACLE DATABASE Below is a series of steps that are needed to set up the

  • Scale Circle on XY Graph

    I found a post from 2005, showing how to plot a circle on an xy-graph knowing the center and radius, http://forums.ni.com/ni/board/message?board.id=170&message.id=146782&query.id=2708998#M146782. My xy grid is rectangle and Altenback mentioned a solu

  • Publishing to YouTube -

    Having trouble trying to upload to YouTube for the first time. When I choose that option in iMovie, I am asked to add a YouTube account. When I select that, I see this message in my web browser. "Third-party Applications iMovie wants your permission!