Need help with reinstall of photoshop elements 10 premier. can some please help me

just installed photoshop elements premier 10 to my computer after hard drive replaced. i cannot get it to set up for me, nor place an icon on the desktop. please help, i have no computer knowledge left in my itty bitty brain. HELP

did it install ok?
what os?

Similar Messages

  • I need some help with my java game using applets, CAN SOMEBODY PLEASE HELP

    Hi,
    I am in the process of creating a RPG program using Java. I am not very experienced with java, however the problem i am currently facing is something i can't seem to figure out. I would like to draw a simple grid where a character (indicated by a filled circle) moves around this grid collecting items (indicated by a red rectangle). When the character moves on top of the grid with the item, i would like it to disappear. Right now i am not worrying about the fact that the item will reappear after the character moves away again, because sometimes, when the character moves over the item, nothing happens/another item disappears. i have been at this for 4 days and still cannot figure out what is goign on. can somebody please help me? it would be most appreciated.
    Thanks
    PS if i needed to send you my code, how do i do it?

    Thank you for replying.
    The thing is, I am taking java as a course, and it is necessary for me to start off this way (this is for my summative evaluation). i agree with you on the fact, however, that i should go in small steps. i have been doing that until this point, and my frustration caused me to jump around randomly for an answer. I also think that it may just be a bug, but i have no clue as to how to fix it, as i need to show my teacher at least a part of what i was doing by sometime next week. Here is my code for anybody willing to go through it:
    // The "Keys3" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.Event;
    import java.awt.Font;
    import java.awt.Color;
    import java.applet.AudioClip;
    public class Keys3 extends java.applet.Applet
        char currkey;
        int currx, curry, yint, xint;
        int itmval [] = new int [5],
            locval [] = new int [5],
            tempx [] = new int [5], tempy [] = new int [5],
            tot = 0, score = 0;
        boolean check = true;
        AudioClip bgSound, bgSound2;
        AudioClip hit;
        private Image offscreenImage;
        private Graphics offscreen;     //initializing variables for double buffering
        public void init ()  //DONE
            bgSound = getAudioClip (getCodeBase (), "sound2_works.au");
            hit = getAudioClip (getCodeBase (), "ah_works.au");
            if (bgSound != null)
                bgSound.loop ();
            currx = 162;
            curry = 68;
            setBackground (Color.white);
            for (int count = 0 ; count < 5 ; count++)
                itmval [count] = (int) (Math.random () * 5) + 1;
                locval [count] = (int) (Math.random () * 25) + 1;
            requestFocus ();
        public void paint (Graphics g)  //DONE
            resize (350, 270);
            drawgrid (g);
            if (check = true)
                pickitems (g);
                drawitems (g);
            g.setColor (Color.darkGray);
            g.fillOval (currx, curry, 25, 25);
            if (currkey != 0)
                g.setColor (Color.darkGray);
                g.fillOval (currx, curry, 25, 25);
            if (collcheck () != true)
                collision (g);
            else
                drawitems (g);
        } // paint method
        public void update (Graphics g)  //uses the double buffering method to overwrite the original
                                         //screen with another copy to reduce flickering
            if (offscreenImage == null)
                offscreenImage = createImage (this.getSize ().width, this.getSize ().height);
                offscreen = offscreenImage.getGraphics ();
            } //what to do if there is no offscreenImage copy of the original screen
            //draws the backgroudn colour of the offscreen
            offscreen.setColor (getBackground ());
            offscreen.fillRect (0, 0, this.getSize ().width, this.getSize ().height);
            //draws the foreground colour of the offscreen
            offscreen.setColor (getForeground ());
            paint (offscreen);
            //draws the offscreen image onto the main screen
            g.drawImage (offscreenImage, 0, 0, this);
        public boolean keyDown (Event evt, int key)  //DONE
            switch (key)
                case Event.DOWN:
                    curry += 46;
                    if (curry >= 252)
                        curry -= 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.UP:
                    curry -= 46;
                    if (curry <= 0)
                        curry += 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.LEFT:
                    currx -= 66;
                    if (currx <= 0)
                        currx += 66;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.RIGHT:
                    currx += 66;
                    if (currx >= 360)
                        currx -= 66;
                        if (hit != null)
                            hit.play ();
                    break;
                default:
                    currkey = (char) key;
            repaint ();
            return true;
        public boolean collcheck ()  //DONE
            if (((currx == tempx [0]) && (curry == tempy [0])) || ((currx == tempx [1]) && (curry == tempy [1])) || ((currx == tempx [2]) && (curry == tempy [2])) || ((currx == tempx [3]) && (curry == tempy [3])) || ((currx == tempx [4]) && (curry == tempy [4])))
                return false;
            else
                return true;
        public void collision (Graphics g)
            drawgrid (g);
            for (int count = 0 ; count < 5 ; count++)
                if ((currx == tempx [count]) && (curry == tempy [count]))
                    g.setColor (Color.darkGray);
                    g.fillOval (currx, curry, 25, 25);
                else if ((currx != tempx [count]) && (curry != tempy [count]))
                    g.setColor (Color.red);
                    g.fillRect (tempx [count], tempy [count], 25, 25);
        public void drawitems (Graphics g)
            for (int count = 0 ; count < 5 ; count++)
                g.setColor (Color.red);
                g.fillRect (tempx [count], tempy [count], 25, 25);
        public void pickitems (Graphics g)
            check = false;
            for (int count = 0 ; count < 5 ; count++)
                if (locval [count] <= 5)
                    tempy [count] = 22;
                else if (locval [count] <= 10)
                    tempy [count] = 68;
                else if (locval [count] <= 15)
                    tempy [count] = 114;
                else if (locval [count] <= 20)
                    tempy [count] = 160;
                else if (locval [count] <= 25)
                    tempy [count] = 206; //this determines the y-position of the item to be placed
                if (locval [count] % 5 == 0)
                    tempx [count] = 294;
                else if ((locval [count] == 1) || (locval [count] == 6) || (locval [count] == 11) || (locval [count] == 16) || (locval [count] == 21))
                    tempx [count] = 30;
                else if ((locval [count] == 2) || (locval [count] == 7) || (locval [count] == 12) || (locval [count] == 17) || (locval [count] == 22))
                    tempx [count] = 96;
                else if ((locval [count] == 3) || (locval [count] == 8) || (locval [count] == 13) || (locval [count] == 18) || (locval [count] == 23))
                    tempx [count] = 162;
                else if ((locval [count] == 4) || (locval [count] == 9) || (locval [count] == 14) || (locval [count] == 19) || (locval [count] == 24))
                    tempx [count] = 228;
        public void drawgrid (Graphics g)  //DONE
            g.drawRect (10, 10, 330, 230); //draws the outer rectangular border
            int wi = 10; //width of one square on the board
            int hi = 10; //height of one square on the board
            for (int height = 1 ; height <= 5 ; height++)
                for (int row = 1 ; row <= 5 ; row++)
                    if (((height % 2 == 1) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))
                        g.setColor (Color.gray);
                        g.fillRect (wi, hi, 66, 46);
                    else /*if (((height % 2 == 0) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))*/
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46);
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46); //drawn twice to make a shadow effect
                    wi += 66;
                wi = 10;
                hi += 46;
            } //this draws the basic outline of the game screen
    } // Keys3 class

  • When I try to print, Photoshop Elements 10 crashes.  Please help!!!!

    When I try to print, Photoshop Elements 10 crashes.  Please help!!!

    did you download the installation files?
    if yes, what files (names/extensions) and what sizes?
    if no, copy your cd contents to a desktop folder and attempt to install from the desktop folder.

  • I need help with XML Gallery Fade in out transition. somebody please help me :(

    I need help with XML Gallery Fade in out transition. somebody please help me
    I have my post dont want to duplicate it

    The problem doesn't lie with your feed, although it does contain an error - you have given a non-existent sub-category. You need to stick to the categories and sub-categories listed here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    Subscribing to your feed from the iTunes Store page work as such, but the episodes throw up an error message. The problem lies with your episode media files: you are trying to stream them. Pasting the URL into a browser produces a download (where it should play the file) of a small file which does not play and in fact is a text file containing (in the case of ep.2) this:
    [Reference]
    Ref1=http://stream.riverratdoc.com/RiverratDoc/episode2.mp3?MSWMExt=.asf
    Ref2=http://70.33.177.247:80/RiverratDoc/episode2.mp3?MSWMExt=.asf
    You must provide a direct link to the actual mp3 file. Streaming won't work. The test is that if you paste the URL of the media file (as given in the feed) into the address bar of a browser it should play the file.

  • Hello can some please help I am trying to watch my HBO go on my apple tv I have sound not picture. I can watch my iTunes videos and youtube so I know it works. it is working

    Hello can some please help I am trying to watch my HBO go on my apple tv I have sound no picture. I can watch my iTunes videos and youtube on my airplay with my ipad and everything is updated so I know it works. But not on HBO go, Max go, showtime go.

    What you want to do does not work with an iPd running iOS 5. See the screenshot.
    The latest update for HBO GO does allow for AirPlay on Apple TV - sound and video - but only on devices running iOS 6 and Apple TV running 5.1.1 or later - according to the app description.

  • HT204380 My husband and I were trying to setup FaceTime and now his cellphone number is on my FaceTime setting instead of mine and I'm receiving his text messages. Can some please help .

    My husband and I were trying to setup FaceTime and now his cellphone number is on my FaceTime setting instead of mine and I'm receiving his text messages. Can some please help .

    On each device, go to Settings > Messages > Send & Receive.  Make sure that each device is using separate addresses and phone numbers.  If your email address is checked on both devices, Your husband will recieve everything he intends to send to you.
    Do the same for FaceTime.

  • I am having iPod touch 4g with ios 6.1.3 and can you please help me in BBM install when I click on install button it says that you need GPS please help me To install my BBM

    Apple inc. can you please help me to install BBM in iPod touch 4g

    BBM is only compatible with devices that have cellular/GPS radios. The iPod does not have these.
    The BBM app says:
    Compatibility: Requires iOS 6.0 or later. Compatible with iPhone, iPad 2 Wi-Fi + 3G, iPad Wi-Fi + Cellular (3rd generation), iPad Wi-Fi + Cellular (4th generation), iPad mini Wi-Fi + Cellular, iPad Air Wi-Fi + Cellular, and iPad mini with Retina display Wi-Fi + Cellular. This app is optimized for iPhone 5.
    https://itunes.apple.com/us/app/id690046600?mt=8

  • HT5538 I bought my iPad at the pawnshop and I need to sign out the old Apple ID can you please help me what else can I do

    I bought my I pad at the pawnshop and I need to sign out the previous Apple ID could you please help me with this

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must contact the previous owner to get permission to use the device. If you cannot contact the previous owner return the device to where you bought it and get a refund. You will never be able to activate the device and no one can help you do it.

  • Can some please help me with the Wireless LAN Connection Configuration?

    I want to configure WLC in my Testing Lab , need help with the step by step configuration of WLC.

    Please go through the below link for the Basic Wireless LAN Connection Configuration Example.
    The below link has  end – end configuration steps with the images.
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-lan-wlan/68005-wlan-connect.html
    Have i answered for your query.

  • Need help with downloading adobe photoshop elements 11 and premiere elements 11.

      i already have my product keys from the internet, but when i go to the download page and push on the download button, nothing happens. im running windows 8

    clear your adobe.com cookies, or try another browser, or:
    if you follow all 7 steps you can dl a trial here:  http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l
    and activate with your serial.
    if you have a problem dl'g, you didn't follow all 7 steps.  the most common error involves failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).

  • Need help with installation of Photoshop Elements 13, Error message 6?

    I tried installing on both a windows 7 and 8.1 computer. Both installs ended with error message 6, a failed install."this installer does not support installatiin on a 64 bit windows operating system. Please download the 64 bit version of Photoshop elements."
    What should I do?

    download the 64 bit version seems like a logical step.
    if you follow all 7 steps you can directly download a trial here:  Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • Need some help with instaling Adobe Photoshop Elements

    well i recently received the adobe photoshop and adobe premiere elements , when to download in on my mac i got as fast a sit appearing ton the desktop as a cd but when i click it and press install it just says ... and i quote .  "we've encountered the following issues . Installer failed to initialise . Please download adobe support advisor to detect the problem " any one can help ??? please ( the photos included is what is com in yup on the screen and on my desktop )

    Hi lucirose13,
    Please try to install PSE 13 from this link
    Download Photoshop Elements products | 12, 11, 10
    Download Premiere Elements products | 12, 11, 10
    Let us know if you get the same issue.
    Regards
    Sandeep

  • Help with saving images Photoshop Elements

    Hi, I am using Photoshop Elements 11 and Windows 8 or 8.1.  Sometimes when I save images in PS E11, they do not save so that I can see the image as usual.  Instead they save with either the Photoshop logo or the Windows Pictures logo.  When I try to open them in Windows Pictures, I get a message saying something like "cannot open, wrong format" and I cannot post them onto the web either.  What am I doing? Please help, thank you.

    Hi Eeevanwok,
    Please let me know if this is happening with particular file format?
    And what all steps did you try from your end?
    Sarika

  • How do I layer digital backgrounds with photoshop elements 2011? [was:Please Help]

    How do I layer digital backgrounds with photoshop elements 2011?

    What do you mean by "layer digital backgrounds"? Can you explain a little more about what you're trying to do?

  • Help with re-downloading photoshop elements

    I have already purchased photoshop elements and need to re-download.  Can someone please let me know how to do that.
    Thank you so much.

    Hi Scarlett,
    What version of Photoshop Elements are you trying to redownload?
    You can download the latest version Photoshop Elements 12 from : http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en
    and use the purchased serial number to activate the software.

