NPAPI ExternalInterface "issues"

So I'm writing an app which hosts the flash plugin using
NPAPI. Now, I've not got a javascript engine so I need to use
NPN_Invoke and its kins.
Unfortunately when I call out to from flash to the host e.g.
ExternalInterface.call( 'testfunc', 'arg1', 56, { 'some':
66, 'inter':'est' } );
I DON'T get NPN_Invoke called, instead it calls NPN_Evaluate
wrapping the call I'm trying to make in another javascript function
(__flash__toXML) which converts the return return value to XML,
which is frustrating as I don't have a javascript engine.
Now I've noticed that by changing the user agent I return,
flash changes how it queries values e.g. sometimes it invokes
top.location, sometimes it evaluates a javascript function (using
NPN_Evaluate) to retrieve it.
What I want to know is "Can I make Flash call Invoke rather
than Evaluate", Its soooo frustrating as I don't want or need a
javascript engine and there's no reason it shouldn't be able to.
I've found I can avoid the need to handle NPN_Evaluate when calling
into flash by invoking "CallFunction" and serializing the
parameters into xml, so I'll be amazed if I can't get calling out
to work without NPN_Evaluate.
Please help
Rich

bump!
Anyone? is there anyway to get flash to call invoke instead
of evaluate with a javascript string?
Help!
Rich

