My mac showing plug in error when seeing a movie

I download lion ox and now when to watching movie in netfix: it show plug in error

Hi Alberto, does the sound ever work right, like say playing iTunes?
Have you checked for a Ground Loop in your power or attached devices?
Long shot, but...
Open Audio Midi Setup in Applications>Utilities, see the input & output options & KHz setting there, some things will change it for their own use, then not set it back.

Similar Messages

  • Alv show in report but when see in spool (after run background job) there i

    my program have some error when i run result alv show in report but when see in spool (after run background job) there is no data, (other program can see result in spool)
    Please help
    here is some example of my program
    ********************************declare internal table*****************************
    internal table output for BDC
    data : begin of t_output occurs 0,
    bukrs type anla-bukrs,
    anln1 type anla-anln1,
    anln2 type anla-anln2,
    zugdt type anla-zugdt,
    result(70) type c,
    end of t_output.
    *****get data from loop********************************
      loop at t_anla.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  INPUT  = t_anla-anln1
             IMPORTING
                  OUTPUT = t_anla-anln1.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  INPUT  = t_anla-anln2
             IMPORTING
                  OUTPUT = t_anla-anln2.
    check record is correct or not
        select single bukrs anln1 anln2 zugdt
        into w_output
        from anla
        where bukrs = t_anla-bukrs and
        anln1 = t_anla-anln1 and
        anln2 = t_anla-anln2
       zugdt = '00000000'
    if record is correct
        if sy-subrc = 0 and w_output-zugdt = '00000000'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Yes : this asset can delete'.
          append w_output to t_output.
    if record is not correct
        elseif sy-subrc = 0 and w_output-zugdt <> '00000000'.
    there is error record  this asset have value already
          v_have_error = 'X'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Error : this asset have value already'.
          append w_output to t_output.
        else.
    there is error record this asset donot exist in table anla
          v_have_error = 'X'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Error : this asset doest not exist'.
          append w_output to t_output.
        endif.
    *end of check record is correct or not
        clear w_output.
      endloop.
    ******************************show data in ALV***************************************************
    show data from file in ALV
      perform display_report_ALV.
    *&      Form  display_report_ALV
    form display_report_ALV.
      DATA: LT_FIELD_CAT TYPE SLIS_T_FIELDCAT_ALV,
          LT_EVENTS TYPE SLIS_T_EVENT,
          LV_REPID LIKE SY-REPID.
      PERFORM ALV_DEFINE_FIELD_CAT USING LT_FIELD_CAT.
      PERFORM ALV_HEADER_BUILD USING T_LIST_TOP_OF_PAGE[].
      PERFORM ALV_EVENTTAB_BUILD USING LT_EVENTS[].
      LV_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM = LV_REPID
                IT_FIELDCAT        = LT_FIELD_CAT
                I_SAVE             = 'A'
                IT_EVENTS          = LT_EVENTS[]
           TABLES
                T_OUTTAB           = t_output
           EXCEPTIONS
                PROGRAM_ERROR      = 1
                OTHERS             = 2.
      IF SY-SUBRC NE 0.
        WRITE: / 'Return Code : ', SY-SUBRC,
          'from FUNCTION REUSE_ALV_GRID_DISPLAY'.
      ENDIF.
    endform.
    *&      Form  alv_define_field_cat
          text
         -->P_LT_FIELD_CAT  text
    FORM ALV_DEFINE_FIELD_CAT USING  TB_FCAT TYPE SLIS_T_FIELDCAT_ALV.
      DATA: WA_FIELDCAT LIKE LINE OF TB_FCAT,
        LV_COL_POS TYPE I.
      DEFINE FIELD_CAT.
        CLEAR WA_FIELDCAT.
        ADD 1 TO LV_COL_POS.
        WA_FIELDCAT-FIELDNAME = &1.
        WA_FIELDCAT-REF_TABNAME = &2.
        WA_FIELDCAT-COL_POS = LV_COL_POS.
        WA_FIELDCAT-KEY = &3.
        WA_FIELDCAT-NO_OUT = &4.
        WA_FIELDCAT-REF_FIELDNAME = &5.
        WA_FIELDCAT-DDICTXT = 'M'.
        IF NOT &6 IS INITIAL.
          WA_FIELDCAT-SELTEXT_L = &6.
          WA_FIELDCAT-SELTEXT_M = &6.
          WA_FIELDCAT-SELTEXT_S = &6.
        ENDIF.
        WA_FIELDCAT-DO_SUM = &7.
        WA_FIELDCAT-OUTPUTLEN = &8.
        APPEND WA_FIELDCAT TO TB_FCAT.
      END-OF-DEFINITION.
      FIELD_CAT  'BUKRS'  'ANLA'     'X' '' 'BUKRS' 'Company Code' '' ''.
      FIELD_CAT  'ANLN1'  'ANLA'     'X' '' 'ANLN1' 'Asset Number' '' ''.
      FIELD_CAT  'ANLN2'  'ANLA'     'X' '' 'ANLN2' 'Asset Sub Number' '' ''.
    FIELD_CAT  'ATEXT'   'T5EAE'     'X' '' 'ATEXT' 'Result' '' ''.
      FIELD_CAT  'RESULT'  ''     'X' '' 'RESULT' 'RESULT' '' ''.
    ENDFORM.                    " alv_define_field_cat

    Hi,
    Check this code..
    FORM display_report_alv.
      DATA: lt_field_cat TYPE slis_t_fieldcat_alv,
      lt_events TYPE slis_t_event,
      lv_repid LIKE sy-repid.
      PERFORM alv_define_field_cat USING lt_field_cat.
      PERFORM alv_header_build USING t_list_top_of_page[].
      PERFORM alv_eventtab_build USING lt_events[].
      lv_repid = sy-repid.
      IF sy-batch EQ 'X'.  ----> " System Field for Backgroud..if Background use list display
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program = lv_repid
            it_fieldcat        = lt_field_cat
            i_save             = 'A'
            it_events          = lt_events[]
          TABLES
            t_outtab           = t_output
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ELSE.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program = lv_repid
            it_fieldcat        = lt_field_cat
            i_save             = 'A'
            it_events          = lt_events[]
          TABLES
            t_outtab           = t_output
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ENDIF.
      IF sy-subrc NE 0.
        WRITE: / 'Return Code : ', sy-subrc,
        'from FUNCTION REUSE_ALV_GRID_DISPLAY'.
      ENDIF.
    ENDFORM.                    "display_report_ALV

  • I have rented a movie on apple tv and wish to finish it on my mac book air. When I open iTunes on my mac book air I can not see the movie in iTunes. It is an authorised device and I can see other purchases just. How do I fix it?

    I have rented a movie on apple tv and wish to finish it on my mac book air. When I open iTunes on my mac book air I can not see the movie in iTunes. It is an authorised device and I can see other purchases just. How do I fix it?

    Rented movies downloaded to an Apple TV can't be transferred to any other device.
    (86941)

  • I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    In relation to my previous inquiry regarding inability to view a pdf file using Safari...
    Is it possible that I can view other online bills from other website but not this particular bill from one specific website?
    Sorry if I missed any important point in this article -->Apple Safari 5.1 and Adobe Reader/Acrobat Advisory
    Thanks again!

  • TS1363 I'm trying to update to newest software, but during proccess, an error accured, now the iphone 4s wont do anything, it only shows plug into itunes. when i do, the device is not recognized by windows or itunes. any ideas?

    im trying to update to newest ios version. but during the proccess, an unknown error accured, now the device wont do anything, just shows the plug into itunes screen. the device does not show in windows or itunes. the iphone wont do anything. i tried restarting, it shuts off and back on, but only shows plug into itunes thing. any ideas?

    From my experience, the only way you're gonna get a PC afflicted with this disease to work with a 5th gen nano is to roll back to an earlier version of iTunes.  Those affected have been exhausted by this ongoing issue.  To update or not to update?  And I always say never update unless you have to, and turn off all that auto update mess!
    I have two core2duo lappies running 32b vista.  My workflow dictates 32b fyi.  One is acer aspire running itunes v 11.1 (.0.126),  5th gen nano was originally formatted and works just fine on this machine to this day.  My other is the bigger badder lenovo thinkpad and the 5th gen will NOT mount using any version of itunes past 11.0 (.1.12)  Windows mounts it just fine.  itunes is not having it.  no shirt no shoes no service.
    I have both a 4th and 5th gen nano.  The 4th gen works great on both machines, I even successfully tested it with the latest version (11.1.5) before subsequent deletion on the thinkpad!  Weird huh?  I think my next experiment might be to restore my 5th gen w/ a Mac and theeeeen plug it into PC itunez.
    I'm at a loss on the thinkpad.  Scanned for intruders.  Cut the Lenovo bloat.  Executed system and reg maintenance.  Took down msconfig to a safe mode + itunes level to attempt to resolve possible sw conflicts but to no avail.  NO NO NO.  Every single dang port, every time on the thinkpad.  Has me feeling like others might get the same treatment by the next itunes update.  :|
    So in summary for me:
    5th gen nano and thinkpad are a NoGo on 11.1^  last working version for me = 11.0.1
    5th gen nano is working on an acer aspire 11.1.0  but no way in the world am I updating
    4th gen nano is kicking 5th gen nano's @zz so what would make me want to buy a new ipod?

  • ITunes shows time out error when trying to play on Airport Express.

    Time out error when trying to play on Airport Express. This started with an iTunes update, problems has to be with iTunes, Airport Express appears to be communicating fine, even shows when speakers are not connected.

    Same here, though on XP. Have tried cleaning registry, reinstalling, deleting preferences. Created a new user with no library and I have the problem there, too, so it's not the library.
    Is there no one to call about this??

  • JDeveloper shows a fatal error when create Database or UML Diagrams

    My Platform is Windows 7 x64 with JDeveloper 11.1.2.3
    JDeveloper shows an error when I do this:
    1) Create a new Database Diagram.
    2) Create a Table in this Database Diagram.
    3) Delete the Database Diagram.
    4) Try to create a new Database Diagram again.
    5) JDeveloper shows a Fatal Error, and the ADF Model Project still to be corrupt after restart JDeveloper.
    The same happens with UML diagrams.
    Do you know any solution for that?
    Best Regards,

    I found the reason of this error.
    This error happens, if you store your ADF Application Project in a Network Drive, if you store your projects in local drives all works fine.
    Regards,

  • I have a plug in error when I try to upload pictures

    When I try to upload pictures from the IMAC onto websites, I received a plug in error.

    That probably means you need to install or updata the Oracle Java plugin from java.com.

  • Javascript error when adding Flash movie to DWCS3

    When I try to add a Flash movie to a page in DW CS3, I get
    the following message:
    When executing onClick Options.htm, the following Javascritp
    Error(s) occurred:
    At line 55 of the file "I:\Program FIles\Adobe\Adobe
    Dreamweaver CS3\Configuration|Commands|Object|Object Options.js":
    Cannot fine the file I:\Program FIles\Adobe\Adobe|adobe
    Dreamweaver CS3\Configuration\Shared\Common\Cache\Empty.htm.
    At line 55 of the file "I:\Program FIles\Adobe\Adobe
    Dreamweaver CS3\Configuration\Commands\Object Options.js":
    getDocumentDOM: Argument number 1 is invalid.
    If I click through the error messages, I finally get the
    movie on the page and it seems to display okay in IE6 ahd FX.
    I don't get the error when I load a Flash movie if I use DW
    8.
    Do I need to reload DWCS3? Or is there a fix that I can
    download. It seems to be a problem with DWCS3.
    Regards,
    Bill Schaepe

    Troubleshooting JavaScript errors in Dreamweaver
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "TurboBill" <[email protected]> wrote in
    message
    news:flrsjd$6kh$[email protected]..
    > When I try to add a Flash movie to a page in DW CS3, I
    get the following
    > message:
    >
    > When executing onClick Options.htm, the following
    Javascritp Error(s)
    > occurred:
    >
    > At line 55 of the file "I:\Program FIles\Adobe\Adobe
    Dreamweaver
    > CS3\Configuration|Commands|Object|Object Options.js":
    > Cannot fine the file I:\Program FIles\Adobe\Adobe|adobe
    Dreamweaver
    > CS3\Configuration\Shared\Common\Cache\Empty.htm.
    >
    > At line 55 of the file "I:\Program FIles\Adobe\Adobe
    Dreamweaver
    > CS3\Configuration\Commands\Object Options.js":
    getDocumentDOM: Argument
    > number
    > 1 is invalid.
    >
    > If I click through the error messages, I finally get the
    movie on the page
    > and
    > it seems to display okay in IE6 ahd FX.
    >
    > I don't get the error when I load a Flash movie if I use
    DW 8.
    >
    > Do I need to reload DWCS3? Or is there a fix that I can
    download. It
    > seems
    > to be a problem with DWCS3.
    >
    >
    > Regards,
    > Bill Schaepe
    >
    >

  • Script Error when I Publish Movie

    I am getting a script error when i Publish a Movie.But when
    run the movie i dont get any error.
    I get the error message window as follows
    Symbol expected
    <Void>
    Script Error. Continue?
    and the options "YES" and "NO"
    What could be the possible reason for this.
    I have draged a combo behaviour onto a bitmap.I think there
    is something wrong in that behaviour as it conatins many functions.
    Please highlight on this issue as it is really very urgent
    for me.
    Thanks

    Hi Ajeet,
    You've left out an xtra. It's impossible to tell which one
    from your
    description. I'll guess that its a scripting xtra, possibly a
    third
    party xtra.
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • Re: the 'noise' effect. I get a 'unknown error' when encoding my movie.

    When I am using the add, 'noise' effect I get a 'unknown error' when I  try to encode my movie. Help.
    rik

    Yes, I have an idea: do not use a string for $parameters; use a double-quoted here-string:
    $parameters=@"
    <?xml version="1.0" encoding="utf-8"?>
    etc...
    ( and don't forget to delete the grave accents - back ticks )

  • NCS - error when trying to move Wireless Map

    When I'm trying to move building to new campus I'm getting below error:
    Error(s): You must correct the following error(s) before proceeding:
    Error:Unknown Exception Occurred. If the problem persists please send logs to the Tech Support.
    Error:Detail: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect): [com.cisco.server.managedobjects.servicedomain.ServiceDomain#476477]
    Can someone advice please?

    Unable to move buildings to a new Campuses (occurs on random buildings)
    CSCul23421
    Description
    Symptom:
    Prime Infrastructure may throw an exception when trying to move buildings between campuses, stating that the row was updated or deleted by another transaction.
    Conditions:
    Workaround:
    At this time, there is no workaround.
    Further Problem Description:

  • Get a kranscoding error when burning home movies to disk

    Transcoding error when buring to disk

    You will find best advice over on the video forum. Most of us here are photographers.
    Click on the link below and copy and paste your question again. Good luck.
    Video questions: Click here for Premiere Elements Forum

  • Photos on my Mac show the wrong date when imported from a portable Hard Drive

    I’ve got loads of photos that I had imported from my old PC.Last night I decided to start going through them and trying to get them sorted  
    prior to importing into iphoto. I discovered that some of the pictures (in particular ones I have taken from my old Iphone) all had the same date and time
    assigned to them. When I checked the Exif details, it listed the correct camera etc, but the date created seems to have changed to the date I copied them to my portable hard drive.  
    I thought this was strange as when they were on my PC I thought they were correct. I booted my PC up and checked the portable hard drive on Windows. When viewed on my PC the pictures all have the correct time and date assigned to them. However when I plug the same portable hard drive into my Mac the same files show up as being created on a more recent date (say 20th Jan 2013).
    I’ve done a lot of research last night, although I can find no forum with this exact problem, I feel it must have something to do with compatibility. The portable hard drive is FAT32, and I am assuming that in order to ensure all of the photos information is transferred correctly in needs to be NTFS.
    The problem I have is how do I transfer my files again from my PC to an NTFS drive, whilst keeping all of the correct date and time information assigned to the photos. My understanding is that the 2 aren’t compatible.
    Has anyone ever had this problem? It mainly seems to be with photos I have extracted from my Iphone or edited in some form by rotating them.
    I have a 13" Macbook Pro Retina with OSX Mavericks installed.

    What you may want to do is archive as a Zipfile the photos and then transfer them to the Mac.     It is possible some of the metadata is being lost on the FAT32 formatting.    USB Flashdrive might work better than a FAT32 formatted hard drive, as I do know that most USB Flashdrives are formatted about the same as SD media cards, which manage to preserve the data when copied from camera to Mac.    My big question is, do you still have the photos on media cards?  You might just want to get a media card reader on your Mac, if the photos are not on SD cards, and transfer them over with the media card reader.
    I do believe Retina MacBook Pros all have SD card readers built-in.
    Note: I've asked this be moved to the MacBook Pro forum.  MacBook without the secondary name refers to the consumer notebook Apple stopped making in 2011.

  • Suddenly getting "Missing Plug-Ins" errors when opening .indd files in InDesign CS2

    I have a PC running Windows 7 and InDesign CS2. The laptop's installation of Windows was corrupted and I had to re-install the OS. I backed up all files, reinstalled the OS, and then reinstalled applications. One of those applications was InDesign CS2. However, after the installation of CS2 on the fresh copy of Windows, I noticed that I have trouble opening most, but not all, of the InDesign files on my hard drive.
    When I try to open a .indd file I see an error message pop up that says "Missing Plug-ins. LILO.APLN, DYNAMICDOCUMENTS.RPLN, CONDITIONALTEXT.RPLN" and three more. Under that list of missing plugins is the warning "This document uses one or more plug-ins which are not currently available on your system. Do you want to open anyway?"  If I click "okay" I then am met with another dialog box that says "Cannot open file. TEXT.RPLN, LAYER.RPLN" and on and on for about 60 more items.
    I KNOW WHAT YOU'RE THINKING! I've searched around concerning this issue and it appears the consensus is that the file was opened by a newer version of InDesign. That possibility is, in fact, an impossibility. Never have I used a newer version of InDesign. The files that I am working on were backed up, stored on local storage and not touched once before reinstalling the OS and reinstalling InDesign CS2.
    I also noticed that not all InDesign file formats were associated with InDesign in "Windows Programs and Defaults." I changed those to look to InDesign. I've also uninstalled InDesign CS2 and re-installed.
    Not all InDesign CS2 files are exhibiting this behavior. So far, it appears more than half are, but some can be opened with no problems. There seems to be no correlation between which ones are able to be opened and which ones can't be opened.
    What could have happened to these files and is there any possibility of opened them again? Any guidance is greatly appreciated.

    [Jongware] wrote:
    Nonapeptide wrote:
    ...  an error message pop up that says "Missing Plug-ins. LILO.APLN, DYNAMICDOCUMENTS.RPLN, CONDITIONALTEXT.RPLN" and three more. ... 
    I KNOW WHAT YOU'RE THINKING! I've searched around concerning this issue and it appears the consensus is that the file was opened by a newer version of InDesign. That possibility is, in fact, an impossibility.
    Conditional Text was a new feature in CS4. I'm thinking, can you explain how your old CS2 documents became aware of it?
    Not exactly sure myself. Abiogenesis?
    [Edit]
    Almost forgot. I wrote a script to unequivocally determine the InDesign version a document was last saved as:
    http://forums.adobe.com/message/4071273
    I'll give that a try today. Even an affirmative judgement that the files are newer than CS2 would not impress me however. The fact remains, the files were copied off one hard drive over to another, the plug was pulled on the hard drive, the PC was re-imaged, CS2 was reinstalled, the files were copied back over... and whammo.

Maybe you are looking for

  • Doubt in memory allocation

    Hi.. I have doubt in object memory allocation. for example see the following code, String str = new String(JAVA PROGRAMMING); 1) int index = str.toLowerCase( ).indexOf("ram", 0); 2) String temp = str.toLowerCase( ); int index = temp.indexOf("ram", 0)

  • Setting Locale and Hostname on New Installation Fails

    Hello, Tried doing an Arch install on my Acer Aspire One D255 today, but when I try to set the hostname and locale while chroot'ed into /mnt, I get: Failed to get D-Bus connection: Failed to connect to socket /run/dbus/system_bus_socket: No such file

  • Mountain Lion Os X 10.8.2 Update Inquiry

    I bought a new, MacBook Air Pro 15.4' , 2.3 GHz, 4GB RAM, 500 GB today. I assume that all the new Mac Books come with preinstalled Mountain Lion Os X as I had to update it using Apple Store. After the updates, I still noticed that there was 10.8.2 ve

  • SAP Enterprise Portal 7.0 Error while customizing Standard  Admin roles.

    Hi All, I have a business requirement of Creating Transport role which should access only Transport Navigational Tab in Enterprise Portal 7.0. Because we can't give Standard Administrator roles to Users. For that, I have created a role and added Stan

  • ITunes wont burn all songs in a playlist

    I am trying tyo burn a cd from my playlist. I have all the songs selected but when I hit the burn button, several of the songs become unselected and it then burns only the remaining selected songs. There appears to be sufficient space on the CD and I