Adobe asked me to update - I agreed. The fiorst 2 screens led me to a third which asked me to purchase a photo plan for $9.99 that I didn't want. I couldn't get out of that except by returning to the previous screens. I just want to download the updated v

Adobe asked me to update and when I tried to download it I got to a screen that asked me to buy a photo program for $9.99 that I didn't want. I could only get out of it by going backwards and repeating the whole thing. So I couldn't down;ad what Adobe wanted me to do.

There was a reply. But if you didn't get that, you won't get this one I suppose. Come back to the forum, don't rely on email.

Similar Messages

  • Getting out of memory exception while loading images in web browser control one by one in windows phone 8 silverlight application?

    Hi, 
    I am developing a windows phone 8 silver light application . 
    In my app I am displaying images in web browser control one by one , those images are the web links , the problem is after displaying 2 to 3 images I am getting out of memory exception .
    I searched for this exception how to over come , everybody are saying memory profiling ,..etc but really I dont know how to release the memory and how to clear the memory .
    In some sites they are adding this
    <FunctionalCapabilities>
    <FunctionalCapability Name="ID_FUNCCAP_EXTEND_MEM"/>
    </FunctionalCapabilities>
    by doing this am I free from out of memory exception?
    Any help ,
    Thanks...
    Suresh.M

    string HtmlString = "<!DOCTYPE html><html><head><meta name='viewport' content='width=device-width,initial-scale=1.0, user-scalable=yes' /></head>";
    HtmlString = HtmlString + "<body>";
    HtmlString = HtmlString + "<img src=" + source +" />";
    HtmlString = HtmlString + "</body></html>";
    innerpagebrowser.NavigateToString(HtmlString);
    that image source is the web link for example www.sss.com/files/xxx/123.jpg .
    Note this link is not real this is sample and image is of size 2071X3097
    Suresh.M

  • I recently downloaded Ios 7 and all the songs that i have purchased before but deleted off my itunes because i didn't want them showed up. I don't know how to delete them off my ipod and i really don't want them there

    I recently downloaded Ios 7 and all the songs that i have purchased before, but deleted off my itunes because i didn't want them, showed up. I don't know how to delete them off my ipod and i really don't want them there. Is there a way to get them off? The songs dont show up in my itunes on my computer, just on my ipod with a download button next to them. I don't want them there anymore because i don't like that kind of music anymore and i don't know how to get them to go away.

    There is a similar setting for Videos on that Settings screen, so if you leave that 'on' you may have similar happening in the Videos app

  • I have a gen. one ipad purchased from a friend.  I find that it's using 5.1.1 and I am trying to download Netflix 5.1.  However, I keep getting a prompt that I am REQUIRED to update to iOS 6 in order to download the Netflix icon to my iPad. How to fix??

    I purchased a frist gen. iPad from a friend.  I find that it's using 5.1.1. and says that it's "updated" when I check.  Problem came when I tried to download my Netflix onto the ipad.  I keep getting the prompt that I must upgrade to iOS 6.  The netflix is 5.1 so I don't understand the problem.  My son also purchased a first gen. iPad and was able to download his netlifx account with no problem.  He got an option to "download a previous version".  I don't get that option and we have the same iPads - both running 5.1.1
    I read that there is a way around this problem but can't seem to locate a solution.  I've tried numerous times and always get the same prompt - that I must upgrade to iOS6.  Can anyone help me with this.  Using my Netflix was one of the main reasons I purcased the iPad.

    And they do offer a compatible version. As I am running running Netflix on my first generation iPad just fine.
    You'll need to first "purchase" the non compatible version  either on a newer device that can run it or on a computer running iTunes using the Apple ID that is on the first Gen iPad.
    After that is done, you should be able to go into the App Store App, and find Netflix under the Purchased Tab. Tap on it to download it and you should be warned its not compatible, but will be offered the compatible version.
    App Store: Install the latest compatible version of an app
    http://support.apple.com/kb/ht5919

  • Why i'm getting out of memory exception when trying to comparing two Lists ?

    First this is a paint event.
    In the paint event i draw a rectangle and then adding the pixels coordinates inside the rectangle area to a List:
    private void pictureBox1_Paint(object sender, PaintEventArgs e)
    if (cloudPoints != null)
    if (DrawIt)
    e.Graphics.DrawRectangle(pen, rect);
    pointsAffected = cloudPoints.Where(pt => rect.Contains(pt));
    CloudEnteringAlert.pointtocolorinrectangle = pointsAffected.ToList();//cloudPoints;
    Bitmap bmp = new Bitmap(pictureBox1.Width, pictureBox1.Height, PixelFormat.Format32bppArgb);
    CloudEnteringAlert.Paint(e.Graphics, 1, 200, bmp);
    I'm drawing a rectangle thats the rect(Rectangle) variable and assigning to pointsAffected List only the pixels coordinates that are inside the rect area ! cloudPoints contain all the pixels coordinates all over the image !!! but pointsAffected contain only
    the coordinates of pixels inside the rectangle area.
    Then the mouse up event:
    private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
    StreamWriter w = new StreamWriter(@"c:\diff\diff.txt");
    pixelscoordinatesinrectangle = new List<Point>();
    pixelscoordinatesinrectangle = pointsAffected.ToList();
    DrawIt = false;
    for (int i = 0; i < trackBar1FileInfo.Length; i++)
    DrawIt = true;
    trackBar1.Value = i;
    LoadPictureAt(trackBar1.Value, sender);
    pictureBox1.Load(trackBar1FileInfo[i].FullName);
    ConvertedBmp = ConvertTo24(trackBar1FileInfo[trackBar1.Value].FullName);
    ConvertedBmp.Save(ConvertedBmpDir + "\\ConvertedBmp.bmp");
    mymem = ToStream(ConvertedBmp, ImageFormat.Bmp);
    backTexture = TextureLoader.FromStream(D3Ddev, mymem);
    scannedCloudsTexture = new Texture(D3Ddev, 512, 512, 1, Usage.Dynamic, Format.A8R8G8B8, Pool.Default);
    Button1Code();
    pictureBox1.Refresh();
    newpixelscoordinates = new List<Point>();
    newpixelscoordinates = pointsAffected.ToList();
    if (pixelscoordinatesinrectangle != null && newpixelscoordinates != null)
    IEnumerable<Point> differenceQuery =
    pixelscoordinatesinrectangle.Except(newpixelscoordinates);
    // Execute the query.
    foreach (Point s in differenceQuery)
    w.WriteLine("The following points are not the same" + s);
    else
    am1 = pixelscoordinatesinrectangle.Count;
    am2 = newpixelscoordinates.Count;
    //MessageBox.Show(pixelscoordinatesinrectangle.Count.ToString());
    w.Close();
    Once i draw the rectangle when finish drawing it i'm creating a new List instance and store the pixels in the rectangle area in the pixelscoordinatesinrectangle List.
    Then i loop over trackBar1FileInfo that contains for example 5000 images files names from the hard disk.
    This is the problem part:
    pictureBox1.Refresh();
    newpixelscoordinates = new List<Point>();
    newpixelscoordinates = pointsAffected.ToList();
    if (pixelscoordinatesinrectangle != null && newpixelscoordinates != null)
    IEnumerable<Point> differenceQuery =
    pixelscoordinatesinrectangle.Except(newpixelscoordinates);
    // Execute the query.
    foreach (Point s in differenceQuery)
    w.WriteLine("The following points are not the same" + s);
    else
    am1 = pixelscoordinatesinrectangle.Count;
    am2 = newpixelscoordinates.Count;
    I'm doing refresh for the pictureBox1 so it will go one each image to the paint event and will create a new List pointsAffected will have each time a different pixels coordinates.
    So newpixelscoordinates should be with new pixels coordinates each loop itertion.
    Then i'm comparing both Lists newpixelscoordinates and pixelscoordinatesinrectangle for a different items.
    And write those who are not the same to a text file.
    So i'm getting a very large text file with many pixels coordinates that are not the same in both Lists.
    The problems are:
    1. Does the comparison i'm doing is right ? I want to compare one list index against other listi ndex.
       For example in the List newpixelscoordinates in index 0 if i have x = 233 y = 23 and in the List pixelscoordinatesinrectangle in index 0 there is x = 1 y = 100 then write this as not the same to the text file.
      What i want to do is to check the whole List items against the other List items and if some of the items are not the same write this items to the text file.
    Next itertion new image new Lists with new pixels coordinates do the same comparison.
    The List pixelscoordinatesinrectangle is not changing it's storing the first pixels coordinates when i drawed the rectangle first time. Only the List newpixelscoordinates change each time, Should change each itertion.
    2. The exception i'm getting is on the line:
    newpixelscoordinates = new List<Point>();
    I added this line since i thought maybe i didn't clear it each time but it didn't help.
    Before adding this line the exception was on the line:
    newpixelscoordinates = pointsAffected.ToList();
    The exception is: OutOfMemoryException: Out of memory
    System.OutOfMemoryException was unhandled
    HResult=-2147024882
    Message=Out of memory.
    Source=System.Drawing
    StackTrace:
    at System.Drawing.Graphics.CheckErrorStatus(Int32 status)
    at System.Drawing.Graphics.DrawImage(Image image, Int32 x, Int32 y, Int32 width, Int32 height)
    at System.Drawing.Graphics.DrawImage(Image image, Rectangle rect)
    at System.Windows.Forms.PictureBox.OnPaint(PaintEventArgs pe)
    at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer)
    at System.Windows.Forms.Control.WmPaint(Message& m)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    InnerException:

    Hi Chocolade1972,
    >> Does the comparison i'm doing is right ? I want to compare one list index against other listi ndex.
    I think you could use “Object.Equals” and the link below might be useful to you:
    # Object.Equals Method (Object)
    https://msdn.microsoft.com/en-us/library/bsc2ak47(v=vs.110).aspx
    >> OutOfMemoryException: Out of memory
    This error is very common, and when there is not enough memory to continue the execution of a program, it would be thrown.
    It would be helpful if you could provide us a simple code to reproduce your issue.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • PLEASE HELP!!! Ipad 4 couldn't get out of recovery mode.

    Basically, I was upgrading my Ipad 4 to iOS 7 from iOS 6, but I forgot to do the back up. And after few times reboot, the screen display like this:
    So i connect it to itunes, then the itunes said it has detected my ipad was on recovery mode. It said i have to restore the ipad which mean i'll lost all the data. Normally when i upgrade the ipad, it never ask me to connect to anything. This has never happen to me before so i don't really know what to do. I've try a couple software like Tiny umbrella, Recboot on both Windows and Mac Os or trying to go to the DFU mode but nothing worked. Please help!!!

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • I want to purchase a TV show for a season that starts next week, but the new season isn't posted yet, when will it be?

    I know the episodes wil not be available yet, but the option to buy hasn't appeared yet.
    When do new seasons tend to be come available for purchase? Is it day of, or should it already be there?

    They appear whenever the maker of the show releases them.

  • I don't want to receive any more email notifications for this right now.... How do I get out???

    Help!
    My mail is collapsing with all the email notifications and can't turn it off!!!

    Click here for the instructions on stopping the emails.
    (85056)

  • Every time I use Firefox it defaults to a full screen view that I cannot get out of without aborting the application because I cannot use any other controls

    This never happened until a few days ago and I didn't knowingly do anything to bring it about. I also just now uninstalled and reinstalled Firefox but that didn't help anything. My internet explorer and all other applications work fine. It is only Firefox that now automatically goes to a full screen view when I launch it and I do not know how to get out of it except by aborting by using ctr+alt+del

    ..............thank you so very much for the super great tip.........who knows why this just started happening to me but as long as your fix works then I guess it sure doesn't matter

  • I want to download an app on to my mac that is on my iPod but it ask to pay for it again. What do i do so I can get it without paying again?

    I want to download an app on to my mac that is on my iPod but it ask to pay for it again. What do i do so I can get it without paying again?

    If what you previously bought is an iOS application, ensure that you’re signed into the iTunes Store with the Apple ID you used to buy it, or sync the device with an iTunes library which contains it.
    If what you previously bought is a Mac OS X application, you can’t. The developer needs to create the two versions separately and may choose to charge for both.
    (111475)

  • HT5622 I am trying to buy some help on the "candy crush" game but I keep getting this pop-up" unable to purchase. This item is for an app that was purchased by a different Apple ID. to buy this item with this Apple ID you must first purchase the app. My d

    I am trying to buy help on my candy crush game but I keep getting this pop-up? Unable to Purchase. This item for an app that was purchased by a different Apple ID. To buy this item with this Apple ID, you must first purchase the app. My daughter set up this game on my Iphone. I am on level 65 and don't wont to start over if I don't have to.
    Any suggestions?

    If it was indeed purchased with a different apple ID then there is no work around for what you want! You can try signing in with your daughter's apple ID and password and update the app and purchase whatever you want then log back in with your apple ID. This may work!

  • How do I get out of this box????

    I froze after the original installation of lightroom 3 and couldn't decide whether to create a new lr file or upgrade my elements 9 file.  At the freezing point I am stuck in a little box which asks me to (myself!) create the file or choose another file.
    I don't know where to  create the file, or how to name it, or where to put it.  Would prefer to upgrade my photoshop elements file, but no longer seem to have that choice.  I can't get back to that choice.  I have uninstalled and reinstalled my new lightroom, but it just comes up to that box.
    Help help help please.
    Bea  c

    Hi there...yikes, I don't use this email address very often and didn't see all the messages until just now.  I went on chat with an adobe person this morning, and he walked me through the manual removal procedure, including how to find hidden files.  Once I had deleted lightroom in that place, everything was fine and I could relaumch it completely...thanks for your interest.
    Date: Mon, 5 Dec 2011 14:46:52 -0700
    From: [email protected]
    To: [email protected]
    Subject: How do I get out of this box????
        Re: How do I get out of this box????
        created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Saintmas1 or Laxneutrino can either of you please post a screenshot of the screen you are stuck on?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4065240#4065240
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4065240#4065240. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Download Servlet throwing Out Of Memory Exception

    I am trying to download file of more than 500 mb through servlet but getting out of memory exception .
    Before downloading i am zipping that huge file .
    try {
         String zipFileName = doZip(file);
          file =null;
          System.gc();
          File inputFile = new File(zipFileName);
          InputStream fileToDownload = new FileInputStream(
                                            inputFile);
           response.setContentType("application/zip");
         response.setHeader("Content-Disposition","attachment; filename=\""
                                                      + fileName.replaceAll("tmx", "zip")
                                                                .concat("\""));
         response.setContentLength(fileToDownload.available());
         byte buf[] = new byte[BUF_SIZE];
         int read;
         while ((read = fileToDownload.read(buf)) != -1) {
                   outs.write(buf, 0, read);
              fileToDownload.close();
                   outs.flush();
                                  outs.close();
    }catch(Exception e ) {
      //Getting out of memory.
    }Please suggest solution for this .

    cotton.m wrote:
    My zip suggestion was as follows.
    Take the file. Do not set the Content length header. Do set the Content encoding header to gzip. Create a GZIP output stream using the servlet output stream. Read the unzipped file in and output it through the gzip output stream.
    This cuts out one full cycle of file reading and writing from what you are doing currently.Thanks for u r reply
    InputStream fileToDownload = new FileInputStream(
                                            file);
    response.setContentType("application/gzip");
    response.setHeader("Transfer-Encoding", "chunked");
    response.setContentLength((int) file.length());
    GZIPOutputStream gzipoutputstream = new GZIPOutputStream(outs);
    byte buf[] = new byte[BUF_SIZE];
    int read;
    while ((read = fileToDownload.read(buf)) != -1) {
         gzipoutputstream.write(buf, 0, read);
    fileToDownload.close();
    outs.flush();
    outs.close();I made changes accordingly . Please provide u r view on this .

  • TS4268 how i can download facetime for my iphone4s.i couldn't find out it in apple store also.please help me....

    how i can download facetime for my iphone4s.i couldn't find out it in apple store also.please help me...

    You don't download it.  it is built in to your iphone, unless it was originally purchased from one of the Middle eastern countries where it is not allowed.
    You should not leave your e-mail on a public forum.
    iPhone User Guide (For iOS 6 Software)

  • Oracle.jdbc.driver.T4CPreparedStatement causing out of memory exception

    I am using oracle spatial 11.2.0.3 g.
    I am getting out of memory exception on a process.
    I analyzed the heap dump using OOMemory analyzer and figured out  oracle.jdbc.driver.T4CPreparedStatement keeping 73%  of the heap space.
    Is oracle expanding the SPARQL queries in java side or keeping the results in cache.
    How to solve it ?

    Hi,
    We will need a re-producible test case (preferably small) to figure out why you are getting out of memory. You can send it to Oracle Support or email me at alan dot wu at oracle dot com.
    Jena Adapter does not cache SPARQL query results on the Java side. The T4CPreparedStatement is not even in Jena Adapter's
    code path or RDF's code path.
    Thanks,
    Zhe Wu

Maybe you are looking for

  • Time Capsule or External HD?

    Hi. Currently using a Lacie 1TB external drive for my TimeMachine backup, abuot to buy an addition 2TB drive to "piggy back" my existing one. Just looking for advice regarding would i be better buying a 2TB Time Capsule instead of a Additional extern

  • Changes to desktop effects freezes the screen

    Recently I installed Arch linux and Kde for the WM. I am currently using "KDE Platform Version 4.5.1 (KDE 4.5.1)" The desktop effects "composting" works but everytime I make a small change to any of the settings the screen freezes for an idefinite am

  • Boot with Num Lock turned on

    Hello all, I have a G500 laptop.  When it boots up, I would like the Num Lock to automatically be turned on.  I can't see anything in the BIOS that would do that.  Any other places I should be looking?  Any other way to keep it turned on? Thanks! Dan

  • Adobe Reader is not installing

    I am using windows XP. I have used Adobe reader before. But, recently i have formatted my system and after that i tried to install adobe reader, but it is not installin in my system. Could any one please tell me the reason??

  • Error configuring server

    I have the developer's edition. I can't configure a server. I am running the system on a macOSX. I am using a coldfusion webhost. So what is going on is that I am making an ecommerce website using the ColdFusion edition of CartWeaver. In order to do