Problem using flash plugin with major browsers

Flash plugin (current release 11.05.31) is not working properly on major browsers. Some movie clips (created with flash) with jpeg images are not  loaded correctly.  The images are not visible and  you see a blank screen. With new "beta" release 11.5.502.131 everything works well. 
Will the new release  solve this problem?
Thanks for helping.

The next official release, due out in the next week or so, should address this problem.

Similar Messages

  • Problem using SQL Loader with ODI

    Hi,
    I am having problems using SQL Loader with ODI. I am trying to fill an oracle table with data from a txt file. At first I had used "File to SQL" LKM, but due to the size of the source txt file (700MB), I decided to use "File to Oracle (SQLLDR)" LKM.
    The error that appears in myFile.txt.log is: "SQL*Loader-101: Invalid argument for username/password"
    I think that the problem could be in the definition of the data server (Physical architecutre in topology), because I have left blank Host, user and password.
    Is this the problem? What host and user should I use? With "File to SQL" works fine living this blank, but takes to much time.
    Thanks in advance

    I tried to use your code, but I couldn´t make it work (I don´t know Jython). I think the problem could be with the use of quotes
    Here is what I wrote:
    import os
    retVal = os.system(r'sqlldr control=E:\Public\TXTODI\PROFITA2/Profita2Final.txt.ctl log=E:\Public\TXTODI\PROFITA2/Profita2Final.txt.log userid=MYUSER/myPassword @ mySID')
    if retVal == 1 or retVal > 2:
    raise 'SQLLDR failed. Please check the for details '
    And the error message is:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 5, in ?
    SQLLDR failed. Please check the for details
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • Problem using CORBA clients with RMI/EJB servers..!!!???

    Hi,
    I have a question on using EJB / or RMI servers with CORBA clients using
    RMI-IIOP transport, which in theory should work, but in practice has few
    glitches.
    Basically, I have implemented a very simple server, StockTreader, which
    looks up for a symbol and returns a 'Stock' object. In the first example, I
    simplified the 'Stock' object to be a mere java.lang.String, so that lookup
    would simply return the 'synbol'.
    Then I have implemented the above, as an RMI-IIOP server (case 1) and a
    CORBA server (case 2) with respective clients, and the pair of
    client-servers work fine as long as they are CORBA-to-CORBA and RMI-to-RMI.
    But the problem arises when I tried using the RMI server (via IIOP) with the
    CORBA client, when the client tries to narrow the object ref obtained from
    the naming service into the CORBA idl defined type (StockTrader) it ends up
    with a class cast exception.
    This is what I did to achieve the above results:
    [1] Define an RMI interface StockTrader.java (extending java.rmi.Remote)
    with the method,
    public String lookup( String symbol) throws RMIException;
    [2] Implement the StorckTrader interface (on a PortableRemoteObject derived
    class, to make it IIOP compliant), and then the server to register the stock
    trader with COS Naming service as follows:
    String homeName =....
    StockTraderImpl trader =new StockTraderImpl();
    System.out.println("binding obj <" homeName ">...");
    java.util.Hashtable ht =new java.util.Hashtable();
    ht.put("java.naming.factory.initial", args[2]);
    ht.put("java.naming.provider.url", args[3]);
    Context ctx =new InitialContext(ht);
    ctx.rebind(homeName, trader);
    [3] Generate the RMI-IIOP skeletons for the Implementation class,
    rmic -iiop stock.StockTraderImpl
    [4] generate the IDL for the RMI interface,
    rmic -idl stock.StockTraderImpl
    [5] Generate IDL stubs for the CORBA client,
    idlj -v -fclient -emitAll StockTraderImpl.idl
    [6] Write the client to use the IDL-defined stock trader,
    String serverName =args[0];
    String symList =args[1];
    StockClient client =new StockClient();
    System.out.println("init orb...");
    ORB orb =ORB.init(args, null);
    System.out.println("resolve init name service...");
    org.omg.CORBA.Object objRef
    =orb.resolve_initial_references("NameService");
    NamingContext naming =NamingContextHelper.narrow(objRef);
    ... define a naming component etc...
    org.omg.CORBA.Object obj =naming.resolve(...);
    System.out.println("narrow objRef: " obj.getClass() ": " +obj);
    StockTrader trader =StockTraderHelper.narrow(obj);
    [7] Compile all the classes using Java 1.2.2
    [8] start tnameserv (naming service), then the server to register the RMI
    server obj
    [9] Run the CORBA client, passing it the COSNaming service ref name (with
    which the server obj is registered)
    The CORBA client successfully finds the server obj ref in the naming
    service, the operation StockTraderHelper.narrow() fails in the segment
    below, with a class cast exception:
    org.omg.CORBA.Object obj =naming.resolve(...);
    StockTrader trader =StockTraderHelper.narrow(obj);
    The <obj> returned by naming service turns out to be of the type;
    class com.sun.rmi.iiop.CDRInputStream$1
    This is of the same type when stock trader object is registered in a CORBA
    server (as opposed to an RMI server), but works correctly with no casting
    excpetions..
    Any ideas / hints very welcome.
    thanks in advance,
    -hari

    On the contrary... all that is being said is that we needed to provide clearer examples/documentation in the 5.1.0 release. There will be no difference between the product as found in the service pack and the product found in the 5.1.1. That is, the only substantive will be that 5.1.1 will also
    include the examples.
    "<=one way=>" wrote:
    With reference to your and other messages, it appears that one should not
    expect that WLS RMI-IIOP will work in a complex real-life system, at least
    not now. In other words, support for real-life CORBA clients is not an
    option in the current release of WLS.
    TIA
    "Eduardo Ceballos" <[email protected]> wrote in message
    news:[email protected]...
    We currently publish an IDL example, even though the IDL programmingmodel in Java is completely non-functional, in anticipation of the support
    needs for uses who need to use IDL to talk to the Weblogic server,
    generically. This example illustrates the simplest connectivity; it does not
    address how
    to integrate CORBA and EJB, a broad topic, fraught with peril, imo. I'llnote in passing that, to my knowledge, none of the other vendors attempt
    this topic either, a point which is telling if all the less happy to hear.
    For the record then, what is missing from our distribution wrt RMI-IIOPare a RMI-IIOP example, an EJB-IIOP example, an EJB-C++. In this you are
    correct; better examples are forth coming.
    Still, I would not call our RMI-IIOP implementation fragile. I would saythat customers have an understandably hard time accepting that the IDL
    programming model is busted; busted in the sense that there are no C++
    libraries to support the EJB model, and busted in the sense that there is
    simply no
    support in Java for an IDL interface to an EJB. Weblogic has nothing to doit being busted, although we are trying to help our customers deal with it
    in productive ways.
    For the moment, what there is is a RMI (over IIOP) programming model, aninherently Java to Java programming model, and true to that, we accept and
    dispatch IIOP request into RMI server objects. The way I look at it is this:
    it's just a protocol, like HTTP, or JRMP; it's not IDL and it has
    practically nothing to do with CORBA.
    ST wrote:
    Eduardo,
    Can you give us more details about the comment below:
    I fear that as soon as the call to narrow succeeds, the remainingapplication will fail to work correctly because it is too difficult ot
    use an idl client in java to work.It seems to me that Weblogic's RMI-IIOP is a very fragile
    implementation. We
    don't need a "HelloWorld" example, we need a concrete serious example(fully
    tested and seriously documented) that works so that we can get a betteridea
    on how to integrate CORBA and EJB.
    Thanks,
    Said
    "Eduardo Ceballos" <[email protected]> wrote in message
    news:[email protected]...
    Please post request to the news group...
    As I said, you must separate the idl related classes (class files and
    java
    files) from the rmi classes... in the rmic step, you must set a newtarget
    (as you did), emit the java files into that directory (it's not clearyou
    did this), then remove all the rmi class files from the class path... ifyou
    need to compile more classes at that point, copy the java files to theidl
    directly is you must, but you can not share the types in any way.
    I fear that as soon as the call to narrow succeeds, the remainingapplication will fail to work correctly because it is too difficult otuse
    an idl client in java to work.
    Harindra Rajapakshe wrote:
    Hi Eduardo,
    Thanks for the help. That is the way I compiled my CORBA client, by
    separating the IDL-generated stubs from the RMI ones, but still I
    get a
    CORBA.BAD_PARAM upon narrowing the client proxy to the interfacetype.
    Here's what I did;
    + Define the RMI interfaces, in this case a StockTrader interface.
    + Implement RMI interface by extendingjavax.rmi.PortableRemoteObject
    making
    it IIOP compliant
    + Implemnnt an RMI server, and compile using JDK1.2.2
    + use the RMI implementation to generate CORBA idl, using RMI-IIOPplugin
    utility rmic;
    rmic -idl -noValueMethods -always -d idl stock.StockTraderImpl
    + generate Java mappings to the IDL generated above, using RMI-IIOPplugin
    util,
    idlj -v -fclient -emitAll -tf src stocks\StockTrader.idl
    This creates source for the package stock and also
    org.omg.CORBA.*
    package, presumably IIOP type marshalling
    + compile all classes generated above using JDK1.2.2
    + Implement client (CORBA) using the classes generated above, NOTthe
    RMI
    proxies.
    + start RMI server, with stockTrader server obj
    + start tnameserv
    + start CORBA client
    Then the client errors when trying to narrow the obj ref from the
    naming
    service, into the CORBA IDL defined interface using,
    org.omg.CORBA.Object obj =naming.resolve(nn);
    StockTrader trader =StockTraderHelper.narrow(obj); // THIS
    ERRORS..!!!
    throwing a CORBA.BAD_PARAM exception.
    any ideas..?
    Thanks in advance,
    -hari
    ----- Original Message -----
    From: Eduardo Ceballos <[email protected]>
    Newsgroups: weblogic.developer.interest.rmi-iiop
    To: Hari Rajapakshe <[email protected]>
    Sent: Wednesday, July 26, 2000 4:38 AM
    Subject: Re: problem using CORBA clients with RMI/EJBservers..!!!???
    Please see the post on june 26, re Errors compiling... somewherein
    there,
    I suspect, you are referring to the rmi class file when you are
    obliged
    to
    completely segregate these from the idl class files.
    Hari Rajapakshe wrote:
    Hi,
    I have a question on using EJB / or RMI servers with CORBA
    clients
    using
    RMI-IIOP transport, which in theory should work, but in practice
    has
    few
    glitches.
    Basically, I have implemented a very simple server,
    StockTreader,
    which
    looks up for a symbol and returns a 'Stock' object. In the firstexample, I
    simplified the 'Stock' object to be a mere java.lang.String, so
    that
    lookup
    would simply return the 'synbol'.
    Then I have implemented the above, as an RMI-IIOP server (case
    1)
    and a
    CORBA server (case 2) with respective clients, and the pair of
    client-servers work fine as long as they are CORBA-to-CORBA andRMI-to-RMI.
    But the problem arises when I tried using the RMI server (via
    IIOP)
    with
    the
    CORBA client, when the client tries to narrow the object ref
    obtained
    from
    the naming service into the CORBA idl defined type (StockTrader)
    it
    ends
    up
    with a class cast exception.
    This is what I did to achieve the above results:
    [1] Define an RMI interface StockTrader.java (extending
    java.rmi.Remote)
    with the method,
    public String lookup( String symbol) throws RMIException;
    [2] Implement the StorckTrader interface (on a
    PortableRemoteObject
    derived
    class, to make it IIOP compliant), and then the server to
    register
    the
    stock
    trader with COS Naming service as follows:
    String homeName =....
    StockTraderImpl trader =new StockTraderImpl();
    System.out.println("binding obj <" homeName ">...");
    java.util.Hashtable ht =new java.util.Hashtable();
    ht.put("java.naming.factory.initial", args[2]);
    ht.put("java.naming.provider.url", args[3]);
    Context ctx =new InitialContext(ht);
    ctx.rebind(homeName, trader);
    [3] Generate the RMI-IIOP skeletons for the Implementation
    class,
    rmic -iiop stock.StockTraderImpl
    [4] generate the IDL for the RMI interface,
    rmic -idl stock.StockTraderImpl
    [5] Generate IDL stubs for the CORBA client,
    idlj -v -fclient -emitAll StockTraderImpl.idl
    [6] Write the client to use the IDL-defined stock trader,
    String serverName =args[0];
    String symList =args[1];
    StockClient client =new StockClient();
    System.out.println("init orb...");
    ORB orb =ORB.init(args, null);
    System.out.println("resolve init name service...");
    org.omg.CORBA.Object objRef
    =orb.resolve_initial_references("NameService");
    NamingContext naming=NamingContextHelper.narrow(objRef);
    ... define a naming component etc...
    org.omg.CORBA.Object obj =naming.resolve(...);
    System.out.println("narrow objRef: " obj.getClass() ":"
    +obj);
    StockTrader trader =StockTraderHelper.narrow(obj);
    [7] Compile all the classes using Java 1.2.2
    [8] start tnameserv (naming service), then the server to
    register
    the
    RMI
    server obj
    [9] Run the CORBA client, passing it the COSNaming service ref
    name
    (with
    which the server obj is registered)
    The CORBA client successfully finds the server obj ref in the
    naming
    service, the operation StockTraderHelper.narrow() fails in thesegment
    below, with a class cast exception:
    org.omg.CORBA.Object obj =naming.resolve(...);
    StockTrader trader =StockTraderHelper.narrow(obj);
    The <obj> returned by naming service turns out to be of the
    type;
    class com.sun.rmi.iiop.CDRInputStream$1
    This is of the same type when stock trader object is registeredin a
    CORBA
    server (as opposed to an RMI server), but works correctly with
    no
    casting
    excpetions..
    Any ideas / hints very welcome.
    thanks in advance,
    -hari

  • When using Flash plugin in Fullscreen the video starts pausing occasionally for a second. OK when not in Fullscreen and works fine in Fullscreen with other Browsers.

    I have recently upgraded to 10.0 and whenn using Flash Player in Fullscreen it behaves badly. Starts pausing frequently for aroun a second. It's annoying. When I escape fullscreen and run it within the Browser panel it's fine.. Other Browsers work fine in Full Screen Mode. Tried it with IE and Google Chrome. Firefox is my default Browser so my preferred option.

    goneja2 wrote:
    I have narrowed it down to my Motherboard, GPU, CPU or Power Supply that is emitting the noise.
    I have never heard of such a thing, but the first thing I would try is to disabled Hardware Acceleration (Flash Player Settings).

  • Flash plugin hangs all browsers on my mac

    Starting about a week ago, about 1/3 of sites that use flash cause my browser to hang.   It's not browser specific - happens the same in Firefox, Safari, and Opera.   Symptom is complete freeze of the browser, requiring force quit.   An easy reproduce is http://www.chase.com ; that site crashes my browser with 100% repeatability.
    Disabling the flash plugin completely fixes the problem, but then I can't see flash content.
    System details:
    OS:  Mac OS X 10.5.8
    Hardware:   Mac Pro Quad-core 2.66Ghz
    Flash player version:  10.0.43_34
    Browser: All        
    I have already tried all of the following:
          • Uninstalling / reinstalling flash player.
          • Deleting/rebuilding browser profiles
          • Installing every version of player 10.x available in the archive, and a couple versions of 9.x ... all cause the same problem.
    Interesting note:
         • Problem does not occur on my MacBook Pro, which has a nearly identical software configuration.
    I have filed a bugreport, but what good does that do me?  I don't even have privileges to view the bugreport, so I don't know whether it's been responded to or not.   In the meantime, half the web is unusable because everybody uses flash.

    I had this exact same problem with my macbook pro 2.6Ghz laptop
    I was running OSX 10.5.7 with flash 8 or so when some websites I frequent forced me to upgrade. The player didn't work off the bat and after re installing the player as well as all my browsers, repairing permissions I was starting to lose hope. I got the latest system update to 10.5.8 and afterward determined it was the plugin itself that was the problem. Couldn't fix it by removing the plugin from my library files, and even worse couldn't find Flash 8 or 9 ANYWHERE to downgrade.
    The installer itself is pretty useless as you can only choose the drive to install the plugin and not integrate it seperately into your browsers as you choose. I suppose this is for convenience, but when it doesn't work it's a real bummer. Some linux users I know have far more problems with flash 10 than I do, so I'm thankful to have recieved at least minimal support for my platform from Adobe.
    I hypothesized that Adobe simply did not create a very versatile plugin, and that since everyone and their dog has snow leopard (with no flash problems whatsoever) that snow leopard managed to recieve better support. Sure enough installing snow leopard and re-installing the plugin has yielded no problems so far. Good thing I had a free snow leopard upgrade disk with my computer or I, like many other people here, would still be unsatisfied.
    What has flash 10 done for me that flash 8 hasn't? Nothing but headaches so far.
    Overall Adobe satisfaction rating: 3/10
    You guys have made great code in the past! Stop being lazy!

  • Flash Plugin with Firefox 5 causes odd audio playing!

    When I start Firefox 5, about a minute or so later, an audio clip/file starts playing on its own!   I think it's an audio file I created and have stored on this computer (of a band I once played in). This is a repeatable problem - it happens every time. The file is about 1.5 mins long and only plays once per Firefox session. If I go to the Addons Manager in Firefox and disable the Shockwave Flash plugin (the lastest version 10.3.181.34), the audio file immediately stops playing. If I reactivate this plugin subsequently, about a minute later the audio file starts its mysterious playing, again (one instance). I have tried uninstalling/reinstalling Flash and the related plugin, cleared temp files, etc. all to no avail. I have tried to adjust the Flash Player's settings (using both local and so-called online), again, without success. I have very few other Firefox plugins and extensions running (I doubt that these are the issue, anyway). I don't encounter this with other browsers (Chrome and IE).
    The computer is a Toshiba tablet pc running Windows XP SP3, all as updated as possible. There are NO other issues presently on this otherwise extremely smooth running computer. The problem happens whether I've got just Firefox running, or other programs up and running.
    So, has anyone else encountered this issue? Any suggestions to remedy?

    Thanks. Later today I'll be able to try that software utility.
    I wonder if there is information known on the forum (any readers of this post) about what triggers Flash Player to play an audio file automatically (as opposed to clicking on a file to, in a sense, manually start a media file).
    Are there any other audio settings available to users other than yes/no to web cam or microphone?

  • Problem installing flash player with I.E

    Whilst surfing around the internet this morning I vaguely remember getting a message about needing an adobe flash player update shortly followed by my browser crashing. I didn't think much more of it but from this afternoon onwards I discovered that almost every website i visited would throw up a "This website wants to run the Following add-on: 'Adobe Flash Player' from 'Adobe System Incorporation'. If you trust the website and the following add-on and want to allow it to run, Click Here..." message at the top of the page.
    I tried resetting Internet Explorer 8's security settings to default (i think they were default anyway) but this made no difference. I went to the adobe website to attempt to install the latest flash player but every time i went to the installation page it would refresh itself after about 5 seconds with a "This tab has been recovered. A problem with this web page caused Internet Explorer to close and reopen the tab" message at the top of the page. The page would then refresh again, this time ending up with a "We were unable to return you to adobe.com. Internet Explorer has stopped trying to restore this website." error page.
    In an effort to resolve these problems I uninstalled adobe flash player using the adobe uninstaller (http://kb2.adobe.com/cps/141/tn_14157.html), rebooted my computer and attempted to install the flash player again. Once again I couldn't install it with my attempts again ending up at the "We were unable to return you to adobe.com. Internet Explorer has stopped trying to restore this website." error page.
    I just tried downloading the Firefox browser and have had no problem installing and using the adobe flash player so I am guessing the problem is some sort of issue between adobe and internet explorer- any solutions?
    Thanks :-)

    Hi, You didn't say what version of IE you are using, but most likely IE7 or IE8. It's some option in the browser I'm sure.
    Since you ran the Uninstaller, and it Uninstalls all Flash Player from All browsers, try this Adobe Installer that you will download and SAVE to your Desktop. Then close all browsers, keep your Security setting on Medium for the Internet Zone, be sure to use the Administrator account(only one that has permission). Check your system tray (area by the clock) and disable any application that uses Flash, as Messenger services.
    Run the Installer from your Desktop and when it is finished, be sure to Reboot(restart) your computer.
    http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    Then test here:
    http://kb2.adobe.com/cps/155/tn_15507.html
    Check your websites to see if they are working properly.
    Thanks,
    eidnolb

  • Problem using flash

    I am trying to open a paper demanding flash - all the time I get the message you need flash - download here
    Still I am using Crome browser, with flash as enabled plugin
    So I downloaded flash and installed. then I got this message - and the paper still demands flash - I have checked on the plugin and restarted the computer and still I am not able to open the paper
    What can I do?

    So your problem is on Chrome only?

  • Flash plugin with firefox 3, no sound [SOLVED]

    Good morning.
      I would like to report a problem that I have with the flashplugin in firefox. I installed it using the nspluginwrapper-flash 9.0.124.0-1 in AUR. It works, but I get no sound at all. I nstalled the suggested lib32-alsa-lib package, but nothing changed. When I launch firefox I get the following errors:
    [valerio@angel4 ~]$ firefox http://www.youtube.com/watch?v=xS5eax8dvB8
    [valerio@angel4 ~]$ firefox http://www.youtube.com/watch?v=xS5eax8dvB8                 
    (firefox:6314): Gtk-WARNING **: Unable to locate theme engine in module_path: "murrine",
    ** (firefox:6314): WARNING **: Invalid borders specified for theme pixmap:
            /home/valerio/.themes/Oxygen Accurate/gtk-2.0/Toolbar/toolbar.png,
    borders don't fit within the image                                       
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    ** (firefox:6314): WARNING **: invalid source position for horizontal gradient
    LoadPlugin: failed to initialize shared library /usr/lib/mozilla/plugins/libflashplayer.so [/usr/lib/mozilla/plugins/libflashplayer.so: wrong ELF class: ELFCLASS32]                                                                                                 
    LoadPlugin: failed to initialize shared library /usr/lib/mozilla/plugins/nppdf.so [/usr/lib/mozilla/plugins/nppdf.so: wrong ELF class: ELFCLASS32]                                                                                                                   
    which: no soundwrapper in (/opt/kde4-svn/bin:/opt/kde4-svn/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bin/perlbin/site:/usr/bin/perlbin/vendor:/usr/bin/perlbin/core:/home/valerio/data/Work/Software/iplt/stage/bin:/home/valerio/data/Work/Software/iplt/stage/bin)     
    which: no soundwrapper in (/opt/kde4-svn/bin:/opt/kde4-svn/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bin/perlbin/site:/usr/bin/perlbin/vendor:/usr/bin/perlbin/core:/home/valerio/data/Work/Software/iplt/stage/bin:/home/valerio/data/Work/Software/iplt/stage/bin) 
    It tries to load the 32 bit flash plugin because it is in /usr/lib/mozilla, but I have the wrapped version in $HOME/.mozilla/plugins. The relevant error seems to be the no soundwrapper.
    You might notice that I am running KDE4 svn but I don't think this has to do with the problem.
    Did anyone have a similar problem?
              Valerio
    Last edited by valmar (2009-01-09 10:38:17)

    The errors may not be diagnostic.  That video plays perfectly here despite all this lot:
    [david@darkstar ~]$ firefox http://www.youtube.com/watch?v=xS5eax8dvB8
    LoadPlugin: failed to initialize shared library /usr/lib/mozilla/plugins/libflashplayer.so [/usr/lib/mozilla/plugins/libflashplayer.so: wrong ELF class: ELFCLASS32]
    which: no soundwrapper in (/bin:/usr/bin:/sbin:/usr/sbin:/opt/java/bin:/opt/java/jre/bin:/opt/kde/bin:/usr/bin/perlbin/site:/usr/bin/perlbin/vendor:/usr/bin/perlbin/core:/opt/qt/bin)
    which: no soundwrapper in (/bin:/usr/bin:/sbin:/usr/sbin:/opt/java/bin:/opt/java/jre/bin:/opt/kde/bin:/usr/bin/perlbin/site:/usr/bin/perlbin/vendor:/usr/bin/perlbin/core:/opt/qt/bin)
    Gtk-Message: Failed to load module "gnomebreakpad": /usr/lib/gtk-2.0/modules/libgnomebreakpad.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    (npviewer.bin:6513): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so: wrong ELF class: ELFCLASS64
    I would check the installation of nspluginwrapper and nspluginwrapper-flash because lib32-alsa-lib is listed as a dependency in the nspluginwrapper-flash PKGBUILD and so should not have to be installed manually.  Also, did you run "nspluginwrapper -v -a -i" as your user and not as root after installation?

  • Is there  any way to use osmf plugin with videodisplay component?

    Hello
    i use flex sdk hero (17689 build)
    i want to use OSMF plugin for the  captioning. i created object of media element with metadata for captioning plugin so  eventually i get object of CaptioningProxyElement type from mediaFactory ,  than i pass it to the source of videoDisplay> in source setter of videoDisplay setUpSource()  is called . in setUpSource  the type of source is checked and videoElement is created and assinged to videoPlayer( of type MediaPlayer) according  to the source type.The problem is that  my source is of type  CaptioningProxyElement (extended from MediaPlayer) so setUpSource ignores it , eventually not assining it to videoPlayer.  i can't extend VideoDispay and override source either , since videoPlayer is of type mx_internal , it's not accessible .
    thanks in advance.
    private function setUpSource():void
            // clean up any listeners from the old source, especially if we
            // are in the processing of loading that video file up
            cleanUpSource()
            // if was playing a previous video, let's remove it now
            if (videoPlayer.media && videoContainer.containsMediaElement(videoPlayer.media))
                videoContainer.removeMediaElement(videoPlayer.media);
            var videoElement:org.osmf.media.MediaElement = null;
            // check for 4 cases: streaming video, progressive download,
            // an IMediaResource, or a VideoElement. 
            // The latter 2 are undocumented but allowed for flexibility until we
            // can support OSMF better after they ship OSMF 1.0.  At that point, support
            // for a source as an IMediaResource or a VideoElement may be removed.
            if (source is DynamicStreamingVideoSource)
                // the streaming video case.
                // build up a DynamicStreamingResource to pass in to OSMF
                var streamingSource:DynamicStreamingVideoSource = source as DynamicStreamingVideoSource;
                var dsr:DynamicStreamingResource;
                // check for two cases for host: String and URL.
                // Technically, we only support URL, but we secretly allow
                // them to send in an OSMF URL or FMSURL here to help resolve any ambiguity
                // around serverName vs. streamName.
                if (streamingSource.host is String)
                    dsr = new DynamicStreamingResource(streamingSource.host as String,
                                                       streamingSource.streamType);
                else if (streamingSource.host is URL)
                    dsr = new DynamicStreamingResource(URL(streamingSource.host).host,
                                                       streamingSource.streamType);
                if (dsr)
                    var n:int = streamingSource.streamItems.length;
                    var item:DynamicStreamingVideoItem;
                    var dsi:DynamicStreamingItem;
                    var streamItems:Vector.<DynamicStreamingItem> = new Vector.<DynamicStreamingItem>(n);
                    for (var i:int = 0; i < n; i++)
                        item = streamingSource.streamItems[i];
                        dsi = new DynamicStreamingItem(item.streamName, item.bitrate);
                        streamItems[i] = dsi;
                    dsr.streamItems = streamItems;
                    dsr.initialIndex = streamingSource.initialIndex;
                    // add video type metadata so if the URL is ambiguous, OSMF will
                    // know what type of file we're trying to connect to
                    dsr.mediaType = MediaType.VIDEO;
                    videoElement = new org.osmf.elements.VideoElement(dsr, new RTMPDynamicStreamingNetLoader());
            else if (source is String)
                var urlResource:URLResource = new URLResource(source as String);
                videoElement = mediaFactory.createMediaElement(urlResource);
                // If the url could not be resolved to a media element then try
                // telling osmf the media is a video and try again.
                // We do not specify the media type as video the first time,
                // so we can have the chance to play audio.
                if (videoElement == null)
                    urlResource.mediaType = MediaType.VIDEO;
                    videoElement = mediaFactory.createMediaElement(urlResource);               
            else if (source is MediaResourceBase)
                videoElement = mediaFactory.createMediaElement(MediaResourceBase(source));
            else if (source is org.osmf.elements.VideoElement)
                videoElement = source as org.osmf.elements.VideoElement;
            // reset the visibilityPausedTheVideo flag
            playTheVideoOnVisible = true;
            // set up videoPlayer.autoPlay based on whether this.autoPlay is
            // set and whether we are visible and the other typical conditions.
            changePlayback(false, false);
            // if we're not going to autoPlay (or couldn't autoPlay because
            // we're hidden or for some other reason), but we need to seek
            // to the first frame, then we have to do this on our own
            // by using our load() method.
            if ((!autoPlay || !shouldBePlaying) && autoDisplayFirstFrame)
                load();
            // set videoPlayer's element to the newly constructed VideoElement
            // set the newly constructed videoElement's gateway to be the videoGateway
            videoPlayer.media = videoElement;
            if (videoElement)
                if (videoElement.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE) == null)
                    var layout:LayoutMetadata = new LayoutMetadata();
                    layout.scaleMode = scaleMode;
                    layout.verticalAlign = VerticalAlign.MIDDLE;
                    layout.horizontalAlign = HorizontalAlign.CENTER;
                    layout.percentWidth = 100;
                    layout.percentHeight = 100;
                    videoElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout);
                if (videoElement && !videoContainer.containsMediaElement(videoElement) )
                    videoContainer.addMediaElement(videoElement);
            else
                // if our source is null, let's invalidateSize() here.
                // if it's a bad source, we'll get a playbackError and invalidate
                // the size down there.  If it's a good source, we'll get a
                // dimensionChange event and invalidate the size in there.
                invalidateSize();

    See my FAQ*:
    http://www.macmaps.com/macosxnative.html#SCANNER

  • Amazon Kindle problem using Flash Builder 4.6

    Is there a way to specify a version of Air 2.7 using Flash Builder 4.6?  This would be handy for getting apps accepted by the Amazon App store for the Kindle.  Recently, I had an app accepted into the Amazon App store.  However, the App needs to use a version of Air that preceeds Air 3.1.  The version that I was advised to use is
    Adobe AIR v. 2.7.1.1999.
    I tried changing the 2nd line in the prog-app.xml file from:
    <application xmlns="http://ns.adobe.com/air/application/3.1">
    to
    <application xmlns="http://ns.adobe.com/air/application/2.7">
    However, this change led to an error:
    "See details for more information.
      Namespace 2.7 in the application descriptor file should be equal or higher than the minimum version 3.1 required by Flex SDK. "
    I recall that there was a temporary workaround for a similar problem with the Blackberry tablet OS.  The Blackberry OS problem was later solved and the fix is no longer necessary.  Perhaps, we need a work around for the Amazon Kindle to force the Flash Builder 4.6 to compile a release with Air 2.7.1.xx?
    Any ideas how to make this happen?

    Hello,
    did you ever find a solution?
    thanks.

  • I get a a message "javascript: void (0)" when I turn on online radio. This problem is related also with other browsers. I reinstalled java but nothing changed

    This problem is related also with chrome, opera and explorer. I reinstalled java but nothing changed

    To avoid confusion:
    *http://kb.mozillazine.org/JavaScript_is_not_Java
    Note the javascript: void(0); is often use as a placeholder URL to indicate that an onclick event is tied to the link to do the actual action.<br />
    If JavaScript is blocked for some reason then this javascript: void(0); links comes into view.
    Make sure that you do not block JavaScript.
    *http://kb.mozillazine.org/JavaScript
    Also make sure that your security software isn't blocking JavaScript if it happens in other browsers as well.
    You can try these steps in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Problem Using Flash FLV Video Via Dreamweaver CS3

    I have been unable to get my FLV video to play on my website.
    I seem to have two problems:
    1) I want the FLV file to be hosted in a different domain to
    the website itself (for bandwidth reasons) and it doesn't want to
    do that!
    2) I would prefer to use Flash skins rather than Dreamweaver
    skins as I want to offer a full-screen option but I cannot get them
    to work!
    If I host the FLV file on the website domain, the video plays
    ok. If I change the file location in the Properties of the movie to
    become the FLV located on the other domain (using full path
    http://<etc>flv) then nothing
    displays on that part of the page. Firebug tells me it has loaded
    the AC_RunActiveContent.js and FLVPlayer_Progressive.swf but it
    makes no mention of the skin file or the flv file itself ... it is
    as if it just simply has not bothered with it! I suspect I am
    missing something obvious but cannot find it. All help would be
    appreciated. By the way, I have loaded up a crossdomain.xml file to
    the root of the domain that hosts the flv file but that didn't seem
    to make any difference!
    The second challenge is that ideally I would like to use a
    Flash skin so that I can have a full-screen option and so that I
    can have the menu bar under the video itself. However, I can't even
    get that option to work when I host the whole lot on the normal
    webserver! I am suspecting that it might be something that might
    suddenly start working when I fix problem 1. However, if anybody
    has any links to a page that provides simple instructions about how
    to do this task I would greatly appreciate it!
    Many thanks for your help!

    1) Why not post your video to YouTube or Google Video and
    then embed the
    code they provide into your website. This way their servers
    carry the
    bandwidth for you and the scripted embed code will work on
    your site.
    2) If Video sharing isn't an option, and you need more
    bandwidth, you can
    get domain hosting for as little as $4.95 - 6.95/month at
    Bluehost,
    Lunarpages or Web Hosting Pad.
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Problems installing Flash player with IE

    I am having problems with installing the macromedia Flash
    player on Internet Explorer 6 on Windows 2000 pro. However the
    thing is that with Firefox the flash player works fine. I tried
    uninstalling and reinstalling the flash player with no success. The
    install program will tell me flash player is installed, however on
    every website with flash I get the square with the red cross in the
    upper corner.
    When browsing this forum I came across this thread:
    Forum
    thread .
    In this thread it was advised to use the uninstaller which
    can be found here:
    Uninstaller. However
    when I use this installer two files are left in the folder
    c:\WINNT\System32\Macromed\Flash. The two files are GetFlash and
    Flash9.ocx. When I try to remove the Flash folder manually I get
    the following error message: Can not delete the file Flash9.ocx The
    file is in use by another program. When I reboot and go the folder
    again I still get this message. Could this be a problem so that the
    Flash player will not install properly?
    I hope that someone could help me fix this problem. In the
    mean time I will use Mozilla Firefox as this browser does work how
    it's supposed to.

    Hi,
    Which windows version you are currently using ?
    If you are using Windows 8 or 8.1, then Flash Player for Internet explorer is updated by the windows update by Microsoft so you need to update your Windows to get the latest version of Flash player.
    Current version is 17.0.0.169
    -Varun

  • Any problem using PC fonts with Fontbook?

    Hi all.
    Are there any potential issues using PC fonts with Fontbook? I've downloaded a free internet font, ran the "Validate File" option, then loaded the font into Fontbook. Afterwards, I also ran "Validate Font" and it checked out okay.
    It seems to be working, but I'm wondering if there is cause for concern that maybe down the line something funny will happen?
    Any insight into this?
    B.

    It seems to be working, but I'm wondering if there is cause for concern that maybe down the line something funny will happen?
    No, a font is just a font. All PC .ttf and .ttc fonts work in OS X. Windows Type 1 PostScript fonts (the ones with matching .pfb and .pfm extensions) do not.
    The only real problem with free fonts is that the majority of them are not made well and can cause various problems because of it. Read section 14 of Font Management in OS X to see what those issues can be.
    The link, or one of the links above directs you to my personal web site. While the information is free, it does ask for a contribution. As such, I am required by Apple's rules for these discussions to include the following disclaimer.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

Maybe you are looking for

  • Possible Bug in "The Rules"

    After logging-in through the firewall, regardless of whether I am logged into the forum or not, when I click on the link in;     "Welcome to Lenovo's Discussion Community - Please note The RULES when posting." I get a log-in window requiring user nam

  • Advance filtering with Dreamweaver cs4, PHP and mysql

    Here is the problem: This is my query which gives me back no data. SELECT * FROM photos WHERE photoTypeID LIKE cat ORDER BY photoID DESC variable = cat Type = integer default value= -1 run time value = $_POST['cat'] If I change the default value to "

  • How to get xml tag name?

    Hi all I've selected some texts and I want to get its xml element name not root element. I've done this InterfacePtr<IXMLReferenceData> xmlRefData(Utils<IXMLUtils>()->QueryXMLReferenceData(textModel)); and I get only the document's root element name.

  • BT Aqua phone

    Hi - my BT Aqua handset has suddenly gone wrong - instead of the usual display there is only strange symbols and numbers.  There is a dialling tone and you are able to ring out.  I have tried new batteries but has no effect.  Does anyone have any ide

  • HT3743 how i can fix error 1015 in my 3g , pls help,,

    how i can fix error 1015 in my 3g , pls help,,