Maybe you are looking for

  • Can't view filtered VO properly in a dynamic region

    Hi all, I am using Jdeveloper 11.1.1.0 I have a view object (myVO) that has some view criterias (FilteredVO1, FilteredVO2, ecc.) In myPage I have a dynamic region in which I can view different fragments. These fragments contain filtered data (Filtere

  • PDF always appears rotated 90* counterclockwise when I try to print in preview

    Whenever I save a PDF onto my computer and open it using system viewer, the slides are always rotated 90 degrees counterclockwise. I then proceed to view the thumbnail, select all slides, and reorient them correctly. However, when I go to print the s

  • Manually change sales order status

    Hi All friends I have one requirement where i need to manually change the sales order overall process status "completely process"  VBUK-GBTSK. Please suggest me how can i achieve this. Regards Shambhu

  • Mail notification for SDHF in ChaRM

    Hi! I am experiencing with an automatic mail notification. I already applied sap note 865619. Unfortunately the action nor is scheduled nor executed. My scenario: when the urgent correction is created the developer should be contacted by email. Can s

  • Getting erroe when Sending mail through Javamail

    I am a new Java Programmer I am getting the followoing error message javax.mail.sendFailedException: sending failed; javax.mail.MessagingException: Could not connect SMTP host: aol.com, port: 25; nested exception is: java.net.SocketException: connect