Problem with uninstalling an extension

Is there any way to clean up or reset the folders in the
component panel?
I was experimenting with the "required-restart" attribute in
the MXI file and I think that may have caused the problem. A folder
exists in my components panel (containing 2 components). Nothing
appears on the stage or in the library when I drag one to the
stage.
I tried "reload" from the context menu, reinstalling and
uninstalling the MXP, and also creating a new MXP with the same
folder name and component names... No success.

Might be corrupted extensions preferences.  (.plist)
Open a Finder window. From the Finder menu bar click Go > Go to Folder
Type or copy paste the following:
~/Library/Safari/Extensions/Extensions.plist
Click Go then move the Extensions.plist file to the Trash.
Quit and relaunch Safari then try installing an extension.

Similar Messages

  • I have a problem with uninstalling iTunes

    I have a problem with uninstalling iTunes because how trying to delete displays the message: "The feature you are trying to use is located in the reach network resource ........... Use Zr:" Therefore I do not know what to do: <
    Help, please !!

    Hello, Gum231. 
    Thank you for visiting Apple Support Communities.
    Here are the steps that I would recommend processing when experiencing issues uninstalling iTunes.
    "The feature you are trying to use is on a network resource that is unavailable" alert appears when you remove Apple software in Windows
    http://support.apple.com/kb/TS3704
    Cheers,
    Jason H.

  • Problems with specifying File Extension of E-Mail attachment

    Hi everybody
    I have a problem that seems to be so simple that it almost drives me crazy that I cannot find a solution for it.
    I need to send the content of an internal table (some lines) as a mail attachment to a specified mail address.
    The format should be normal ASCII, so when I open it with any text editor (e.g. Notepad),  I want to have all my lines there (including CR/LF).
    The problem now is - The extension of this mail attachment must be ".key", so the attached file should have the name "L_12345.key" (for example).
    For E-Mailing I use FM "SO_NEW_DOCUMENT_ATT_SEND_API1".
    This part works fine, also the attachment part works in general.  (I receive the mail and I receive the attachment).
    BUT I get either an attachment with the name "L_12345.txt" or "L_12345.key.txt" and in correct format, or I get an attachment "L_12345.key", where the name is correct but format is wrong (no CR/LF - everything in one line).
    Example:
    =======
    Attachment-Content should be:
    Line 1
    Line 2
    Line 3
    Name of Attachment should be: L_12345.key
    What I tried:
    TEST 1 **
    Declare Attachment in Packing list. ..
      ls_packing_list-transf_bin   = ' '.
      ls_packing_list-head_start   = 1.
      ls_packing_list-head_num     = 0.
      ls_packing_list-body_start   = 7.  "Startline of Attachment
      ls_packing_list-body_num     = 3.  "No of Attachment lines
      ls_packing_list-doc_type     = 'RAW'. 
      ls_packing_list-doc_size     = 3 * 255.
      ls_packing_list-obj_name     = 'ATT01'.
      ls_packing_list-obj_descr    = 'L_12345'   "Attachment name
      APPEND ls_packing_list TO lt_packing_list.
    ==> Result: Attachment Filename = L_12345.txt
    ==> File as I need it (ASCII with CR/LF), but extension wrong
        Line 1
        Line 2
        Line 3
    TEST 2 **
    Same as TEST 1, but with:
      ls_packing_list-obj_descr    = 'L_12345.KEY'   "Attachment name
    ==> Result: Attachment Filename = L_12345.KEY.txt
    ==> File as I need it (ASCII with CR/LF), but extension wrong
        Line 1
        Line 2
        Line 3
    TEST 3 **
    Declare Attachment in Packing list. ..
      ls_packing_list-transf_bin   = ' '.
      ls_packing_list-head_start   = 1.
      ls_packing_list-head_num     = 0.
      ls_packing_list-body_start   = 7.  "Startline of Attachment
      ls_packing_list-body_num     = 3.  "No of Attachment lines
      ls_packing_list-doc_type     = 'KEY'.
      ls_packing_list-doc_size     = 3 * 255.
      ls_packing_list-obj_name     = 'ATT01'.
      ls_packing_list-obj_descr    = 'L_12345'. "Attachment name
      APPEND ls_packing_list TO lt_packing_list.
    ==> Result: Attachment Filename = L_12345.KEY
    ==> File Format is wrong:
        Line 1          Line 2     Line3
    I have tried several other Extensions (DOC_TYPE), it seems, that the File format is only correct with "RAW", but it seems with "RAW" SAP adds ".txt" as extension to the filename.
    Does anyone know how I can achieve having an e-mail attachment with multiple text lines and name "<anyname>.key"
    Any help (if possible with example code ?) would be highly appreciated.
    Many thanks
    Harald

    hi,
    check the following code.
    *&      Form  send_email
    FORM send_email.
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    CONSTANTS: con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    *Body of mail
      CLEAR objtxt.
      CLEAR objtxt[].
      objtxt = 'Dear abc'.
      APPEND objtxt.
      CLEAR objtxt.
      APPEND objtxt.
      objtxt = 'Attached herewith is the detail list of materials.'.
      APPEND objtxt.
      CLEAR objtxt.
      APPEND objtxt.
      objtxt = 'Regards,'.
      APPEND objtxt.
      objtxt = 'Admin'.
      APPEND objtxt.
      DESCRIBE TABLE objtxt LINES tab_lines.
      READ TABLE objtxt INDEX tab_lines.
    *Mail description
      CLEAR docdata.
      docdata-doc_size  = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
      docdata-obj_name  = 'List'.
      docdata-obj_descr = 'List of materials'.
      docdata-obj_langu = sy-langu.
    *Packing list for main document
      CLEAR objpack.
      CLEAR objpack[].
      objpack-head_start = 1.
      objpack-head_num   = 0.
      objpack-body_start = 1.
      objpack-body_num   = tab_lines.
      objpack-doc_type   = 'RAW'.
      APPEND objpack.
    *Attachment data
      CLEAR objbin.
      CLEAR objbin[].
      CONCATENATE
            'field1' 'field2' 'field3' 'field4'
        INTO objbin SEPARATED BY ','.
      CONCATENATE con_cret objbin INTO objbin.
      APPEND objbin.
      LOOP AT it_material_list INTO wa_material_list.
        MOVE-CORRESPONDING wa_material_list TO wa_char_material_list.
        CONCATENATE
              wa_char_material_list-field1
              wa_char_material_list-field2
              wa_char_material_list-field3
              wa_char_material_list-field4
          INTO objbin SEPARATED BY con_tab.
        CONCATENATE con_cret objbin INTO objbin.
        APPEND objbin.
        CLEAR objbin.
        CLEAR wa_char_employee_list.
      ENDLOOP.
      DESCRIBE TABLE objbin LINES tab_lines.
      READ TABLE objbin INDEX tab_lines.
    *Packing list for attachment document
      CLEAR objpack.
      objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
      objpack-transf_bin = 'X'.          "check these values
      objpack-head_start = 1.          "check these values
      objpack-head_num   = 1.          "check these values
      objpack-body_start = 1.          "check these values
      objpack-body_num   = tab_lines.
      objpack-doc_type   = 'KEY'.
      objpack-obj_name   = 'Attachment'.
      objpack-obj_descr  = 'Report.KEY'.
      APPEND objpack.
    *Email receiver's list
      CLEAR reclist.
      CLEAR reclist[].
      reclist-receiver = mail_id.
      reclist-rec_type = 'U'.
      APPEND reclist.
    *Function module to send email with an attachment
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = docdata
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = objpack
          contents_bin               = objbin
          contents_txt               = objtxt
          receivers                  = reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "send_email
    Edited by: vikram shah on Sep 25, 2008 5:28 PM

  • Problems with uninstalling and upgrading rescue and recovry

    i have ThinkPad T61 with XP SP3.
    i am trying to uninstall R&R version 4.1 in order to upgrade it to version 4.23.
    when i try to uninstall or run the new version setup i get that the following files are missing:
    C:\DOCUME~1\ABIREN~1\LOCALS~1\Temp\{F15F2B3-0C32-44D3-90E2-E639B8024622}\\spmtr.exe
    C:\DOCUME~1\ABIREN~1\LOCALS~1\Temp\{F15F2B3-0C32-44D3-90E2-E639B8024622}\\nspect.exe
    any idea what can be done?

    hey asafbar,
    curious to know, was there and problem with just installing version 4,23 immediately instead of uninstalling the previous version ?
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • Problems with uninstalling and updating Adobe Reader 9.x

    I have an issue with updating Adobe Reader 9.4.5. I get regularly automatic update routines and success reports after I ran them. However, when I open Adobe Reader it still shows up as version 9.4.5. So I tried to uninstall Adobe Reader completely. First of all, in the software panel two Adobe Reader versions show up: 9.4.5 & 9.3.5. Of those two, I could only uninstall the Adobe Reader 9.4.5. The 9.3.5 version doesn't sucessfully enter into an uninstall routine. As my computer expertise is limited, I don't know if there are other ways to remove that program successfully. Another odd thing is that when I open Adobe Reader, the version displayed is 9.4.5 although that was the one which seems to have uninstalled correctly. As you see, it's all a bit of a mess and I would appreciate your help with addressing this issues. Many thanks in advance.

    You may want to try the following.
    Remove  all traces of Reader (not only the program) from your system using  the  Windows Installer Cleanup Utility. This is no longer supported by  Microsoft because it can produce problems with Win 7, but you can still download it from from places like
    http://majorgeeks.com/download.php?det=4459
    Then, download the Reader installer from
    http://get.adobe.com/reader/enterprise/
    and perform a clean install.

  • Problem with uninstalling Office 2013 SCCM 2012 R2

    Hi, I am in a process of learning SCCM 2012 R2. Currently I am focused on application management so I started by deploying Office 2013 to test collection with only one member - direct rule membership by computer name. Deployment process finished without
    any problems - I kicked off installation from Software Center on client machine. Having installed Office 2013 I tried to uninstall it but I got an error: Setup can't find or validate an installation file. Please try reinstalling . . . . In SCCM server I entered:
    setup.exe /uninstall ProPlus /config .\ProPlus.ww\Uninstall.xml
    in uninstall program line. Uninstall.xml file is nothing special:
    <Configuration Product=”ProPlus”>
    <Display Level=”basic” CompletionNotice=”yes” SuppressModal=”yes” AcceptEula=”yes” />
    </Configuration>
    I tried to uninstall Office 2013 from cmd line but I got the same error. I can manually uninstall Office 2013 by running setup.exe file and following wizard but that does not mean anything to me except it proves installation files are not corrupted. Office
    2013 installation .iso file is downloaded from MS Volume Licensing Service Center.

    In SCCM server I entered: setup.exe /uninstall ProPlus /config .\ProPlus.ww\Uninstall.xml
    in uninstall program line.
    I've responded in your other thread:
    https://social.technet.microsoft.com/Forums/en-US/fd735611-95bf-46f6-8add-2229a52e3e93/i-can-not-uninstall-office-2013-from-command-line?forum=officeitpro
    Hi, your command-line is not valid - you are using a "relative" path for the <config.xml> and that is not supported..
    http://technet.microsoft.com/en-us/library/cc178956(v=office.15).aspx#BKMK_config
    Note: You must use a fully qualified path. Setup does not recognize relative paths with /config. 
    Instead, I suggest that you copy your "Uninstall.xml" file to the same folder where setup.exe exists, then, adjust your command-line like this:
    setup /uninstall ProPlus /config Uninstall.xml
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Problem with uninstalling apps!

    Help! I am having the most annoying issue with my phone. Last night I decided to delete a few apps I downloaded that I don't use anymore. Well I uninstalled them with no problem and they showed up in my app store as programs not installed. A while later I turned my phone off. When I turned my phone back on...all the apps showed up again. So I went in a deleted them. And then when I turned my phone off and back on they showed up again. I did it a few times and it was always the same thing. But now they don't show up in my app store at all. They only show up in my application settings on my phone. How do I fix this issue? Anyone else have the same issue??

    Hi RacerGurl11,
    I agree with Wildman (thanks for option provided!), the issues outlined in your post are strange. Since clearing Market Cache has not resolved issue and your latter post indicates that you have a new SD Memory card, I would recommend trying two things:
    1 Format SD Card Please note that this procedure will erase all data on the memory card. It is recommended to back up the data.
    2 Factory Reset Keep in mind that performing a hard reset will remove ALL data including the Google account, system data, application data, application settings, and downloaded applications.

  • Problem with ODI 11g (Extension/Modeler issue)

    After installing ODI and running ODI Studio, I did not get the Connect to Repository window in the left. Extension log says: Error: Not Loaded: Missing dependencies: oracle.modeler
    Seems like its a missing extension, can anyone help me with this issue? Thanks

    Yes AyushGaneriwal,
    the problem was non printable characters in the last field of 2000 character arriving from Mainframe download, now i asked for a clean file and is working good.
    Thank you.
    B.

  • Problem with AI File extension association

    I have Adobe CS4 and for some reason, my computer doesn't recognize  Adobe Illustrator as the default program for .ai files. Instead, it  lists AIRegedit.exe.
    When I open up the Properties, it displays in the type of file field  "example.ai" as an .ai file instead of the normal Adobe Illustrator  Document.
    When I open up "Associate a file type or protocol with a specific  program" .ai files are listed as "AI File" instead of "Adobe Illustrator  Document."
    Usually the icon for an Illustrator document is an orange square with  inner white lettering, but now it is a white block with a small orange  square inside.
    I'm novice when it comes to Regedit, so I'm wondering if anyone has had  similar problems or suggestions on how I could fix this file extension  problem.
    Thanks!

    something got messed up, usually re-starting is the miracle fix for a number of windows issues. If it does not get fix by itself try this:
    right click on an AI file, in the context menu choose "Open With", then go down to "Chose Program...". Find AI CS4, select it by clicking once and make sure to check "Always use selected program...."

  • Problem with reading file extensions from a Fat 32 Drive

    I have been copying image files from my imac 24" OSX 10.6.8 to a Maxxtor One touch external USB drive, the drive is FAT 32 format for a PC. My wife then connects the same drive to her laptop which is running Windows 7. She then sorts the images into different folder gives me back the drive to have more loaded to sort. The problem is when I get the drive back all the image files have a funny little box behind the file extension and the preview icon is blank with a exe in green, the file info says it's a Unix extension.
    I tried to remove the little box and open the .tif file or .jpg files and all I get is a image is not readable. The same drive can be mounted back to my wife's laptop and the images open up just fine in Windows media viewer.
    What's going on here and how do I fix and prevent this from happening again?
    Thanks!
    Pat

    So No one has any ideas on how this is happening and how to go about repairing the problem.
    The trouble as I see it comes up once she moves the files into another folder on Maxxtor drive when it's hooked up to the Win 7 laptoop. The Data then is unuseable on my Mac from that point on.
    I need to know WHY so I can aviod this from happening again, and how to fix currently there is 250 GB of image files I can not access on my Mac and I still have about 2 TB of image files to go through, and THEY ALL NEED TO BE ACCESSABLE.
    Anybody?

  • Problems with uninstalling cs3 and installing cs3 again

    Hi all,
    I hope someone can help me with this. I have uninstalled cs3 because the
    computer prompts me that my activation has stopped working. So as I began to
    install my cs3 design premium, the computer prompts me to insert my cd for
    my design premium. That is strage as I have already insertted my cd. So as I
    click on OK several times(they keep on prmpting me to insert my cd again.
    After I clicked on (most probably 20 ~ 30 times), the installer said I have
    not successfully installed any of the applications I have selected. Why so?
    I suspect I have not uninstalled cleanly. I have uninstalled from the
    add/remove components from the windows. Is there anyway to solve this
    problem? What am I going to do now??
    Disappointed.

    You probably need to uninstall again .. reboot .. and then follow the <br />instructions on this page.  Download and use the CS3 Clean Up Script for <br />your OS as instructed.<br /><br />http://www.adobe.com/support/contact/cs3clean.html<br /><br />Then reboot one more time and reinstall.<br /><br /><br />-- <br />Nancy Gill<br />Adobe Community Expert<br />Author:  Dreamweaver 8 e-book for the DMX Zone<br />Co-Author:  Dreamweaver MX: Instant Troubleshooter (August, 2003)<br />Technical Editor:  Dreamweaver CS3: The Missing Manual,<br /> DMX 2004: The Complete Reference,  DMX 2004: A Beginner's Guide<br /> Mastering Macromedia Contribute<br />Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development<br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Hi all,<br />><br />> I hope someone can help me with this. I have uninstalled cs3 because the<br />> computer prompts me that my activation has stopped working. So as I began <br />> to<br />> install my cs3 design premium, the computer prompts me to insert my cd for<br />> my design premium. That is strage as I have already insertted my cd. So as <br />> I<br />> click on OK several times(they keep on prmpting me to insert my cd again.<br />> After I clicked on (most probably 20 ~ 30 times), the installer said I <br />> have<br />> not successfully installed any of the applications I have selected. Why <br />> so?<br />><br />> I suspect I have not uninstalled cleanly. I have uninstalled from the<br />> add/remove components from the windows. Is there anyway to solve this<br />> problem? What am I going to do now??<br />><br />> Disappointed.<br />><br />><br />>

  • Problems with uninstalling VEM VIB

    We are trying to uninstall vib files from ESXi5.1, but when we did, it says that resource is busy. We've rebooted the system, but still the same problem.
    We tried to find which process locks the file with " lsof -D ", but there is no process which locks it. What to do?
    ~ # esxcli software vib remove -n cisco-vem-v150-esx
    [InstallationError]
    Error in running rm /tardisks/cisco_ve.v00:
    Return code: 1
    Output: rm: can't remove '/tardisks/cisco_ve.v00': Device or resource busy
    It is not safe to continue. Please reboot the host immediately to discard the unfinished update.
    Please refer to the log file for more details.

    Interesting. I've not run into that before. Are you sure all the nics and vms had been removed from the N1KV before you ran the esxcli command?
    louis

  • Problem with uninstalling software

    I accidentally deleted Adobe AIR application without clicking uninstall.
    Now I"m trying to reinstall and it says it's already there.
    Please help!
    I did all the steps on ADOBE website to manually remove the directories that include AIR to no avail. It stills says,
    "Cannot install, ADobe AIR already installed on this computer"
    I'm on a iMac (flat panel) with Leopard

    Open the /Library/Receipts/ folder and look for any receipts relating to that software; if so, throw them away and try installing it again.
    (29069)

  • Adobe updates: I've gotten error messages when trying to download pdfs (very annoying). Read somewhere that mac os has problems with the adobe extensions, thus, causing error messages from adobe. I ignore the updates. Should I?

    Hi All,
    I have stopped updating adobe software b/c I read that the adobe update software inserts extensions into the mac software system, causing annoying/time consuming error messages when downloading new pdfs. I get adobe update notices 2-3x/week. What do you recommend? I use an iMac OS 10.94.
    thanks for your help.

    Preview will do all that and is part of the OS.
    Mac Basics: Preview app views and edits PDFs and images
    With Adobe, if it's working, then it should be fine. See here
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Macintosh

  • Problem with uninstalling Nokia Connectivity Solut...

    winXP, SP2, 6630, pcsuite 6.8.22
    I wanted to reinstall my PCSuite due to transfer freezeing while using dku2 and Nokia Connectivity Solution faild to uninstall. Cleaner cant manage with that. in Add/Remove programs while highlighting Nokia Connectivity Solution there are no options like Remove or CHange, the info only. I can install PCSuite (installation freezes for few minuts) but all the possible errors occure when i'm trying to use it. Once again cleaner, registering ole.dll seems not to change anythingat all.

    MMList empty is an error that a few people seem to be getting and is already well documented on here.
    My best advice would be to refer to this thread and try the solution there that seems to have worked for at least some people.

Maybe you are looking for