Help me with this error message please

Hello, this is the error message I am getting. I am using
Windows XP and Firefox.
I will post a link to the picture so you can take a look
yourself.....
ftp://mhhemtmarketing:[email protected]/Checkthepicture/adobe
shockwave error.bmp
CheckThePicture

Hello,
Look that link :
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19304&sliceId=1
Good luck

Similar Messages

  • Please help me with this error message on my lost Crashed Thread:  1  Dispatch queue: NSOperationQueue Serial Queue  Exception Type:  EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000

    I was organizing my contatcs when suddenly it disappeared and got this error message.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • Please help me with this error message

    when I try to restore/update my iPod I get this error message:
    "There was a problem downloading the iPod software for the iPod "_______". You do not have enough access priviledges for this operation.
    Make sure your network settings are correct and your netwrok conection is active, or try again later."

    when I try to restore/update my iPod I get this error message:
    "There was a problem downloading the iPod software for the iPod "_______". You do not have enough access priviledges for this operation.
    Make sure your network settings are correct and your netwrok conection is active, or try again later."

  • Can anyone help me with this error message? I have run a permissions repair but it didn't solve the problem.

    No permissions to write to /System/Library/Frameworks/JavaVM.framework/Versions/A/Commands/Home/lib/ext
    This is the error message I get when trying to update a 3D viewer plugin for the IMAGE J (FIJI) software. This is a brand new system running Mountain Lion 10.8.2. has anyone else gotten this error message, and could you give me any advice?
    Thanks
    Leah

    You need root privileges to modify that system folder. Actually, it shouldn't be modified at all, except by Apple. Whatever installer you're using is defective.

  • Can anybody help me with this error message I keep getting

    When I try to export my document as a pdf I keep getting this error message...  "The document “Client Invoice_TMC copy” could not be exported as...."

    What version of Numbers?What version of Mac OS X?
    Have you tried restarting Numbers?
    Have you tried restarting your computer?
    Can you export other documents to pdf?
    Have you tried printing the docmment to pdf using the built-in print dialog?  To do this select the menu item "File > Print", then click the print button, then select the "Open in Preview" select from the PDF button in the bottom left corner:

  • Can someone help me with this error message?

    I am very new to java and I am trying to write a memory game but, when I try to compile I get this message
    incompatible types
    java.awt.Image
    required int
    my code is below:
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.JOptionPane;
    public class mem1 extends JApplet
    int CardPlace[];
    int CardFace[];
    Image img1;
    Image img2;
    Image img3;
    Image CardBack;
    private int mX = 0;
    private int mY = 0;
    boolean turned;
    int flip = 0;
    int pos;
    int Position;
    public void init()
    int choice;
    int cd1=0;
    int cd2=0;
    int cd3=0;
    int counter=0;
    CardPlace=new int[6];
    CardFace=new int[6];
    cd1 = getImage(getDocumentBase(),"Heart.gif");
    cd2 = getImage(getDocumentBase(),"Happy.gif");
    cd3 = getImage(getDocumentBase(),"Phone.gif");
    CardBack = getImage(getDocumentBase(),"safari.gif");
    while (counter<6)
    choice = 1 + (int)(Math.random() * 3);
         switch(choice)
         case 1:
              if(cd1<2)
              { CardPlace[counter] = 1;
              counter++;
              cd1++;
              break;
              case 2:
              if(cd2<2)
              { CardPlace[counter] = 2;
              counter++;
              cd2++;
              break;
              case 3:
              if(cd3<2)
              { CardPlace[counter] = 3;
              counter++;
              cd3++;
              break;
    addMouseListener(new MouseHandler());
    public void paint(Graphics g)
    int xposition = 0;
    int yposition = 0;
    int i = 0;
    turned = false;
    if ((mX>=0 && mX < 150) && (mY >=0 && mY<150))
    Position = 0;
    else if((mX >150 && mX < 300) && (mY>=0 && mY < 150))
              Position = 1;
         else if((mX >=300 && mX < 450) && (mY>=0 && mY < 150))
              Position = 2;
         else if((mX >=0 && mX < 150) && (mY>=150 && mY < 300))
              Position = 3;
         else if((mX >150 && mX < 300) && (mY>=150 && mY < 300))
              Position = 4;
         else if((mX >300 && mX < 450) && (mY>=150 && mY < 300))
              Position = 5;
    CardFace[Position]=CardPlace[Position];
    if (flip == 0)
         flip = Position;
    else if(flip != Position)
         if(CardFace[flip] != CardFace[Position])
         CardFace[flip]=0;
         CardFace[Position]=0;
         flip = 0;
    while (i<6)
    if (xposition==450)
    yposition=150;
    xposition = 0;
    switch(CardFace){
    case 0:
    g.drawImage(CardBack, xposition, yposition, this);
    break;
    case 1:
    g.drawImage(img1,xposition,yposition,this);
    break;
    case 2:
    g.drawImage(img2,xposition,yposition, this);
    break;
    case 3:
    g.drawImage(img3,xposition,yposition,this);
    break;
    xposition = xposition + 150;
    i++;
    private class MouseHandler extends MouseAdapter
    public void mousePressed(MouseEvent evt)
    mX = evt.getX();
    mY = evt.getY();
    turned = true;
    repaint();

    Hi,
    Can u indicate the exact lines in which the
    error message is thrown.
    Raja

  • Can anyone help me with this error message?

    I managed to succesfully transfer files from my old iMac G3 to my new iMac G5 using a crossover ethernet cable. I connected from the G5 to the G3.
    BUT, when I start my G5 I now get the following message
    Connection failed. The server may not exist or is not operational at this time.
    It's not causing any problems just annoying. Is the G5 looking for itself perhaps? Can someone help me?

    Take a look at System Preferences, Accounts, Startup Items to see if the G3 got added to the list.

  • Please help me with this error: "Apple application support was not found... Error 2"

    Can anyone please help me with this error: "Apple application support was not found... Error 2"
    I've followed the instructions by removing all Apple files from my laptop, but when I reinstall the iTunes software it still comes up with this message:
    "Apple application support is required to run iTunesHelper. Please uninstall iTunes, then install iTunes again. Error 2"
    Thank you

    iTunes "Apple Application Support is required... Error 2" and possible fix.
    I know this is a bit late but I came accross this thread trying to resolve this same problem and came up with a solution that worked for me, so thought I would share it here too. I hope it helps someone else.
    I just resolved this on Win Vista (should apply equally for Win7 too). Please uninstall iTunes before proceeding though. I'll walk you through the process I followed, if you like you can jump straight to the Solution section.
    Problems:
    The initial error during the installation of iTunes was:
    An error occurred during the installation of assembly 'Microsoft.VC80.CRT,version="8.0.50727.4053",type="win32",publicKeyToken='1fc8b 3b9a1e18e3b",processorarchitecture="x86". Please refer to Help and Support for more information. HRESULT:0x8007054F
    The error (after installing iTunes) when trying to run iTunes was:
    Apple Application Support is required to run iTunes. Please uninstall iTunes, then install iTunes again. Error 2 (Windows error 2).
    After trying various fixes around the forums I came across this MSKB article, which relates to the first installation error:
    http://support.microsoft.com/kb/2688946
    This lead me to trying to install MS Visual C++ but I received the following error trying to install that:
    Error 1935.An error occurred during the installation of assembly ‘Microsoft.VC80.ATL,type=”win32”,version=”8.0.50727.762”,publicKeyToken=”1fc8b3 b9a1e18e3b”,processorArchitecture=”amd64”’. Please refer to Help and Support for more information. HRESULT: 0x80070BC9. Assembly interface: IassemblyCacheItem, function: Commit, component: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E}
    Note: The installation of VC++ rolls back when it fails.
    Solution:
    Through this error I found this MSKB article:
    http://support.microsoft.com/kb/946414
    The Automated MS "Fix It" msi package didn’t work.
    Note: Please backup your registry first (see the above MSKB article for instructions).
    I opened the registry and (as instructed in the MSKB article) deleted the following keys:
    HKEY_LOCAL_MACHINE\COMPONENTS\
    PendingXmlIdentifier
    NextQueueEntryIndex
    AdvancedInstallersNeedResolving
    Reboot and reinstall iTunes.
    If it helps you please like this so others can find it.

  • My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    I have worked my way through the assistant and nothing works. I have tried connecting in disc mode but although the screen on the ipod is showing that the device is charged and that it is in disc mode as soon as I connect it to the computer it comes up with the error message 'please wait very low battery' and stays like that until I disconnect when it appears to be OK again. I have tried on both pc and mac.
    BTW the ipod is an ipod video not classic if that makes any difference.
    Thanks

  • Please help me with this error I keep getting for attachments

    please help me with my error message as I can't download attachments

    Some information would be helpful...  operating system, email client, Reader version, error message, ...

  • Itunes could not connect to the iphone an unknown error occurred 0xE8000003 please help me with this error any one have idea ?

    itunes could not connect to the iphone an unknown error occurred 0xE8000003 please help me with this error any one have idea ?

    http://support.apple.com/kb/ts3221

  • I am having trouble logging in to my iTunes Account. When it ask mI am having trouble loe to verify my payment information. I check that everything is correct and it gives me this error message " Please contact iTune support to complete this transaction"?

    I am having trouble logging into my iTunes Account. When it ask me to verify my payment information. I verify that all the information is correct and press the done tab and get back this error message " Please contact iTunes support to complete this tranaction". What do I need to do to correct this problem because I can't buy anything with this problem? I have also made sure I have the latest version of iTunes.

    check all payment parts are filled in and u have endered you last 3 digs on back on card used to set up account
    if using an other computer make sure all fileds are right and filled in
    and u enter to itunes sec code

  • I am having trouble installing Lightroom 5 with this error message: Payload: AdobeLightroom5CCMPkg-m

    I am having trouble installing lightroom 5 with this error message:
    Payload: AdobeLightroom5CCMPkg-mul 5.2.0.0 {4b06fc24-6249-4c57-9830-6008a3ce9a80} -----------
    ERROR: DW006: Apple Package failed to install successfully.
    ERROR: Third party payload installer Adobe Photoshop Lightroom 5.pkg failed with exit code: 1
    what should I do? Billmeb

    Hi BillMeb,
    Please refer the knowledge base article: http://helpx.adobe.com/lightroom/kb/exit-code-7-displays-installing.html.
    Regards,
    Romit Sinha

  • I just bought v10.7lion but when I try to install it comes with this error message:"Install Failed"...try to install again. Now I've been restarting over and over again.  What should I do?

    I just bought v10.7lion but when I try to install it comes with this error message:"Install Failed"...try to install again. Now I've been restarting over and over again.  What should I do?

    JPPI-
    Did you try it with the iTunes your Mac already has?
    Try running Software Update in your System Preferences.  That should bring your computer up to the latest software available for 10.4.  You would end up with an older version of iTunes, but that may be good enough to activate your iPad.
    Fred

  • Why the modem deconncts frequently with this error message, "You were disconnected by the PPP server. Try reconnecting."? Please, help me out.

    Hello. I am using a ZTE 3G modem. Whenever I connect to internet, Sometimes during browsing or downloading it disconnects with the error message, "You were disconnected by the PPP server. Try reconnecting." There is no problem with the modem. Last few months, I have used it with Mac OS X Mavericks. There was no problem. Some days ago, I downgrade to Mac OS X 10.8.3, because I was fed up with different bugs in 10.9. Anyway, the first two days the connection were fine. But, after that, The problem began from no where. I tryed everything i could, but, It didn't help.
    Please, help me out. It's very disturbing frequanlty disconnection. I am mad at the PPP is like, if I found standing it in front of me, I would beat it with a bat, who gave this so called Mr. PPP permission to disconnect my connection as it's wish!

    Hi I'm having same issue since last week and now unable to reconnect. Not sure if it's an issue with the mobile company, modem or apple .
    Before was able to connect eventually now connects and drops connection after 3 seconds . Using macbookpro early 2014 mavericks all ipdate - modem 4G Huawei
    Haven't found any info to assist us
    Hope someone comes forward soon
    Thanks and good luck !

Maybe you are looking for

  • Object to upload the file in SAP

    Hi All I have a problem while uploading the .txt file, when i am trying to upload it just says upload failed, I added the objects S_GUI and S_DATASET objects,but still  no effect. Can any body provide any information or hint. I ran Su53 and this is s

  • Image  not refreshing in a WD table

    Hi, I am facing the following problem: I have a view that includes a table. One of the columns includes an image element which gets its source from a context element. when pressing a "go" button, the onAction of the button changes the value of the co

  • Data input via keyboard

    I'm considering an iPhone, I'm using a Palm now and like inputting with handwriting directly onto the screen. Does anyone have an opinion about how it is to input with the keyboard... Thanks! Lori

  • MacBook Pro Continously Freezes

    I just got a MacBook Pro less than a week ago. I have been using it and really enjoying it. However, I can't help but to wonder if there isn't something wrong. When I play a Java based MMORPG it tends to freeze up to the point where I have to do a ha

  • Upgrade to windows 2008

    Hi all, we currently have our SAP systems running on windows 2003 64bit MSCS and SQL 2005. We want to upgrade to Windows 2008. We fulfill the pre-requisites for upgrade. i know the simple way would be to install windows 2008 on a fresh system and the