Can anyone help me with a photoshop error

I try to open a picture in photoshop to edit it. I am really new to photoshop. I have previously used photoshop elements 6 and 7 and I am trying to take a class in photoshop and I am on the first lesson.  I did okay the first night.  Then I looked at the Adobe website and there was a patch for photoshop. I downloaded the patch. Now when I try to open a picture to edit it I get a photoshop.exe.-application error message.  The instruction at "0x0bb82c5b" referenced memory at "0x00000028". The memory could not be read.  Click on Ok to terminate the program.  Click on cancel to debug the program.  No matter what I click on I get kicked out of photoshop.  I am currently on hold for technical support but it sounds like I have to pay for it.  I have edited exactly 2 pictures in a program that I payed 600.00 plus dollars for.  This doesn't really right.  Help please.

You should really post this in the Photoshop Windows forum. This is the scripting forum.
-X

Similar Messages

  • Can anyone help me with this 1120 error? So frustrated...

    I have those two objects homeS and galleryS and two corresponding functions to change the size of their layer masks. The structure of the two are
    exactly the same except for their names and positions. However, only one of them functions.
    The instance's name is the same in the code and there is only one key frame in the layer where movieClip "galleryMsk" is.
    But Flash always through this 1120 error saying "undefined property galleryMsk"...
    I don't know why it happens since part I is functioning perfectly.
    The only thing is that object "homeMsk" and object"galleryMsk" are in the same layer mask, does that cause the trouble?
    I am so frustrated and I cannot focus on anything else in the whole day...couldn't even sit down and watch tv happily...
    Here are the two parts of the code. Part I is working Part II is not...
    homeS.addEventListener(MouseEvent.MOUSE_OVER,f_homeDisplay);
    function f_homeDisplay(event:MouseEvent):void
              homeBtn.gotoAndPlay("home_pass");
              changeContent(homeMsk,-62.8,0);
              changeContent(homeS, -62.8,0);
              homeS.removeEventListener(MouseEvent.MOUSE_OVER,f_homeDisplay);
         }  //Part I
    galleryS.addEventListener(MouseEvent.MOUSE_OVER,f_galleryDisplay);
    function f_galleryDisplay(event:MouseEvent):void
              galleryBtn.gotoAndPlay("gallery_pass");
              changeContent(galleryMsk,-56.55,160);
              changeContent(galleryS, -56.55,160);
              galleryS.removeEventListener(MouseEvent.MOUSE_OVER,f_galleryDisplay);
         } //Part II

    never mind the paragraph at the bottom of this reply, I just got it. I found the instance galleryMsk,
    I can't upload the image now because of some strange reason,
    but it is basically a symbol with a red dot under and it says "mask3, <galleryMsk>", like this:
    Scene1
    - Symbol Definition(s)
          - buttons
              - mask3, <galleryMsk>
    It only showed the objects which are in my major scene, but all those layers are actually inside a movie clip called "buttons", I see "buttons" in the movie explorer, but I don't know how to search for the content inside...

  • Can anyone help me with this StackOverFlow error? Running mergesort

    * Write a description of class Sorter here.
    * @author (your name)
    * @version (a version number or a date)
    public class Sorter
         public static long comparisons = 0;
        public static long exchanges   = 0;
        static int M = 10;
        static double aux[];
        static boolean less(double v, double w) {
           comparisons++;
           return (v < w);
        static void exch(double[] a, int i, int j) {
            exchanges++;
            double t=a; a[i]=a[j]; a[j] =t;
    private static void compExch(double[] a, int i, int j)
    {if (less(a[j], a[i])) exch(a,i,j);}
    static int partition(double a[], int l, int r){
    int i = l-1, j=r; double v = a[r];
    for(;;){
    while (less(a[++i],v));
    while (less(v,a[--j])) if (j==l) break;
    if (i >= j) break;
    exch(a,i,j);}
    exch(a,i,r);
    return i;
    static void insertion(double[] a, int l, int r)
    {int i;
            for(i=r; i>l; i--) compExch(a, i-1, i);
            {int j = i; double v = a[i];
    while(less(v, a[j-1]))
    {a[j] = a[j-1]; j--;}
    a[j] = v;
    static void quicksort(double[] a, int l, int r){
    if (r <= l) return;
    int i = partition(a,l,r);
    quicksort(a,l,i-1);
    quicksort(a,i+1,r);
    static void Iquicksort(double[]a, int l, int r){
    if(r-l <= M) return;
    exch(a, (l+r)/2, r-1);
    compExch(a,l,r-1);
    compExch(a,l,r);
    compExch(a,r-1,r);
    int i = partition(a,l+1,r-1);
    Iquicksort(a,l,i-1);
    Iquicksort(a,i+1,r);
    static void hybridsort(double a[], int l, int r){
    Iquicksort(a,l,r); insertion(a,l,r);}
    static void mergeAB(double[] c, int cl, double[] a, int al, int ar, double[] b ,int bl, int br){
    int i = al, j=bl;
    for (int k = cl; k < cl+ar-al+br-bl+1; k++){
    if (i>ar) {c[k] = b[j++]; continue;}
    if (j>br) {c[k] = a[i++]; continue;}
    c[k] = less(a[i], b[j]) ? a[i++] : b[j++];
    static void mergesort(double[] a, int l, int r){
    if (r<= 1) return;
    int m=(r+1)/2;
    mergesort(a,l,m);
    mergesort(a,m+1,r);
    merge(a,l,m,r);
    static int min(int A, int B){return (A<B) ? A : B;}
    static void mergesort2(double[] a, int l, int r){
    if (r<=1) return;
    aux = new double[a.length];
    for (int m=1; m <= r-l; m=m+m)
    for(int i = l; i <= r-m; i += m+m)
    merge(a,i,i+m-1, min(i+m+m-1, r));
    static void merge(double[]a, int l, int m, int r){
    int i,j;
    for (i=m+1; i>l; i--) aux[i-1] = a[i-1];
    for (j=m; j<r; j++) aux[r+m-j] = a[j+1];
    for (int k = 1; k <= r; k++)
    if (less(aux[j], aux[i]))
    a[k]=aux[j--]; else a[k]=aux[i++];
    * Write a description of class SortClient here.
    * 10-15-06
    public class SorterClient
         public static void main(String[] args) {
    int N = 1000;
    int times = 1;
    System.out.println("ALGORITHM comp=COMPARISONS exch=EXCHANGES");
    System.out.println("---------------------------------------------------------------------------------------------");
    System.out.println();
    System.out.println("Selection: ");
    while(times<4){
    if(times==2){N=3000;}
    if(times==3){N=10000;}
    // generate N random real numbers between 0 and 1
    long start = System.currentTimeMillis();
    double[] a = new double[N];
    for (int i = 0; i < N; i++)
    {a[i] = Math.random();}
    long stop = System.currentTimeMillis();
    double elapsed = (stop - start) / 1000.0;
    // sort them
    Sorter test = new Sorter();
    start = System.currentTimeMillis();
    test.mergesort(a, 0, a.length - 1);
    stop = System.currentTimeMillis();
    elapsed = (stop - start) / 1000.0;
    System.out.print(elapsed + "secs ");
    System.out.print("N=" + N + "= ");
    System.out.print(" " + Sorter.comparisons + "comp");
    System.out.println(" " + Sorter.exchanges + "exch");
    times++;

    I get it in the mergesort method while program is running line,
    mergesort(a,l,m);
    quicksort runs fine.

  • Can anyone help? I downloaded photoshop elements trial and got a error message to download support advisor

    Can anyone help? I downloaded photoshop elements trial and got a error message to download support advisor

    The Adobe Support Advisor has been discontinued
    The Adobe Support Advisor tool was used to analyze
    installer log and  system information associated with installation
    errors. The tool has been  replaced with improved installation support
    mechanisms. Please visit Adobe Support  section for Knowledge base
    articles around Installation.
    Source: Adobe - Adobe Support Advisor
    If you tell us which version of PSE you have downloaded and what is your operating system then somebody here might be able to help you.
    Good luck.

  • Can anyone help me with Magicjack? after I purchased US number I am unable to log in on my Iphone, I keep getting an error "YOUR DEVICE IS NOT ON THIS ACCOUNT" I contacted MJ support but they are very much useless and dont know how to fix it!

    can anyone help me with Magicjack? after I purchased US number I am unable to log in on my Iphone, I keep getting an error "YOUR DEVICE IS NOT ON THIS ACCOUNT" I contacted MJ support but they are very much useless and dont know how to fix it!

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • HT201210 (The iPhone "Named" cannot be restored at this time because the iPhone software update server could not be contacted or is temporarily unavailable.) can anyone help me with this issue, every time i try to restore it will come up like this error m

    (The iPhone "Named" cannot be restored at this time because the iPhone software update server could not be contacted or is temporarily unavailable.)
    can anyone help me with this issue, every time i try to restore it will come up like this error message.

    Restore the iPhone when connected to iTunes by cable.
    Still the same TS1275?
    Is your iPhone jailbroken?
    Or
    Has your computer ever been used to jailbrake or downgrade (Tinyumbrella) any iPhone?

  • TS3694 error 21 can anyone help me with this?

    Can anyone help me with an error message i get with my iphone, it say error 21 after trying to restore the phone though itunes.

    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • I just received photoshop elements 10 that I bought used thru Ebay, for my OSX Mac 10.5.8. I put the discs in my computer and nothing happens to help me download it. Can anyone help me with this instillation challenge?

    I just received photoshop elements 10 that I bought used thru Ebay, for my OSX Mac 10.5.8. I put the discs in my computer and nothing happens to help me download it. Can anyone help me with this instillation challenge?

    Does your mac have an intel processor or PowerPC processor?
    System requirements | Adobe Photoshop Elements
    Did you insert the disk that is labeled mac os?
    After you insert the disk, it should show on your desktop.
    If you double click on the the disk icon on the desktop, does anything happen?
    more info about the included disks:
    FAQ: Installing Elements 10, or What do all these disks do?

  • Can anyone help me with an iWeb problem? I cannot save the site after making changes. I receive this error: "website.sites2 could not be saved"

    Can anyone help me with an iWeb problem? I cannot save the site after making changes. I receive this error: "website.sites2 could not be saved"

    You could try duplicating the Domain.sites2 file and launch this in iWeb. Delete the last page you edited and try saving. If that doesn't work, undo and try deleting another and so on...
    If you can find the problem page you would only have to rebuild it rather than the whole site.
    The other possibility is to create a new site on the same domain file and drag each page in turn down to it from the top site and try to save each time.

  • Can anyone help me with this message?  We could not complete your itunes store request an unknown error occurred (-1202)

    Can anyone Help me with this message?  We could not complete your itunes store request an uknown error occurred (-1201)?

    You have to unplug your ipod and reload the page.

  • Install Lightroom on a new computer - error message 2203.database Cannot open database file system error 2147287037. Can anyone help me with this?

    I am trying to install lightroom on a new computer and am getting error message 2203.database Cannot open database file system error 2147287037. Can anyone help me with this?

    This site has some info
    Error 2203 | Install | Creative Suite 4, 5, or 5.5 products or updates

  • Can someone help me with this 201435 Error during Signal Express signal generating?

    I built this signal generation tast to generate a voltage waveform. The wave form is loaded from a lvm file. (as shown in attachment pic). The waveform can be correctly viewed in preview window, so i suppose nothing wrong with the file. but when i clkick the run button, error 201435 pops up, tell me "no samples provided to DAQmx Write to initialize buffered generation".
    i dont know what step do i missed in this task. can anyone help me with this problem?

    the attachment picture
    Attachments:
    task.PNG ‏9 KB

  • Can anyone help me with obtaining a product key for windows 8???? uummmmmm...I lost mine or something,,,,,,,,,,,,,,,

    downloaded windows 8 pro pack ISO supposedly with working product key .....surprisingly it doesn't work... can anyone help me with related issues or advice????

    Cool Guy Chris,
    According to the
    Windows 8.1 Activation Errors webpage, if your current activation key doesn’t work, you’ll need to purchase a new one.
    In order to get a new activation key, you’ll need to contact a
    Microsoft Customer Support Representative.
    I hope this helps!
    Mike
    Windows Outreach Team – IT Pro

  • Can anyone help me with downloading Creative MediaSource in Windows Vis

    I've tried over and over to download Creative MediaSource through the Windows Vista application section for the Zen Touch. It continuosly gives me this error during file extracting. Can anyone help me with this?!

    Hi 
       I have checked to see if there are any Windows 8-8.1 drivers available for your model machine from HP and sadly none are listed , Also even if it had been possible to get driver support for the upgrade you would have still had to pay Microsoft for the upgrade via Retail disk package or an online ISO download .
                         Kind Regards 
                            Checkurtech
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

  • Can anyone help me with sufficient privileges issue

    Can anyone help me with sufficient privileges issue

    Helping with permissions often requires we know the specific error you find: what program, for example, and what you were doing when told you didn't have privileges.
    If you are running a standard account, you have to get back to the admin acct to make changes. If you are not eh administrator for that computer, find out who is.
    If you are in an admin account, trying a "Repair Permissions" can sometime resolve the issues. Find Disk Utility in Applications > Utilities. Select the indented name of your hard drive, then click the "Repair Permissions" button:
    In OS10.4 this usually under a 2-minute operation. You will probably see a lot of entries in the Reulsts pane but you can ignore those.

Maybe you are looking for

  • EC Sales List (Belgium)

    Any news about the implementation of the new harmonised xsd-schemes as from 7 february 2012 within SAP R/3?

  • TextFrame.fit() in CS6

    So, I had a minute and wanted to test the new auto-fitting text frames against the usual textFrame.fit(FitOptions.FRAME_TO_CONTENT) from a performance standpoint. The auto-fitting seemed to work fine in very limited testing. When I went to compare th

  • Editing a scanned pdf

    Hello, I have a pdf scanned from a xerox workcentre 7535. I just want to rotate it and save it in the new rotated view. I rotated it and did save as to new file name. When I open it, it is not rotated as I had saved it! Adobe Acrobat XI standard ver

  • Menu Fade in Buttons

    I need to have the buttons (created in DVDSP4) to fade in 4 seconds after the animated menu plays in (fades in from black, and I don't want to see the buttons before the animation is fully in). I realize there are ways to do this in Motion, but my co

  • Approval Preview for EBP Workflow

    Hi, As per my understanding approval preview is not possible for complex operations like "loops" for EBP/SRM worklfow. Pls. let me know opinion on this. (If anybody has worked on including loop operations in SRM approval workflow pls. let me know the