Similar Messages

  • ExternalInterface issue

    Hi to all!
    I'm working on an as2 fla and I have to play a movie clip when a user click on a html link placed in the html outside the swf.
    I did some trial and googled around but no way to get this to work. So i've tried to set up a simpler file to test the ExternalInterface.
    The thing i'm trying to do is this (see also the attached files):
    In flash, i placed on the stage a txt box on the first frame.
    Always on the first frame i coded this:
    flash.external.ExternalInterface.addCallback("funzia",ciccio)
    function ciccio(){
        txtProva.text='ciao'
    In the html, accordin to the suggestion of Adobe i coded in js this:
    function getFlashMovie(movieName) {  
        var isIE = navigator.appName.indexOf("Microsoft") != -1;  
        return (isIE) ? window[movieName] : document[movieName]; 
    function apriDati() { 
        getFlashMovie("prova").funzia();    
    When I try to invoke apriDati() with Firebug it fails with the following error:
    TypeError: getFlashMovie("prova").funzia is not a function source=with(_FirebugCommandLine){apriDati()\n};
    It seems it doesn't recognize the object
    If i Trace onlye the getFlashMovie("prova") i receive this output:
    [object, embed]
    and if i try getFlashMovie("prova")[0]
    <object width="550" height="400" align="middle" name="prova" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000">
    and if i try getFlashMovie("prova")[0].funzia it fails with the same error listed above.
    Any Ideas?
    Thanks in advance.
    Best regards and good weekend!!!!

    Hi kglad!
    Thanks for your reply. I've tried to set the additional parameter you suggested, but it still doesn't work.
    It's a very weird behaviour.
    I also tried to get referenced to the flash movie with:
    var flash=document.getElementById("FlashID")
    instead of using the method suggested by Adobe
    When I log the "flash" var in firebug, it returns:
    <object id="FlashID" width="550" height="400" title="externalfile" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="visibility: visible;">
    but when I try to perform:
    flash.callMe()
    it complains with:
    "TypeError"
    flash.callMe is not a function
    What do you think?
    This is only a flash issue, or there could be something also in the javascript side?
    Thanks in advance!
    Have a nice day!
    Best Regards!
    Luca

  • ExternalInterface issue  in as3

    Iam calling some JavaScript function with ExternalInterface in as3. That java script function set flashObj.SetVariable("userName", userName) .Icant get userName value but it is working in as2

    show your ei related code and your called javascript function.

  • ExternalInterface Issues

    JS Code:
    function iclicked()  {
         var myFlashMovie = document.getElementById("flashID");
         myFlashMovie.javaFn();
    AS3 Code:
    ExternalInterface.addCallback("javaFn", flashFn);
    function flashFn()  {
        // Do this
    The problem is that with this code, I receive an error that says javaFn is not a function.
    I was researching and I read that the problem may be that there may not have been enough time for it to completely load but I doubt that is the problem.
    I am willing to try this solution but how would I go about not going any farther, until five seconds have passed by?
    Are there any solutions out there?

    I changed the JS to:
    function iclicked()  {
         var myFlashMovie = window.document.flashID;
         myFlashMovie.javaFn();
    I am still getting the same error.
    I can't even do, "myFlashMovie.play()".

  • Is there a fix in the foreseeable future for the Adobe Acrobat NPAPI plugin issue?

    I cannot view any PDF web product and I am restricted when using some of my suppliers web sites due to the plugin being automatically disabled.
    According to the info this has been identified by yourselves and you are consulting with Adobe.

    The version of Reader that you have is extremely old (7.0.9). I would try to update to something more modern. [http://get.adobe.com/reader/completion/?installer=Reader_10.1.4_English_for_Mac_Intel http://get.adobe.com/reader/completion/?installer=Reader_10.1.4_English_for_Mac_Intel]

  • Flash 10 ExternalInterface and AJAX issues in IE

    Our site has been working fine for a year with Flash Player
    9.
    After we install Flash Player 10 the Flash to JS interface
    (ExternalInterface) appears NOT to work after new page content is
    loaded via an AJAX call.
    Example:
    1. Load site with Flash content - all is good and
    ExternalInterface works fine
    2. Click to load new content area containing Flash via AJAX
    call - page content loads ok
    3. The SWF's in the loaded content cannot use
    ExternalInterface. Even ExternalInterface.addCallback() call fails
    Only thing that changed appears to be the Flash version 10.
    We have founf one vista machine with Flash 10 that does work.
    All XP and other Vista machines fail. Firefox works just fine with
    Flash 9 and 10!

    I'm having the same exact problem. I've uninstalled,
    reinstalled, the works. Flash works great in my alternate browser,
    Opera, but not with IE.

  • ExternalInterface to Javascript/Html Issue

    AdobeTV showed a way to allow Flash to "talk" to an HTML page via javascript using the ExternalInterface method. There seems to be a catch. You need to use the ID of the swf in the parameters to have it all fit together and you can only put the ID="swf" into the IE section of the Dreamweaver generated javascript or into the non-IE section. Putting it in both didn't work and the author mentioned only putting in one of them specifically.
    Is there a way to do this that would work in both sets of generated Javascript?

    use:
    import ....ExternalInterface;
    ExternalInterface.call("yourJSfunction",<parameters>);

  • ExternalInterface call Issue

    Hi all,
    In Flex Builder3.0, am loading an External AS3.0 complied
    SWF( AVM2-AS3 swf) , which in turn loads an AVM1-AS2.0 complied
    SWF, This AVM1 movie has some External Interface call which calls
    some JavaScript function, which works Perfectly when I compile it
    in the Flex Builder in play mode, but when I try to do it in the
    debug mode External calls were not happening, I have a big problem
    in my App, since I need to see stuff in the
    console.....Interestingly my FireFox =V-2.0.0.16 Works nice in
    debug mode but not IE7 and FireFox 3
    Please let me know
    Regards,
    Amuthan Meganathan

    Change the value of "allowScriptAccess" param to "always" from "sameDomain" in the generated HTML, if you are testing your html from the local file system. If you host it on a webserver, this would not be required.
    Take a look @ http://helpx.adobe.com/flash-player/kb/changes-allowscriptaccess-default-flash-player.html #main_DIAGNOSIS for more details.
    -Dharmendra.

  • Prompt issue in obiee 11g

    Hi Gurus,
    In dashboard while selecting prompt getting 'Unable to get value  of the property 'viewstate':object is null or undefined error.i am using IE 9 browser.
    could you please let me know how to resolve this issue ?   Thanks in advance.

    See http://msdn.microsoft.com/en-us/library/gg622942%28v=VS.85%29.aspx
    Basically, IE9 breaks flash ExternalInterface calls if your flash component is embedded with an object tag with an embed tag fallback, and the object id and embed name is the same.
    The easiest workaround is to tell ie9 to render your page in IE8 Standards mode. To do this, insert this in the element:
    <!-- Enable IE8 Standards mode --> <meta http-equiv="X-UA-Compatible" content="IE=8" >
    Otherwise, you might just want to use the object tag only or embed tag only.

  • Another Mavericks Random Restart issue...

    I've seen lots of discussions about these issues, but nothing definitive that will simply fix our problems. For the last month I've been trying the various suggestions offered on these forums: turning off the Energy Saver stuff, auto logging in, etc, but still having intermittent random restart issues.
    I called Apple this morning and went through these trouble shooting steps with their tech:
    1) Reboot to Recovery Mode (cmd-r)
    2) Disk First Aid to repair (success)
    3) Disk First Aid to Verify Disk (no trouble found. Verified)
    30 minutes after hanging up the phone, BAM. Random restart again. Seems like I'm always pressing a keyboard key or mouse clicking when this happens. No matter if it's the trackpad, the wireless Apple Mouse, a USB mouse, the built in keyboard, or my external Matias keyboard.
    My next step is to appeal to the gear heads here for any assistance they can offer. Thanks in advance for any input you can provide. Here's my EtreCheck report and latest panic report:
    Fri Mar 14 13:47:54 2014
    panic(cpu 1 caller 0xffffff7f8626ffb0): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80fc329000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.35/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80f42b2d50 : 0xffffff8003e22fa9
    0xffffff80f42b2dd0 : 0xffffff7f8626ffb0
    0xffffff80f42b2ea0 : 0xffffff7f84aadeab
    0xffffff80f42b2f60 : 0xffffff7f84b7749a
    0xffffff80f42b2fa0 : 0xffffff7f84b7750a
    0xffffff80f42b3010 : 0xffffff7f84df6056
    0xffffff80f42b3140 : 0xffffff7f84b9ab39
    0xffffff80f42b3160 : 0xffffff7f84ab48fd
    0xffffff80f42b3210 : 0xffffff7f84ab2408
    0xffffff80f42b3410 : 0xffffff7f84ab3d57
    0xffffff80f42b34e0 : 0xffffff7f85903e1d
    0xffffff80f42b3660 : 0xffffff7f85903823
    0xffffff80f42b3670 : 0xffffff7f858c8af0
    0xffffff80f42b3680 : 0xffffff7f858c8b65
    0xffffff80f42b3690 : 0xffffff7f858aa931
    0xffffff80f42b36d0 : 0xffffff7f858acea5
    0xffffff80f42b3700 : 0xffffff7f858fd970
    0xffffff80f42b3780 : 0xffffff7f858e5ae0
    0xffffff80f42b37e0 : 0xffffff7f858e63da
    0xffffff80f42b3830 : 0xffffff7f858e68c0
    0xffffff80f42b38a0 : 0xffffff7f858e6fc8
    0xffffff80f42b38e0 : 0xffffff7f858b3fea
    0xffffff80f42b3a60 : 0xffffff7f858e3940
    0xffffff80f42b3b20 : 0xffffff7f858b2ad9
    0xffffff80f42b3b70 : 0xffffff80042cc7b6
    0xffffff80f42b3b90 : 0xffffff80042cddb1
    0xffffff80f42b3bf0 : 0xffffff80042cb81f
    0xffffff80f42b3d40 : 0xffffff8003eb6558
    0xffffff80f42b3e50 : 0xffffff8003e26bf1
    0xffffff80f42b3e80 : 0xffffff8003e139f5
    0xffffff80f42b3ef0 : 0xffffff8003e1e043
    0xffffff80f42b3f70 : 0xffffff8003ec976d
    0xffffff80f42b3fb0 : 0xffffff8003ef3b46
          Kernel Extensions in backtrace:
             com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f84a5e000->0xffffff7f84cc6fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f844bb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f84a4e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f84a0b000
             com.apple.driver.AppleMuxControl(3.4.35)[1BFF66C1-65E4-3BB3-9DEE-B61C3137019B]@ 0xffffff7f86262000->0xffffff7f86274fff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.35)[09897896-ACBD-36B5-B1D4-0CCC4000E 3B3]@0xffffff7f8625a000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f84809000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f844bb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f84a0b000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f8625d000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.2.4)[B0E6AAA7-E970-3D81-8B43-145D56 A3A4AC]@0xffffff7f84cd1000->0xffffff7f84f7afff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f84a5e000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f844bb000
             com.apple.GeForceTesla(8.2.4)[B6C71E9A-E304-354B-80AD-C69C9032D367]@0xffffff7f8 58a1000->0xffffff7f8596bfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f844bb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f84a4e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f84a0b000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f84a5e000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13C64
    Kernel version:
    Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Kernel UUID: 9FEA8EDC-B629-3ED2-A1A3-6521A1885953
    Kernel slide:     0x0000000003c00000
    Kernel text base: 0xffffff8003e00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 6346914490186
    last loaded kext at 2093957006128: com.apple.driver.AppleIntelMCEReporter          104 (addr 0xffffff7f86379000, size 49152)
    last unloaded kext at 2198032337307: com.apple.driver.AppleIntelMCEReporter          104 (addr 0xffffff7f86379000, size 32768)
    loaded kexts:
    com.quark.driver.Tether64          1.1.0d3
    com.iospirit.driver.rbiokithelper          1.24
    com.logmein.driver.LogMeInSoundDriver          1.0.3
    com.honestech.htvad          1
    com.squirrels.driver.AirParrotSpeakers          1.8
    at.obdev.nke.LittleSnitch          4052
    com.oxsemi.driver.OxsemiDeviceType00          1.28.13
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch          80.14
    com.apple.driver.AGPM          100.14.15
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.driver.AppleIRController          4000
    com.apple.GeForceTesla          8.2.4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleIntelHDGraphics          8.2.4
    com.apple.driver.AppleIntelHDGraphicsFB          8.2.4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMuxControl          3.4.35
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.iokit.SCSITaskUserClient          3.6.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBEHCI          660.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.2.3f10
    com.apple.driver.AppleMultitouchDriver          245.13
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.nvidia.classic.NVDANV50HalTesla          8.2.4
    com.apple.iokit.IOFireWireIP          2.2.6
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.driver.AppleGraphicsControl          3.4.35
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.nvidia.classic.NVDAResmanTesla          8.2.4
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.AppleUSBMultitouch          240.9
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOAHCISerialATAPI          2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto          1.0
    =========================
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.53 GHz Intel Core i5 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:13:4
    Disk Information:
              Hitachi HTS541010A9E680 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        1TBHD (disk0s2) / [Startup]: 999.35 GB (124.43 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. Built-in iSight
    FireWire Information:
    Thunderbolt Information:
    Configuration files:
              /etc/hosts - Count: 60
    Kernel Extensions:
              com.oxsemi.driver.OxsemiDeviceType00          (1.28.13 - SDK 10.5)
              at.obdev.nke.LittleSnitch          (4052 - SDK 10.8)
              com.iospirit.driver.rbiokithelper          (1.24 - SDK 10.6)
              com.squirrels.driver.AirParrotSpeakers          (1.8 - SDK 10.8)
              com.honestech.htvad          (1 - SDK 10.6)
              com.logmein.driver.LogMeInSoundDriver          (1.0.3 - SDK 10.5)
              com.quark.driver.Tether64          (1.1.0d3 - SDK 10.6)
    Startup Items:
              APCTrackerServer: Path: /Library/StartupItems/APCTrackerServer
              DynDNSUpdater: Path: /Library/StartupItems/DynDNSUpdater
              Squeezebox: Path: /Library/StartupItems/Squeezebox
    Launch Daemons:
              [System] at.obdev.littlesnitchd.plist 3rd-Party support link
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.adobe.SwitchBoard.plist 3rd-Party support link
              [System] com.adobe.versioncueCS4.plist 3rd-Party support link
              [System] com.barebones.bbedit.plist 3rd-Party support link
              [System] com.bombich.ccc.plist 3rd-Party support link
              [System] com.caphyon.awrserver.plist 3rd-Party support link
              [invalid] com.dymo.pnpd.plist
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.hidden.daemon.plist 3rd-Party support link
              [System] com.iospirit.candelair.daemon.plist 3rd-Party support link
              [System] com.iospirit.candelair.sync.plist 3rd-Party support link
              [System] com.lacie.desktopmanager.service.plist 3rd-Party support link
              [System] com.logmein.logmeinblanker.plist 3rd-Party support link
              [System] com.logmein.logmeinserver.plist 3rd-Party support link
              [System] com.logmein.raupdate.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
              [System] com.rogueamoeba.hermes.plist 3rd-Party support link
              [System] com.tether.plist 3rd-Party support link
    Launch Agents:
              [System] at.obdev.LittleSnitchUIAgent.plist 3rd-Party support link
              [System] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [System] com.adobe.AdobeCreativeCloud.plist 3rd-Party support link
              [System] com.adobe.CS4ServiceManager.plist 3rd-Party support link
              [System] com.adobe.CS5ServiceManager.plist 3rd-Party support link
              [System] com.extensis.FMCore.plist 3rd-Party support link
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.lacie.eventsactions.launcher.agent.plist 3rd-Party support link
              [System] com.logmein.logmeingui.plist 3rd-Party support link
              [System] com.logmein.logmeinguiagent.plist 3rd-Party support link
              [System] com.logmein.logmeinguiagentatlogin.plist 3rd-Party support link
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.c-command.SpamSieve.LaunchAgent.plist 3rd-Party support link
              [not loaded] com.cnet.ttengine.plist 3rd-Party support link
              [not loaded] com.facebook.videochat.[redacted].plist 3rd-Party support link
              [not loaded] com.spotify.webhelper.plist 3rd-Party support link
              [not loaded] ws.agile.1PasswordAgent.plist 3rd-Party support link
    User Login Items:
              Default Folder X Helper
              Dropbox
              FastScripts
              Fantastical
              Creative Cloud
    Internet Plug-ins:
              JavaPlugin2_NPAPI: Version: 14.9.0 - SDK 10.7
              AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              AdobePDFViewer: Version: 9.3.0 3rd-Party support link
              LogMeInSafari32: Version: 1.0.961 - SDK 10.7 3rd-Party support link
              Photo Center Plugin: Version: Photo Center Plugin 1.1.2.2 3rd-Party support link
              googletalkbrowserplugin: Version: 5.1.7.17873 3rd-Party support link
              iPhotoPhotocast: Version: 7.0
              DYMO Safari Addin: Version: (null) - SDK 10.4 3rd-Party support link
              DirectorShockwave: Version: 11.5.2r602 3rd-Party support link
              Yahoo! Installer 3: Version: 1.0.128 3rd-Party support link
              FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 3rd-Party support link
              AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              AmazonMP3DownloaderPlugin1017277: Version: AmazonMP3DownloaderPlugin 1.0.17 3rd-Party support link
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 3rd-Party support link
              npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 3rd-Party support link
              LogMeIn: Version: 1.0.961 - SDK 10.7 3rd-Party support link
              Google Earth Web Plug-in: Version: 5.2 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              DYMO NPAPI Addin: Version: 1.0 - SDK 10.4 3rd-Party support link
              Flip4Mac WMV Plugin: Version: 3.0.0.126   - SDK 10.8 3rd-Party support link
              o1dbrowserplugin: Version: 5.1.7.17873 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 45 Outdated! Update
              OfficeLiveBrowserPlugin: Version: 12.3.2 3rd-Party support link
    Safari Extensions:
              FastestTube: Version: 2.2.1.4
              Web Snapper: Version: 3.2
              AddThis: Version: 1.7
              Ultimate Status Bar: Version: 1.2.5
              1Password: Version: 4.1.0
              Make It Short: Version: 1.5
              Twitter for Safari: Version: 1.02
              Add To Amazon Wish List: Version: 1.4
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              InstantOn: Version: 7.1.2 - SDK 10.8 3rd-Party support link
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 3rd-Party support link
    3rd Party Preference Panes:
              Adobe Version Cue CS4  3rd-Party support link
              Aqueiss  3rd-Party support link
              TechTracker  3rd-Party support link
              Default Folder X  3rd-Party support link
              Flash Player  3rd-Party support link
              FlexCal  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              Growl  3rd-Party support link
              Java  3rd-Party support link
              Logitech Control Center  3rd-Party support link
              MacFUSE  3rd-Party support link
              Perian  3rd-Party support link
              RemoteTap  3rd-Party support link
              Secrets  3rd-Party support link
              SneakPeek Pro  3rd-Party support link
              SynergyKM  3rd-Party support link
    Old Applications:
              Aimersoft DVD Ripper:          Version: 2.6.1 - SDK 10.5 3rd-Party support link
              RockMelt:          Version: 0.9.50.549 - SDK 10.5 3rd-Party support link
              Tether:          Version: 2.1.0.3 - SDK 10.4 3rd-Party support link
              Capster:          Version: 1.6.5 - SDK 10.0 3rd-Party support link
              Screenium:          Version: 2.1.8 - SDK 10.5 3rd-Party support link
              DYMO Label:          Version: 8.4.1.1803 - SDK 10.4 3rd-Party support link
              Dialectic:          Version: 1.8.1 - SDK 10.5 3rd-Party support link
              Transmit:          Version: 4.1.7 - SDK 10.5 3rd-Party support link
              SuperDuper 264:          Version: 2.6.4 - SDK 10.4 3rd-Party support link
              SuperDuper!:          Version: 2.7.1 - SDK 10.4 3rd-Party support link
              Remote Buddy:          Version: 1.24.3 - SDK 10.4 3rd-Party support link
                        /Applications/Remote Buddy F/Remote Buddy.app
              /Library/Frameworks/DYMO/DLS8/Addins
                        DYMO Excel Addin:          Version: 8.4.1.1803 - SDK 10.4 3rd-Party support link
                        DYMO Word Addin:          Version: 8.4.1.1803 - SDK 10.4 3rd-Party support link
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Endicia:          Version: 2.13.4 - SDK 10.5 3rd-Party support link
                        /Applications/Endicia/Endicia.app
              Microsoft AutoUpdate:          Version: 2.3.3 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Aimersoft Helper Compact:          Version: 2.2.5.6 - SDK 10.5 3rd-Party support link
                        /Users/[redacted]/Library/Application Support/Helper/Aimersoft Helper Compact.app
              /Applications/iWork '09
    Time Machine:
              Skip System Files: NO
              Mobile backups: ON
              Auto backup: YES
              Volumes being backed up:
                        1TBHD: Disk size: 930.71 GB Disk used: 814.83 GB
              Destinations:
                        LaCie [Local]
                        Total size: 931.19 GB
                        Total number of backups: 21
                        Oldest backup: 2014-02-03 06:44:05 +0000
                        Last backup: 2014-03-13 14:14:06 +0000
                        Size of backup disk: Too small
                                  Backup size 931.19 GB < (Disk used 814.83 GB X 3)
                        OWC 4TB HD [Local] (Last used)
                        Total size: 4 
                        Total number of backups: 40
                        Oldest backup: 2013-05-29 23:16:35 +0000
                        Last backup: 2014-03-13 21:43:22 +0000
                        Size of backup disk: Excellent
                                  Backup size 4  > (Disk size 930.71 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  92%          Dropbox
                   5%          WindowServer
                   1%          EtreCheck
                   1%          Little Snitch Agent
                   0%          Creative Cloud
    Top Processes by Memory:
              369 MB          Safari
              147 MB          soagent
              147 MB          Dock
              139 MB          Finder
              123 MB          mds_stores
    Virtual Memory Information:
              2.66 GB          Free RAM
              3.49 GB          Active RAM
              762 MB          Inactive RAM
              1.11 GB          Wired RAM
              507 MB          Page-ins
              0 B          Page-outs

    You have a lot of 3rd party software installed which could be the problem. The below show in the crash report. Try uninstalling them using the developer's uninstall instructions.
    com.quark.driver.Tether64          1.1.0d3
    com.iospirit.driver.rbiokithelper          1.24
    com.logmein.driver.LogMeInSoundDriver          1.0.3
    com.honestech.htvad          1
    com.squirrels.driver.AirParrotSpeakers          1.8
    at.obdev.nke.LittleSnitch          4052
    com.oxsemi.driver.OxsemiDeviceType00    

  • Problem with ExternalInterface.call and Internet Explorer

    Hi, I´m developing a site, (
    www.gen-studio.com/avelart2
    ), and I´m using a swf to display a set of thumbs that when
    clicked show an item and its description on the browser, those
    items might be images or video, everything works fine with the
    images.
    And actually it works fine with the videos too, when using
    Firefox, but when I test the page on Internet explorer it just
    doesn’t work!
    On principle let me describe how it´s supposed to work,
    a thumbnail when clicked sends an id number to javaScript using
    ExternalInterface.call(“myFunction”,myId); -I´m
    using AS3 for the swf´s-
    the javaScript file has already loaded (ever since$(
    document).ready) a XML file which uses to match the id with a file
    and the description, if the item to show it´s a video, then it
    creates a variable which holds a string with the proper html to
    embed a swf (a swf movie player that resides just next to the HTML
    file), when loaded, the swf movie player uses
    ExternalInterface.call() to ask for the source of the video that
    has to play, and that function is as follows:
    setVideo: function(){
    alert("hola");
    return comun.miVideo;
    (The alert(“hola”); is just to test that the
    function is being called), which it is, but it returns null as a
    value instead of the proper string, and this happens only on
    internet Explorer, but works correctly on Firefox.
    I´ve been reading all day about the subject and found a
    few interesting things, which though have made me narrow my
    problem, they haven´t just provided me with a solution, what I
    found so far:
    -I must have in account flash security issues: Checked (my
    actionScript follows:)
    import fl.video.*;
    import flash.external.ExternalInterface;
    flash.system.Security.allowDomain("*");
    var vid:FLVPlayback = this.miPlayer;
    vid.source =
    flash.external.ExternalInterface.call("comun.setVideo");
    -ExternalInterface and Internet explorer don´t work
    properly when tested locally: Checked (I have a server on my PC and
    I´m testing the site as well in the above direction).
    -The object tag holding the swf must have a proper id
    attribute: Checked.
    -It´s super important the way the object tag is formed:
    Checked, and I also tested the tag separately (I put it directly in
    the HTML instead of adding it via javaScript) and it worked as
    expected in both Firefox and Internet Explorer, which leads me to
    believe:
    -I read somewhere that if you add the object tag by using
    innerHTML or appendChild, returning values from javaScript to swf
    won´t work, but I couldn´t find an explanation nor a
    solution.
    Well, as I said now I´ve been looking all day for an
    answer, so I really hope you can help me or give me some advice on
    the subject, thank you so much for your time!

    Hi! it solved itself !! (nahh, I wish), but it indeed had a
    solution, it was something quite simple, and I don´t really
    understand why it was not working in the first place, but here is
    the thing:
    I´m learning jquery and this is the first proyect
    I´m officially using it, so I was using
    $('#myDIV').append("string"); to embed the swf, (and it was working
    perfectly on Firefox), so since I had narrowed my problem to those
    lines, I decided to try some good-old-fashioned-javaScript and
    changed it for: var myDiv =
    document.getElementById('thatParticularDiv'); myDiv.innerHTML =
    ('string'); and it worked both in Firefox and IE !!!!!! :)
    I´m quite happy about it, and if someone knows
    what´s the issue with my jquery approach I would love to hear
    it. THANKS !!

  • SecurityDomain and Caching Issues

    I am running into some caching issues when setting the securityDomain of an imported SWF to match the calling SWF file and I was curious if anyone had any ideas on how to get around this issue.
    Here is the scenario:
    A.swf is launched on Domain A, it sends a Loader request for B.swf on Domain B.
    B.swf will be updated frequently so caching is disabled, A.swf however can be cached.
    B.swf has some ExternalInterface.calls so it requires being in the same securityDomain as A.swf otherwise it will receive a Security Error #2006.
    The code I am using for this is fairly straightforward:
    ActionScript Code:
    var request:URLRequest = new URLRequest("http://domainB/B.swf");
    var loader:Loader = new Loader();
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    loader.load(request, context);
    I believe B.swf is inheriting the caching setting of A.swf because it is residing in the same securityDomain. If I make a small update to B.swf and refresh A.swf in a browser it will not load the B.swf updates until I clear cache.
    If I get rid of the securityDomain context on the load it will always update B.swf with the most current version, but I run into security issues with ExternalInterface.
    ActionScript Code:
    var request:URLRequest = new URLRequest("http://domainB/B.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    I have tried appending random strings to the end of the URLRequest while using the securityDomain context but it will always used a cached version of B.swf. I have also tried loading B.swf into a ByteArray then using loadBytes on a Loader but that didn't work either.
    Any ideas are appreciated!

    Hello,
    #1
    are you using explicit call to flush method immediately afer you're writing data to reference to SharedObject?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject. html#flush()
    If not you could have different data read by different browsers sessions run at the same time (e.g. IE/FireFox both hosting your test Flash movies) - as data are flushed only when given Flash runtime session is to be terminated (e.g. movie is to be unloaded) and in other cases as outlined in documentation.
    #2
    the SharedObject is reference to binary file stored on local machine by Flash runtime (Air runtime too). It has nothing similar to web-fetched content to be cached:
    http://en.wikipedia.org/wiki/Local_Shared_Object
    regards,
    Peter

  • Strange IE ExternalInterface Bug: "Object does not support this property or method"

    We have an application on a relatively slow server (I mention
    the speed because it may be relevant).
    The app is flash 8 and uses ExternalInterface to call a
    javascript function in its parent page. It also used the
    ExternalInterface to receive a call from another function. These
    calls happens separately (the outbound one calls up a list view of
    items, clicking on an item calls up the details in the flash
    movie). In between the calls, the flash movie is hidden by moving
    it off screen using absolute positioning.
    On my local development box (Windows XPSP2) this works fine
    in both directions.
    On our production server (LAMP) this works fine in both
    directions in Firefox 1.5 and 2.0
    BUT while the outbound call from Flash to the page works fine
    in Internet Explorer 6 or 7, the call back from the page to the
    flash movie fails with the error messgage "Object does not support
    this method or property"
    We've tried not hiding the flash so it is always present on
    the page and still the browser > flash communication breaks in
    ie.
    We've tried using both the Adobe active content script and
    swfobject to embed the flash in the page with no difference in the
    resultset. In truth we've given up and gone to a two-page solution,
    reloading the flash from the start each time but I wondered if
    anyone had encountered a similar issue? Can't see why it would work
    perfectly in FF but not in IE.

    Not sure if this is your problem, but you do reference the
    Flash object
    differently, depending on the browser. In a video player we
    made, that uses
    JS to communicate back to Flash, I use a function like this
    to modify the
    variable depending on the browser:
    function changeVideo(xname){
    //ff
    if(window.vplayer){
    window.document["vplayer"].SetVariable("theXML", xname);
    window.document["vplayer"].GotoFrame(2);
    window.document["vplayer"].Play();
    //ie
    if(document.vplayer){
    document.vplayer.SetVariable("theXML", xname);
    document.vplayer.GotoFrame(2);
    document.vplayer.Play();
    The Flash is in a <div> named 'vplayer'
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • I have Firefox 36.0.4 and Adobe Flash 17 NPAPI but Flash Player does not appear in my plugins

    Thank you in advance for your help.
    I have a HP 6910p running Windows Vista Business, and updated Adobe Flash to 17 NPAPI, and Adobe Shockwave Player to 12.1 and I am running Firefox 36.0.4. Adobe Flash is completely missing from my plugins, but it does appear in my program manager. I can not play any video in Firefox at all. If I go to a video site like YouTube the screen freezes then this message appears - "Shockwave Flash may be busy or have stopped responding. You can stop the plugin now, or you can continue to see if the plugin will complete."
    I desperately need some help as I refuse to rely on the evil minions at Google by using Chrome which captures your every keystroke.
    I have checked and both Adobe Shockwave Player and Adobe Flash are installed correctly.
    Does anyone have a solution.

    The plugin uses the name "Shockwave Flash" which I do see in your "More System Details" so it must be set to either "Always Activate" or "Ask to Activate".
    This is some standard guidance that addresses the most common issues with the Flash Player plugin. I'm sure you've seen some of it before, but just in case:
    (1) If you have any recorders/downloaders that interact with Flash media make sure they are as up-to-date as possible, or disable them temporarily.
    (2) Disable hardware acceleration in Firefox and in Flash
    (A) In Firefox, un-check the box here:
    "3-bar" menu button (or Tools menu) > Options > Advanced > General > "Use hardware acceleration when available"
    That takes effect the next time you exit and start Firefox up again.
    (B) In Flash, right-click the media and choose Settings, then the first mini-tab and uncheck the box to use hardware acceleration. More information in this support article from Adobe: http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues
    (3) Disable protected mode (Windows Vista and higher)
    The protected mode feature of the Flash player plugin has security benefits, but seems to have compatibility issues on some systems. You can disable it by creating or editing a settings file. The following pages/posts provide different approaches for that:
    * Adobe support article under the heading "Last Resort": [http://forums.adobe.com/message/4468493#TemporaryWorkaround Adobe Forums: How do I troubleshoot Flash Player's protected mode for Firefox?]
    * Manual steps: https://support.mozilla.org/questions/968190?page=5#answer-509209
    * Batch file to automate the manual steps: https://support.mozilla.org/questions/982093#answer-518078 (alternate version of Carm's batch file with a few changes by me: [https://onedrive.live.com/?cid=f7d304d92388737d&id=F7D304D92388737D!336&ithint=file,.bat&authkey=!AP2FXW2Y_3BXZyo])
    Flash needs to completely unload from memory (exiting and starting Firefox up again might help) before this takes effect.
    Any improvement?

  • Mozilla Firefox and displaying PDFs with Adobe Acrobat NPAPI Plugin

    Hello Everyone,
    I have a strange issue going on in my enviroment with OS X clients, here are the relevent details and that steps I've performed.
    Clients are on fully patched 10.8.4 machines running Firefox 23.0 and Adobe Reader 11.0.03, the Adobe Acrobat NPAPI Plug-in (AdobePDFViewerNPAPI.plugin) is enabled under Add-ons Manager > Plugins. Under Preferences > Applications I have set PDFs to "Use Adobe Acrobat NPAPI Plug-in, Version 11.0.03 (in Firefox)".
    When viewing a PDF Adobe generates an error -> http://imgur.com/O4l5oTi
    I have already tried basic troubleshooting, uninstalling and reinstall both applications and preferences. I have deleted the mimeTypes.rdf and pluginreg.dat and had them recreated by Firefox. I believe this is a Adobe related issue as I initally was running Firefox 17.0.8 ESR and got this problem and then upgraded to 23.0 and continue to have the problem.
    Using the built-in PDF viewer works but this is not a fix but a workaround. Please advise if you need any further information, so far this is reproducable on all my machines running Firefox and Adobe Reader.
    Thanks,
    Kev

    Bump; The Firefox site says that Adobe "...does not yet maintain a browser plugin for viewing PDF files in Firefox on Mac OS X", per the support.mozilla.org site http://support.mozilla.org/en-US/kb/use-adobe-reader-plugin-view-or-download-pdf-files
    Can anyone from Adobe confirm this?

Maybe you are looking for