Old version confusion.

I purchased Photoshop elements 7.0 (extended) and I tried re-downloading it. Later I see Adobe has deleted all of the versions.
How am I supposed to react to the fact that I can't use any other version? I tried using the serial for PSE version 12, but it remained invalid.

Does this help in any way: http://helpx.adobe.com/photoshop-elements/kb/reinstall-photoshop-elements-or-premiere.html

Similar Messages

  • Ipad opening old versions even though deleted - can't view new versions!

    I am designing and creating iBooks and need to show them to my editor to before they are finished - I export them, upload to drop box and she downloads them onto her iPad 3 Version 6.0.
    When I make the necessary changes, i duplicate the file, rename it, and re upload to dropbox. ie 'Joe Blogs 2', that way I have many versions to refer back to if necessary, and i label each one on the cover to save confusion.
    Since the new update for iBooks Author we have had some pretty big problems, I have edited, exported and uploaded the books as usual, my Editor has downloaded them onto her ipad, but every time we tap on the new title to open the book 'Joe Blogs 2' it opens an old version 'Joe Blogs 1', even if the old one is deleted from the ipad, also, even if we upload a completely different book it still opens 'Joe Blogs 1' I have changed the titles, and file names and it has made no difference.  we are both using iBook latest update.
    NOTE: All books were created from an original template created in iBooks Author version 1, from the 'Basic' template. I have been using this template because I don't know how to recreate it - the are no chapters it starts with 1 page then has sections so that it ends up with a table of contents which looks like this, which means that the 'chapter' (section) title can be tapped and go straight to the section, which is something I would lose if I started the books from scratch (which I obviously don't want to do)

    Thank you for replying, and for the tips on templates, that makes a lot of sense - i have now created a template from the original book, and saved it as a template (I cannot make the template from scratch as I do not know how, as I explained, to make a contens page that functions like the one in the picture)
    Unfortunately, this has not solved the other problem
    Just to check we are on the same page (no pun intended) what I have been doing is this;
    • To start a new book: opening 'contents page', a template i have created (and saved as a template, so I get it from the welcome screen on IBA 2, as opposed to opening an existing file and duplicating it.) use that template to create a new IBA file, ie 'Maslen and Mehra 1' which I save, export as 'version 1' when prompted on IBA v2. then I add this to drop box.
    after my editor has downloaded and seen it, I make changes, then duplicate and save as ''Maslen and Mehra 2' to show to her again. then I make make changes, duplicate, save, make changes, duplicate, save... up until 'Maslen and Mehra Final Proof (9)'  
    since the new IBA update every time she tries to open a new file, the last one I sent her before the update opens (which is really old now as we have made a lot of changes, on our current book we are on version11 but version 3 opens!. Thinking that my template might be the problem I did the following:
    • started from scratch: chose an bulit-in IBA template, put a 'A' on the cover, saved it as 'A', exported it, added it to drop box. my editor downloaded and opened it fine.
    • changed the 'A' to a 'B' on the front cover (did not duplicate the file)  exported it, I changed it to 'version 2' when prompted, saved the .Ibooks file as 'B' and uploaded it to drop box. My editor dowloaded it fine, and it appears in the library but When my editor opens it 'A' opens instead. 
    • Started again (with a completely different built in IBA template) repeated the process, new book 'A' again worked fine, but this did not change to 'version 2'. same problem. new book 'B' opened as new book 'A' again.
    • Started again (again with a completely different built in IBA template) this time duplicated 'A', named it 'C', saved, exported 'C' and 'A' still opened even though 'A' is a different file!
    • tried changing the meta-data file title, repeated the process, made no difference.
    • tried different drop box account, didn't make a difference
    • she tried restoring her ipad, still made no difference
    • my editor cannot view IBA files (only .ibooks) so we cannot get around it that way...
    so my current issues:
    • My editor and I need to find a way we I can create a book, send her a copy and make changes, and send her a new copy, whether by duplicating it or even by re-exporting the original document (and saving a copy as a spare) - but neither currently work - why is this so difficult? this was not a problem before the update, she could have multiple books with similar filenames, all orginating from the same file. (which I now know is not the correct way, but even using templates has not made a difference)
    • regarding templates: have I missed somewhere that you can make a template from scratch? I thought the closest you could get was to choose an existing template, delete everything then 'add section/chapter' if I go to 'New' in ibooks author then it still just takes me to the template page so I have no choice but to choose one of the IBA templates or one of the ones I have created myself, given the choice I would always rather start from scratch and a blank page anyway! :-)
    Thankyou again

  • Mutations to update entity store by several versions - confused

    I am slightly confused about how mutations work. We have been working in our development environments making changes to a particular entity as follows:
    Version 1 - deleted a field. It was not marked as a database key. Added a deleter like this:
    new Deleter(XXXXXXX.class.getName(), 0, "xxxxx")
    Version 2 - added a field. It is not marked as a database key, hence incremented version number, but no mutation code.
    Version 3 - deleted a filed. It is not marked as a database key. Added a deleter like this:
    new Deleter(XXXXXXX.class.getName(), 2, "yyyyy")
    This worked fine for multiple deployments in local development environments, but when we tried to deploy to a test environment, we got this error message when trying to initialise the database:
    Caused by: com.sleepycat.persist.evolve.IncompatibleClassException: (JE 4.0.103) Mutation is missing to evolve class: com.chello.booking.model.XXXXXXX version: 0 to class: com.chello.booking.model.XXXXXXX version: 3 Error: Field is not present or not persistent: yyyyy
    Mutation is missing to evolve class: com.chello.booking.model.XXXXXXX version: 1 to class: com.chello.booking.model.XXXXXXX version: 3 Error: Field is not present or not persistent: yyyyy
    (Note that when upgrading an application in a replicated environment, this exception may indicate that the Master was mistakenly upgraded before this Replica could be upgraded, and the solution is to upgrade this Replica.)
         at com.sleepycat.persist.impl.PersistCatalog.init(PersistCatalog.java:440)
         at com.sleepycat.persist.impl.PersistCatalog.<init>(PersistCatalog.java:221)
         at com.sleepycat.persist.impl.Store.<init>(Store.java:186)
    This is not a replicated environment. I had a read through the documentation and don't see anything that prevents us from working like this. Can anyone explain what is going on please?
    Incidentally, in case it matters, this is how the mutations are handled during entity store initialisation:
    storeConfig.setMutations(mutations);
    storeConfig.setAllowCreate(true);
    storeConfig.setTransactional(true);
    EntityModel model = new AnnotationModel();
    model.registerClass(XXXXXXX.class);
    storeConfig.setModel(model);
    entityStore = new EntityStore(......
    Kind regards
    James

    Hi James,
    Mutations must be configured to transform all old versions to the current version. So you also need:
    new Deleter(XXXXXXX.class.getName(), 0, "yyyyy")
    new Deleter(XXXXXXX.class.getName(), 1, "yyyyy")
    I figured this out from the version numbers in the error messages. Note that there are two error messages listed in the exception. The doc explains this in a little more detail, although in very abstract way:
    http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/persist/evolve/package-summary.html
    Mutations are therefore responsible for converting each existing incompatible class version to the current version as defined by a current class definition. For example, consider that class-version A-1 is initially changed to A-2 and a mutation is added for converting A-1 to A-2. If later changes in version A-3 occur before converting all A-1 instances to version A-2, the converter for A-1 will have to be changed. Instead of converting from A-1 to A-2 it will need to convert from A-1 to A-3. In addition, a mutation converting A-2 to A-3 will be needed.When you say this:
    This worked fine for multiple deployments in local development environments, but when we tried to deploy to a test environment, we got this error message when trying to initialise the database:I worry that you're evolving your environment separately on different machines. This won't work. I'm not sure exactly what happened, but if you add mutations and create multiple new versions in a development environment, that sequence of steps won't work for the deployed environment that hasn't gone through the same sequence of steps. Perhaps something like this is what happened.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • The old version of Sync will continue to work, but then it says "for a limited time"??

    I have read all the info on the new sync, but it is not clear to me when it says:
    "While the old version of Sync will continue to work, the latest version of Firefox doesn't support adding new devices to the old version of Sync. This means that you won't be able to sync with a new device.
    to allow for migration to Firefox Accounts."
    the old version of Sync will continue to work,
    but
    Mozilla will continue to host the old version of Sync for a limited time...?
    This is confusing.
    Does i mean that
    the old version of Sync will continue to work for a limited time only?
    or rather,
    that it will work indefinitely, but only for your devices already paired/synced?

    The new version of Sync will work in a limited capacity for a short time. You can use it as is, but you can't add new devices. You should upgrade to the new sync ASAP (it's more reliable and robust).
    [[How to update to the new Firefox Sync]]

  • How to make lightroom 5 default instead of old version 3

    How do you make LIGHTROOM 5 default instead of old version 3?

    denone42 wrote:
    If I have a photo on my desktop and I click on it -I get option to
    open in Lightroom.
    I've heard of this, but never experienced it. For the post part, Lr opens catalogs not photos - dunno if being registered to open photos was a little mistake or on purpose..
    One thing I do know, there was a time when opening a photo with Lightroom would sometimes result in the inability to open Lightroom ever again (without some "hacking"), because it tried to open the photo as a catalog, which made it very confused and unhappy.
    My guess is: Adobe no longer supports opening photos with Lightroom (and so Lightroom 5 did not register itself to do that when installed, and so you have an old and now obsolete association), even if at one point it did - but I could be wrong.
    Sorry I can't be more help - maybe somebody else will be able to offer more insight and/or a solution.
    UPDATE: One thing that might help (if you can't get Lr to open photos how you want) - open catalog instead, then drag those photos into Lr library grid.
    Good luck,
    Rob

  • HT4970 does any one else miss the month at a glance that the old version of reminders had? I wish Apple would bring that feature back.

    Does anyone else miss the month-at-a-glance feature from the old version of Reminders app? I wish Apple would bring that feature back. It made it very convenient to schedule for the future.

    You  can send feedback and let Apple know
    http://www.apple.com/feedback/

  • How do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

  • Updated .oam file appears as old version when placed in Muse

    I changed the background color of my Animate composition from black to white. I republished it and deleted the old version, but when I place the .oam file in my Muse site, it's the old version with a black background.
    I tried renaming the Animate project and saving both it and the Publish folder in a new place. Same result. I tried saving the Muse site with a new name and in a new place in case it was a cache problem. Same result.
    This is with the newest 2014 versions of both applications.

    Hi,
    I had the same problem. I reported it to Adobe but the problem (among many others) has still to be resolved. I wonder when the next release will be 'cos this one has been a disaster
    David

  • Hi! I'm just having a little trouble when it comes to battery charging of my iPhone 5 with its new iOS 7! It doesn't indicates that the battery is fully charge unlike the old version of iOS! They said it should be pulsating but it's not

    Hi! I'm just having a little trouble when it comes to battery charging of my iPhone 5 with its new iOS 7! It doesn't indicates that the battery is fully charge unlike the old version of iOS! I already read some reviews and discussion about this. They said that the lightning bolt should pulsate when charging but it's not!

    Thanks for the replies. It took a while not hearing anything so thought I was alone. I have done many of the suggestions already. The key here is that it occurs on both phones with apps, and phones still packaged in a box.
    A Genius Bar supervisor also checked his Verizon data usage log and found the same 6 hour incremental use. Suprisingly, he did not express much intrigue over that. Maybe he did, but did not show it.
    I think the 6 hour incremental usage is the main issue here. I spoke with Verizon (again) and they confirmed that all they do is log exactly when the phone connected to the tower and used data. The time it records is when the usage started. I also found out that the time recorded is GMT.
    What is using data, unsolicited, every 6 hours?
    Why does it change?
    Why does it only happen on the iPhone 5 series and not the 4?
    Since no one from Apple seems to be chiming in on this, and I have not received the promised calls from Apple tech support that the Genius Bar staff said I was suppose to receive, it is starting to feel like something is being swept under the rug.
    I woke up the other day with another thought ... What application would use such large amounts of data? Well ... music, video, sound and pictures of course. Well ... what would someone set automatically that is of any use to them? hmmm ... video, pictures, sound. Is the iPhone 5 succeptible to snooping? Can an app be buried in the IOS that automatically turns on video and sound recording, and send it somewhere ... every 6 hours? Chilling. I noted that the smallest data usage is during the night when nothing is going on, then it peaks during the day. The Genius Bar tech and I looked at each other when I drew this sine wave graph on the log print outs during an appointment ...

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • I like Firefox browser when I use my Yahoo mail reverts to "oreiginal/old " version from latest version and this does not bhappen with Exploer or Chrome

    Using Firefox browser I can convert to the newest version of Yahoo mail and for this conversion it works satisfactorily. If I close Yahoo mail , either going to another site or closing the Browser, next time I open Yahoo mail it has reverted to old version (occasionally this does not happen but 80% of time it reverts). This does not happen with Explorer or Chrome. I have ensured updated Firefox. Tried Yahoo Ask for answer but no luck.I like Firefox Browser.

    hi ghrobert39, it is an issue with the new yahoo layout,see :
    http://answers.yahoo.com/question/index;_ylt=Ah_K4HUp4sat2HACnDjjfLniDn1G;_ylv=3?qid=20121213000810AAUYfSE
    http://answers.yahoo.com/question/index;_ylt=AkaQjlpKRxhYzrk5rgeMkvviDn1G;_ylv=3?qid=20121212164112AASaQcC
    [http://help.yahoo.com/kb/index?locale=en_US&y=PROD_ACCT&page=content&id=SLN8821 Overview of the new Yahoo! Mail design]
    i hope this is the answer : http://answers.yahoo.com/question/index;_ylt=AjpJXHmHQWc_qTtD86_2imfiDn1G;_ylv=3?qid=20121213051550AAsOJ6g
    thank you

  • Can anyone tell me why I can't update my itunes on my p.c?  I get a message saying: the feature you are trying to use is on a net work resource that is unavailable.   Tried uploading from websit, get msg can't delete old version.

    I need some serious help!
    I have been trying to update my itunes to version 10.7 and my Quicktime to version 7.7.3!
    Having no luck!
    So I tried selecting repair software on all of the Apple applications and they seem to have worked.
    Then I selected look for upgrades on my itunes (Help) main screen
    It said their were two updates -   Itunes  10.7   and  Quicktime 7.7.3
    I selected the option to update and the .exe files were loaded to my  Windows 7 p.c.
    However after part of the Itune update completed a message came up on the screen
    saying   "The feature you are trying to use is on a net work resource that is unavailable.
    O.k.
    I then went to the itunes website and tried again.  This time it checked my system the process seemed to be working and all of a sudden I got a message saying my old itunes programs could not be removed and or deleted.  So I tried to delete my old version myself without success it won't let me.
    I've run out of options and am not completely fustrated.
    I have itunes on my desktop, my iphone4, my ipod and in my car. 
    Anyone have any clue how I can resolve this problem?
    Chris Lane
    <Email Edited by Host>

    However after part of the Itune update completed a message came up on the screen
    saying   "The feature you are trying to use is on a net work resource that is unavailable.
    Which particular .msi file does the message go on to say cannot be found? (Several different .msi files might be mentioned in this context: itunes.msi, bonjour.msi, AppleSoftwareUpdate.msi, etc.)

  • I did an upgrade from 4.0 to the new 6.0 about 5 months ago. After the upgrade installed it said reboot system to apply upgrade. Now it wont open and keeps telling me that the older version needs to shut down the computer and upgrade the old version.

    Look at original question. When I did the download to the new 6.0 it said everything was fine. Then when I tried to use the firefox again it said an older version needed to shut down my computer so that it could upgrade the old version. It wont let me do anything and all it says is shut down computer so old version can upgrade. It wont let me open the program or remove it or anything. PLease help me with this. I really like Firefox but this has been going on for 5 months now and I still dont get answers from you. How do I fix this???

    Look at original question. When I did the download to the new 6.0 it said everything was fine. Then when I tried to use the firefox again it said an older version needed to shut down my computer so that it could upgrade the old version. It wont let me do anything and all it says is shut down computer so old version can upgrade. It wont let me open the program or remove it or anything. PLease help me with this. I really like Firefox but this has been going on for 5 months now and I still dont get answers from you. How do I fix this???

  • I need to uninstall my old version on itunes and install a new version, i cant uninstall from Programs and Features, a message keeps coming up saying 'The feature you are trying to use is on a network resource that is unavailable.' Can anyone help please

    I have tried to just install the new version of itunes from the apple website, it looks like it downloads but after 5 minutes at the end of the install it says 'old version of itunes cannot be uninstalled, please contact support.'?  
    Is there anyway I can remove the version of itunes from my computer? i dont mind if i lose the music/content I already have on my itunes. I need to do this as i have just received the iphone 4 and need to install the newest version of itunes.
    Many thanks

    I need to uninstall my old version on itunes and install a new version, i cant uninstall from Programs and Features, a message keeps coming up saying 'The feature you are trying to use is on a network resource that is unavailable.'
    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp, restart the PC and try installing iTunes again. Does the install go through properly now?
    (If you do find a clean download site for the correct version of CleanUp, please don't tell me where it is. Without wishing to sound paranoid (although I grant it does sound paranoid), there is a non-zero chance that posting links to download locations for the utility here at Discussions leads to that download location being shut down.)

  • I am getting a default message when trying to open up itunes after downloading old version. why?

    I have downloaded an old version of itunes (9.2.1) because i cannot stand the new version 11. At the end of downloading it, i tried to open it up and a yellow triangle fault popped up and told me it could not be opened because a new version created it. I have tried to download 3 old versions this afternoon. I have an old version on my computer still and I love it. I am trying to put an old, very user friendly version on my girlfriend's computer, but am having severe issues in doing so. Please advise!

    See this post. To roll back to iTunes 9.2.1 you'll need a version of your database that was active back then. Alternatively you could delete the library file and let iTunes build a new one.
    tt2

Maybe you are looking for

  • Batch combine multiple image sequences

    My problem in a way is pretty simple. After assembling the render output of my 3d app in photoshop (32bit) and changing the appearance via several CC layers in different layer modes (e.g. Hue/saturation in Overlay mode) I ended up with my composing f

  • I am trying to get the artwork for an album. "Artwork Not Modifiable" appears in the artwork box and it doesn't let me drag artwork.  What can I do to fix this?

    I am trying to get the artwork for an album. "Artwork Not Modifiable" appears in the artwork box and it doesn't let me drag artwork.  What can I do to fix this?

  • Variables must be initialized error

    Getting this error when inserting the following code: Local variables must be initialized. The variable temp near line 3, column 5 lacks an initializer. The CFML compiler was processing: a script statement beginning with "var" on line 3, column 1. a

  • Java.text.resources.LocaleElements error

    Hi Accessing an application through an IE browser runs fine with plugin J2SE 1.3.1 BUT with J2SE 1.4.1 this error is returned. java.util.MissingResourceException: Can't find bundle for base name java.text.resources.LocaleElements, locale en_US at jav

  • Return STO process

    Dear gurus,     What is the correct process steps to be followed in sto returns with delivery .Material is sent from plant to depot and taken into stock at depot ...after one month the return happens (Non excisable depot to excisable plant) Excise du