Adding a layer with image from URL

I am trying to write a script that adds a layer to a document, and loads an image from a url such as "http://fantasy411.mlblogs.com/ron-burgundy.jpg" .
How can I go about doing this? Thanks in advance.

If you have a newer version of Photoshop that supports sockets you can do something like this.
// openImageFromWeb.jsx
// Copyright 2006-2009
// Written by Jeffrey Tranberry
// Photoshop for Geeks Version 3.0
// modified by MLH
Description:
This sample script shows how to download images from a web server using the
Socket object.
// Note: Socket.read() parameter & behavior
// Socket.read() will read or time out. It may not read all data fromserver.
// Socket.read(999999) will read 999999 bytes, or timeout, or socket will be
// closed by the server.
// enable double clicking from the
// Macintosh Finder or the Windows Explorer
#target photoshop
// Make Photoshop the frontmost application
app.bringToFront();
// SETUP
var socket = new Socket;
var html = "";
var domain = "www.adobe.com" // the domain for the file we want
var sImg = "/ubi/globalnav/include/adobe-lq.png"; // the rest of the url for the file we want
var port = ":80"; // the port for the file we want
// MAIN
var f = File("~/socket_sample_" + sImg.substr(sImg.length-4)); // 4 = .gif or .jpg
f.encoding = "binary"; // set binary mode
f.open("w");
if (socket.open(domain + port, "binary")){
        // alert("GET " + sImg +" HTTP/1.0\n\n");
        socket.write("GET " + sImg +" HTTP/1.0\n\n"); // get the file
        var binary = socket.read(9999999);
        binary = removeHeaders(binary);
        f.write(binary);
        socket.close();
f.close();
if(app.documents.length == 0) app.documents.add(new UnitValue(200,'px'), new UnitValue(200,'px'), 72, 'Untitled 1');
placeSmartObject( f );
f.remove(); // Remove temporary downloaded files
// FUNCTIONS
function placeSmartObject(fileRef){
//create a new smart object  layer using a file
     try {
          var desc = new ActionDescriptor();
               desc.putPath( charIDToTypeID( "null" ), new File( fileRef ) );
              desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ),charIDToTypeID( "Qcsa" ));
              desc.putUnitDouble( charIDToTypeID( "Wdth" ),charIDToTypeID( "#Prc" ), 100 );
              desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100 );
              desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "#Ang" ), 0 );
              desc.putBoolean( charIDToTypeID( "Lnkd" ), true );
               executeAction( charIDToTypeID( "Plc " ), desc, DialogModes.NO );
               activeDocument.activeLayer.resize(100 ,100,AnchorPosition.MIDDLECENTER);
               activeDocument.revealAll();
      } catch (e) {
  if (!e.toString().match(/Place.+is not currently available/)) {
      throw e;
// Remove header lines from HTTP response
function removeHeaders(binary){
        var bContinue = true ; // flag for finding end of header
        var line = "";
        var nFirst = 0;
        var count = 0;
        while (bContinue) {
        line = getLine(binary) ; // each header line
        bContinue = line.length >= 2 ; // blank header == end of header
        nFirst = line.length + 1 ;
        binary = binary.substr(nFirst) ;
        return binary;
// Get a response line from the HTML
function getLine(html){
        var line = "" ;
        for (var i = 0; html.charCodeAt(i) != 10; i++){ // finding line end
        line += html[i] ;
        return line ;
You may have to check your firewall setting if you have one and it doesn't work with some servers. At least I can not get it to work with some.

Similar Messages

  • Adding multiple slides with images from iPhoto

    OK you use to be able to simply drag and drop 25 images in the right column and it creates a slide for each image, I am in v6.3 and it is not allowing me to do that anymore.  How you insert multiple images and each on their own slide, I have 600 images to add and clicking insert slide and adding image is not a good way to do this.

    Your Mac information is confusing;
    Mac OS 10.5.2 is an outdated version of Leopard
    There is no Keynote version 6.3
    The latest version of Mac os X is 10.10.3
    The latest version of Keynote is 6.5.3
    All versions of Keynote create slides from images by drag and drop.
    If you are sure this does not work, delete Keynote and re-install from the Mac App Sore.

  • Download image from URL with applescript

    I want to download an image from an website (and internal IP address) using applescript,
    now I have found a script that works (Download jpeg image to folder with AppleScript from URL).
    But, the web page requires a username and password...
    When I convert the downloaded JPEG into a HTML by simply changing the extension, quick look displays the webpage's 401 unauthorized error page...
    Does someone know how to make the applescript input the username and password?

    The answer depends on how the authentication is managed.
    There are two common ways of implementing authentication in web browsers and knowing which one is used here is essential to scripting the request. One is also significantly harder than the other.
    The first (easy) way is that the username and password can be submitted with the request. This is the original model and is easy to script - if you're using the curl model then it's just a matter of adding the -user switch to the command line:
           -u, --user <user:password>
                  Specify the user name and password to use for server authentica-
                  tion. Overrides -n, --netrc and --netrc-optional.
    This model is a little less secure, though, but might still be used on internal sites since it's easy to implement.
    The other option is that the site uses cookies - you log in via a web form and the server gives your cookie which you then send with subsequent requests and are used to validate your access. This is a more secure, but is harder to implement because there is a multi-step process - login via the web form, capture the cookie, submit the cookie with the download request.
    If you're not familiar with the different methods it can sometimes be hard to tell which one you need, and since it's an internal site there's no way anyone else can check... so you'll need to describe how you login to the site (or are prompted for authentication) before anyone can provide a direct answer.

  • Download Images from URL

    I want to save images to memory 50 images
    My software processing ----
    1. Download Image from URL every 60 secs and all downloaded images have time to use 15 mins
    2. When download image done save images to memory
    3. Then show images in picturebox
    4. When user click button get next image form memory and delete old image from memory
    5. If what images not use in 15 mins auto delete from memory
    Help me ... Thank you a lot 

    Ok chechk the below method/Events that will download 50 image and fill a List<image> object into memory, you need to add a picturebox1 and button1 to your form, I used my profile pic here on msdn the link you've send didn't work:
    //Global Variables
    List<Image> li = new List<Image>();
    int second = 0; //Form Initaile
    public Captcha()
    InitializeComponent();
    //Async download event
    private void ReadCallback(IAsyncResult asynchronousResult)
    HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;
    HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asynchronousResult);
    using (StreamReader streamReader1 = new StreamReader(response.GetResponseStream()))
    li.Add(Image.FromStream(streamReader1.BaseStream));
    pictureBox1.Image = li[0];
    //Download Method for 50 images
    private void DownLoadImages()
    try
    for (int i = 0; i <= 50; i++)
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(new Uri("https://i1.social.s-msft.com/profile/u/avatar.jpg?displayname=fouad%20roumieh&size=extralarge&version=00000000-0000-0000-0000-000000000000"));
    request.BeginGetResponse(new AsyncCallback(ReadCallback), request);
    catch (WebException ex)
    //Form Load
    private void Captcha_Load(object sender, EventArgs e)
    DownLoadImages();
    And here on button click event we remove element and show the next one into picture box, and if used up all image we call the async download messages again to get a new list of images:
    private void button1_Click(object sender, EventArgs e)
    li.RemoveAt(0);
    if (li.Count > 0)
    { //Show next
    pictureBox1.Image = li[0];
    else
    DownLoadImages();
    Also here a timer event I didn't enable but you can enable to check for the 15 mins and destroy the images list if passed:
    private void timer1_Tick(object sender, EventArgs e)
    second = second + 1;
    int minutes = second / 60;
    if (minutes >= 15)
    li.Clear();
    //Call downloadimages or else...
    Fouad Roumieh

  • Interactive Form with images from KM ??

    hello: I need to read an image from km to incorporate it in Interactive Form, but for some reason when being generated the Form does not show it. The subject to dynamically obtain the images from km.
    Thank you very much.

    Hello,
    Please review this link to import a KM image:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/kmc/getting%2ban%2bimage%2bfrom%2bkm%2bdocument%2bto%2bbe%2bused%2bin%2bweb%2bdynpro
    Now you must put the image to an attribute of context of type string. For it you do the following thing:
    //Reading the image file......
         BufferedInputStream bufIn = new BufferedInputStream(resourceimg.getContent().getInputStream());
         byte[] imagebyte = new byte[bufIn.available()];
         bufIn.read(imagebyte);
    //Convertir a String
         String imgString=new BASE64Encoder().encode(imagebyte);
         wdContext.currentContextElement().setImgString(imgString);
    Finally, in the Form you must add a Image Field, with the following properties:
    -Tab field
    URL: empty
    Embebed Image Data
    - Tab Binding
    Default Binding: $record.ImgString
    That is.
    Regards

  • Problem loading & displaying images from URL

    hi,
    I can't manage to display an image into a component from a url... here is what my code looks like :
    public class ImageComponent extends JComponent{
        private ImageIcon imageIcon;
        public void paint(Graphics g){
            if(imageIcon!=null){
                imageIcon.paintIcon(this, g, posX, posY);
        private void loadsImage(String imageURL){
            imageIcon = new javax.swing.ImageIcon(imageURL);
            invalidate();
    }when I call loadImage with a proper url, the image doesn't seem to be loaded...
    it might be that the image is big and long to come (also my connection isn't that fast)... but forcing the repaint of the component (by hiding/showin the component's window) after a good while doesn't do much...
    can anybody tell me where I'm doing wrong...
    cheers,
    DrLeinster

    hi,
    looks like PaintComponent() instead of paint did the job.
    thanks a million..
    for those interested in loading images, I find ImageIcon very limited and at the end I found a better solution :
    public class ImageComponent extends JComponent implements ImageObserver{
        private Image image;
        public void loadImage(URL imageURL){           
                image = Toolkit.getDefaultToolkit().getImage(imageURL);
                prepareImage(image,getWidth(),getHeight(), this);
        public boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height){
            System.out.print("."); // loading progress...
        public void paintComponent(Graphics g){
            if(image!=null){
                 g.drawImage(image,0,0,null);
    }it is far nicer as it displays dots while loading... up to you to attach progress bars or favorit loading guizmo...
    DrLeinster.

  • Downloading images from URL

    Hi All,
    I am trying to write code to download images from given URL. My application will take URLs by querying sql server, will pass that URL to my method and download images to a specific folder. There will be almost 400 images a day to download. I figured out some options like getImage(). But I would like to get idea from you to find the most efficient way to do this.
    Here is the initial code I have come up with
    private void downloadimage() throws Exception {
              String sql = "SET NOCOUNT ON SELECT DISTINCT activation_group_id FROM ACTIVATION_GROUP";
              JdoServer jdo = JdoServer.getInstance(dbKey);
              RowSet rs = jdo.getRowSet(sql);
              while (rs.next())
                   //will fetch URL from rs here, currently passing hardcoded URL for testing purpose.
                   // Get the image
                   MediaTracker tracker;
                   tracker = new MediaTracker(this);
                   Toolkit toolkit = Toolkit.getDefaultToolkit();
                   Image image = toolkit.getImage(new URL ("http://digitalcontent.cnetchannel.com/70/e1/70e18a07-7356-4a54-8498-1493da1dec3d.jpg"));
                   tracker.addImage(image, 0);
    Somehow, tracker = new MediaTracker(this) is giving me the consstructor mediatracker(myclassname) not defined error.
    I am a recent graduate and it's my first project... any help would be appreciated :)
    Thanks

    Ok, here is the update... I have tried something new which is here...
    import java.io.*;
    import java.net.*;
    public class image
         public static void imageDL(String imageURL, File Outputfolder)                     
                   throws MalformedURLException,IOException,FileNotFoundException
              OutputStream out = null;
              URLConnection conn = null;
              InputStream  in = null;     
              int imgNameIndex = imageURL.lastIndexOf('/');
              if (imgNameIndex >= 0 && imgNameIndex < imageURL.length() - 1)
                   try {
                        URL url = new URL(imageURL);
                        String file = url.getFile();
                        file = file.substring(7);
                        out = new BufferedOutputStream(new FileOutputStream(Outputfolder.getAbsolutePath()+ file));
                        conn = url.openConnection();
                        in = conn.getInputStream(); // here's where I am getting error
                        byte[] buffer = new byte[1024];
                        int numRead;
                        long numWritten = 0;
                        while ((numRead = in.read(buffer)) != -1)
                             out.write(buffer, 0, numRead);
                             numWritten += numRead;
                        System.out.println(imageURL.substring(imgNameIndex + 1) + "\t" + numWritten);
                   catch (Exception exception)
                        exception.printStackTrace();
              else
                   System.err.println("Could not figure out local file name for " + imageURL);
         in.close();
         out.close();
    }Everythign works fine, until it reaches in = conn.getinputstream();
    It throws error there:
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
         at sun.net.www.http.HttpClient.New(HttpClient.java:339)
         at sun.net.www.http.HttpClient.New(HttpClient.java:320)
         at sun.net.www.http.HttpClient.New(HttpClient.java:315)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:512)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:489)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:617)
    Any insight??

  • 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.

  • Adding one or two images from my PC to my iPad Mini

    With the help of fellow community members here and Apple Care, I've been able to copy images from my PC's hard drive, using I-Tunes, to my iPad Mini.  I've copied eight collections of photos and created eight "albums", one of which is family photos, to the Mini.
    I've been shown how to delete earlier copied images through I-Tunes simply by "unchecking" sundirectories on my hard drive, and, then, to copy new sets of images by creating new subdirectories and checking these new subdirectories on I-Tunes.
    Now, for the "family" photos, I'd like to be able to add one or two from time to time to the family album in the Mini.
    Do I:
    Add the new photo(s) to the family subdirectory on the hard drive and then copy the new, enlarged collection using I-Tunes, replacing the current family collection?; or
    Delete the family collection by going to I-Tunes and unchecking the box for the family subdirectory, then, in separate actions, copy the new photo(s) to the now larger family subdirectory on the PC and use I-Tunes as before to copy the enlarged family collection to the Mini?
    As long as I leave the remaning seven collections--as shown on I-Tunes--still as "checked" on the PC hard drive, will those 1) safely remain on the Mini as before, 2) disappear from the Mini, or 3) be duplicated on the Mini?

    It worked! A bit convoluted, since I'm not fully up to speed on iTunes, but I managed to transfer and sync as you described.
    I didn't realize that replying would take away my option to award points -- you should have had 10 points for this answer, sorry.
    Thanks again.

  • Reading images from URL without knowing the format

    I have an image url like this: http://example.com/image.php?id=5605. How do I get the actual image from such an URL? I have tried using ImageIO.read and loading the url directly into an ImageIcon without success.

    yeah,
    I knew a little about linearization and but the idea was to help quick loading the very first page of a document while the rest of the data still is arriving. Not exactly what I needed here.
    Anyway, you have just confirmed my fears, I will have to know the document size, where exactly it ends on my stream, in order to correctly load it.
    I appreciate your help sir. Thanks for your time.
    Best regards.

  • Displaying images from url's (9i)

    Is it possible to some how display images retrieved from a url within an image item? I know its possible to display images from within the database and from a file but these images are stored on another server and all i have is a web address, can it be done? Also is it possible to dislpay a series of images that are retrieved in this way in a report?
    Any help is much appreciated.

    Hi,
    this would require a Java Bean to be written. Its not natively possible in Forms
    Frank

  • Creating an O/R layer with TopLink from Ant or a script

    We're currently using JDeveloper and BC4J to generate an O/R layer that simply creates a BC4J entity for each table in our schema with the appropriate associations between tables. The problem with this approach is that it is very brittle. Any change in the database breaks the BC4J layer and we have to recreate the entire thing. Using the JDeveloper wizzard is labor intensive and we want to automate the task of creating a new O/R layer with a script or Ant task, but unfortunately there is no way to do this with JDeveloper.
    Can we use TopLink to generate an O/R layer using a script or Ant task instead of the workbench? It would be a great time saver for us if we could point TopLink to our schema and have it generate an entity per table with the correct associations without having to use the workbench.
    Thanks.

    I have seen some customers do this, although not necessarily with ANT (it was a while ago). We do ship the Deployment Descriptor DTD (search your TopLink install for *.dtd). That should help you generate the mappings. You're on your own with the code, none of the code gen API's are available on the command line outside the MW.

  • How to Display RTF data with images from SQL database in Crystal Report

    I am using Crystal report in my WPF application, I have generate Question Paper Report, in which have Question with images. Question with images are stored in SQL Server in rtf format, I want to generate Question report with RTF Text and Images in report

    Hello Sir,
    I am still Facing problem in Crystal report generation with RTF Data (Text + Images),
    I am storing Questions in SQL Server which are RTF Format, Questions have Text + Images..
    I changed field data type then also i didn't get image in Crystal report
    if i browse an image n stored that in DB then its displaying in Crystal report, but when i pasted that image in RichTextBox and saved that in DB then no data displayed in Crystal report.
    My Table Structure is
    Table Name: tblQuestions
    field :    Questions Varbinary(max)
    I tried with nvarchar(max) also but its aslo not working

  • Get Images from URL's with slight difference?

    Does anyone know how I can download an image referenced in a web page? Get Image URLS from webpage doesn't work, because it is referenced in an unusual way:
    <input type="image" name="theImage" src="http://www.mysite.co.uk.uk/myservlets/myServlet?reqtype=IMG&refresh=184949485733" align="bottom" border="0" WIDTH="400" HEIGHT="400">
    Prior to fetching the image urls, I download the web page from a link, it downloads as html, is there a way to download it as a web archive which might bring the image down as well?
    Rob

    If you're using Firefox, here's something else to try...
    While the web page containing images is open, click on *Tools > Page Info* (or press ⌘I). Click the Media tab and look for a list of image urls in the upper portion of the window. Select any or all of the image urls. Once highlighted, press the *Save As* button in the lower right side of the *Page Info* window. Choose a destination folder and press Open. Image files should be downloaded to the chosen folder.
    Unfortunately, however, during testing (in Firefox 3.6.13), I found that while this method worked fine with some sites, it didn't work so well with others -- Google Images, e.g., would not allow images to be saved. If you encounter similar trouble, you might try setting up and using the workflow below.
    First, create a dedicated download folder, with a name such as "*Firefox Images*." This is important because the workflow's actions will eventually filter out all but the image files in the selected folder -- and its subfolders -- and send any non-image files to the trash. Naturally you'd want to be certain your workflow is acting upon the correct folder, or risk losing essential files elsewhere.
    +Use these actions:+
    1) *Get Selected Finder Items*
    2) *Get Folder Contents* -- check "Repeat for each subfolder found"
    3) *Filter Finder Items* -- filter out non-images:
    Whose: File Type - *Is not* - TIFF Image File -- click the "+" button and add to the list:
    Whose: File Type - *Is not* - JPEG Image File -- click "+" and continue adding:
    Whose: File Type - *Is not* - JPEG 2000 Image File
    Whose: File Type - *Is not* - PICT Image File
    Whose: File Type - *Is not* - GIF Image File
    Whose: File Type - *Is not* - PNG Image File
    Whose: File Type - *Is not* - BMP Image File
    4) *Move to Trash*
    5) *Get Selected Finder Items*
    6) *Get Folder Contents* -- leave "Repeat for each subfolder found" unchecked
    7) *Filter Finder Items* -- remove the accompanying HTML file from the downloaded items:
    Whose: File Type - Is - HTML File
    8) *Move to Trash*
    From Automator's File menu choose *Save As > File Format: Application*. The saved applet will be used as a droplet.
    Firefox web pages to be processed should be saved directly to the newly created "*Firefox Images*" folder. Choose *Save As: Web Page, complete*. Saved web pages can be acted upon individually, or you can fill the Firefox Images folder with multiple saved pages before running the workflow. (How many would be too many to act upon before the workflow fails, however, is unknown; I tested the workflow on only a half dozen or so saved pages at a time).
    To run the workflow, simply drag and drop the Firefox Images folder onto the saved Automator applet's file icon and allow the workflow to complete.
    Good luck, hope this helps.

  • Reading pages with associated images from URL

    Hello,
    I want to read a file through URL from my jsp.I am successful to do so.But the problem is I am not getting "Imgaes"(which are given relative path in the Page which is pointed by the URL).Do anybody have any idea how to get those images..
    Thanks.

    Here is the code for the Reading File
    <%!
    public void showPage(JspWriter out,HttpServletRequest request){
         try{
              URL url = new URL("http://www.clubi.ie/webserch/engines/lycos/display.htm");
              String o1 = url.getAuthority();
              System.out.println("Object got from getAuthority() = " + o1);
              System.out.println("URL object = " + url);
              URLConnection urlCon = url.openConnection();
              System.out.println("URLConnection object = " + urlCon);
              urlCon.connect();
              DataInputStream data = null;
              String line;
              StringBuffer buf = new StringBuffer();
              try {
              data = new DataInputStream(new BufferedInputStream(
                                  urlCon.getInputStream()));
              while ((line = data.readLine()) != null) {
                   //System.out.println(line);     
                   buf.append(line + "\n");
              out.println(buf.toString());
              data.close();
              catch (IOException e) {
              System.out.println("IO Error:" + e.getMessage());
         }catch(Exception e){
              System.out.println("Exception:"+e.toString());
    }//end method
              %>

Maybe you are looking for

  • Editing pdf document with prints with DPI

    Because I can't afford Adobe Acrobat to edit pdf(s) I use Page and Word. I use photoshop to create digital art work and save them at 300 DPI. For the first book I created with an online publisher the art work looked good. However, I re-did the book a

  • Access to Faces context

    Hello all, I am wondering how can I get access of faces context from POJO . Thanks.

  • Bridge CC not stable

    My Bridge CC Win7 64 crashes continuously. I am unable to work with it. Is there any fix?

  • OS 10.7.5 time machine stuck on prepping

    I am running 10.7.5 and my time machine has bee stuck on prepping for weeks. I have seen other fixes in the support posts, but they aren't for Lion. Does anybody know if the fix is the same or is there something new? Thanks

  • Making iPhoto default for syncing

    My iPhone 5s has always default synced to iPhoto perfectly.  Today, a new window from dropbox popped up and I thought I had clicked the right button. But...Now my camera photos won't sync to iPhoto, so I'm wondering how to reassign iPhoto as the defa