Load webpage in Flex extension for InDesign

Hi All,
I am implementing an extension for InDesign CS6 and CC using Flash Builder 4.6, Ext Builder 2.1.
The panel reads a text file which contains the url of a webpage and renders it in an HTML control.. It is working with most urls..
But sometimes it stops loading the page midway. I get the urls from my client.
Here is the code I am using,
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  layout="absolute"
  creationComplete="livepreview_creationCompleteHandler(event)">
<mx:Script>
protected function livepreview_creationCompleteHandler(event:FlexEvent):void
  var livePreviewFile:File = File.desktopDirectory.resolvePath("LivePreviewUrl.txt");
  if(livePreviewFile.exists)
       var fileStream:FileStream = new FileStream();
       fileStream.open(livePreviewFile, FileMode.READ);
       var livePreviewUrl:String = fileStream.readUTFBytes(fileStream.bytesAvailable);
       if(livePreviewUrl != "")
            livepreview.location = livePreviewUrl;
  else
  //TODO
  //Get some error error html url from server and use its value for location
  //livepreview.location = some error/hard coded url from server.;
</mx:Script>
<mx:VBox height="100%" width="100%" verticalAlign="middle" horizontalAlign="center">
  <mx:HTML id="livepreview" x="0" y="0" width="100%" height="100%"/>
</mx:VBox>
Is it possibe that background scripts executing in the webpage might be getting blocked by Flex causing the improper load?
Any way to overcome this?

If some property isn't available in Extension Builder environment, I think there is less that we can do. Perhaps there is any other control that might help me achieve what I want.
Any ideas?

Similar Messages

  • The list of extensions for InDesign now have a yellow triangle warning symbol in front of a good many of the extensions and when moused over i get one of two messages:  "Extensions may not function properly because it does not meet the dependency conditio

    The list of extensions for InDesign now have a yellow triangle warning symbol in front of a good many of the extensions and when moused over i get one of two messages:
    "Extensions may not function properly because it does not meet the dependency condition."
    OR
    Extension Status is not consistent with extension set configuration."
    The reason I opened the Extension Manager in the first place was to check to see if I had installed a third party extension.  And I was presented with these warning symbols.  I haven't added anything, I haven't done anything that would cause this.
    Does anyone know how to fix this???
    I am running OSX 10.9.5; Indesign CS6 version 8.0.2 And Adobe Extension Manager version  6.0.8.28.
    Thanks in advance!
    Nina

    Many InDesign pre-installed extensions (Those extensions you have immediately after InDesign installation) define dependency rules in their mxi files. Dependency means that one extension works well only if one or more other extensions are installed and enabled. If this condition is not met, the yellow triangle warning will be shown.
    You can select an extension with warning, click "Advanced" tag page in the lower right panel. You will see "This extension has dependency on: <extension name> ...". Check whether every extensions listed here are available and enabled. If not, enable them. Repeat these steps for all the extensions which have warning.

  • When trying to install an extension for InDesign CC 2014 I get an error message saying that the extension only works with version 7.0 or greater. My version is 10.0.0.7 x64 Build I was using this extension fine with InDesign CC

    When trying to install an extension for InDesign CC 2014 I get an error message saying that the extension only works with version 7.0 or greater. My version is 10.0.0.7 x64 Build I was using this extension fine with InDesign CCError message with InDesign CC 2014

    Used the 64bit version before CC 2014 as well so don't think that's the issue. Here is the text in the .mxi file if I have missed something:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <macromedia-extension id="PrintUI Tools" name="PrintUI Tools" requires-restart="true" version="3.0.0">
      <author name="PrintUI.com"/>
      <description/>
      <license-agreement/>
      <products>
        <product maxversion="" name="InDesign" primary="true" version="7.0"/>
      </products>
      <files>
        <file destination="" file-type="CSXS" products="" source="PrintUIManagement.zxp"/>
      </files>
      <update url="http://printui.com/public/downloads/updates/printui_tools_update.xml"/>
    </macromedia-extension>

  • Why is my Flex extension for Photoshop out of focus while writing text?

    Hi All,
    I have a query. Why is my Flex extension for Photoshop out of focus while I am writing text to a layer? I noticed that if I am writing some text in a text layer, and while writing I try to do some action in my extension, like clicking a button, I am unable to do so.. Why is that? The extension doesn't receive any click events.. I have to select the layer and then perform any such action.. Please answer if there is a way of solving this issue..
    Thanks!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.<br />
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • How to send event from flex extension to other flex extension in InDesign?

    I have two extensions created using flex for InDesign. I need to send an event from one of these extensions and capture that event in other extension. How can it be done? Please help me.

    Hi,
    What I believe that data cannt be send from flex to java as hash maps...... we can send data from flex to java, but this data can be in form of array, string or boolean value..... Then the data can be send using ExternalInterface...............
    and if it is web application you need to use java script in between to communicate and if it is desktop application you can send data using MERAPI...
    MERAPI will act as a bridge for sending data from java to flex and vice versa... and you can send any type of data using merapi.

  • Indesign Events handling in my AIR CS Extension for Indesign

    Hello,
    I wanted to be able, from my indesign extension developped with CS Extension Builder in Actionscript/AIR, to catch the events defined in com.adobe.indesign.Event.* and handle them in this. same extension
    How Am i supposed to do that ? I can't find a way.
    And in the same idea, is it possible to catch an event of the type "when user double click on a frame in an opened indesin document" or anything like that ?
    Here is what i tryed in my actionscript code for a simple AFTER_OPEN event i tried to catch :
    this.app.eventListeners.add(com.adobe.indesign.Event.AFTER_OPEN, afterOpenHandler);
    (where this.app = InDesign.app;)
    and
    private function afterOpenHandler(e:Event):void {
    //handling event code here
    But it was not a real surprise when it drops an error : the add() function doesnt take a simple function name as second parameters like you do in actionscript, but an "Object" or a "javascript function". How Im supposed to handle this event in my actionscript now ? is this only possible ?
    Any thoughts ?
    Thanks in advance for your time !
    Lionel
    PS: I also tried a dozen unsuccessful attempt like Casting my function as an Object Type in the eventListeners.add() arguments and so on....

    Ok, Now i get it. I need to use the Host adapter "CSHA InDesign" to enable this kind of integration ! thanks to this link if anyone has the same questions:
    http://blogs.adobe.com/cssdk/2010/08/makesideheads-a-complete-indesign-cs5-panel-2.html
    Regards

  • How to load pdf in flex application for android os

    I loaded pdf in stagewebview which works good in IOS but not in android.
    The pdf file is loaded from the application storage directory.
    Please help me in resolving the problem. Thank you in advance.

    I think that my problem was i couldnt see pdf in my app running in ipad simulator of FlashBuilder in a flex mobile project in my laptop. what i read said that StageWebView create an instance of default browser in your machine. So that if we cant see pdf in ipad simulator is because also you cant see it in the default browser.
    Apart of this, i run this example in other machine, and i could see it, so its not problem of your code, but from your browser probably doesnt have pdf plugin installed. Correct me if i´m wrong.
    Cheers!

  • Need an extension for indesign cs2 that exports latest version of pdfs

    we're using ID CS2, no plans to go to a more recent version.  Currently latest version of pdf that it will export to is pdf 7.  current versions of web browsers don't display properly, i imagine because they're expecting a more recent version pdf.  is there an add-on for CS2 that will generate current pdf version ?

    You can search http://www.adobe.com/cfusion/exchange/index.cfm.

  • Can we use flex extension designed for Photoshop CS5 for Photoshop Touch as well?

    Hi..!!
    I was learning about the Photoshop Touch application and when I started to search about its SDK, I found that it uses the same SDK as Photoshop CS5. Is my information correct? Also, if this is the case, then if I want to design a flex extension for Photoshop Touch, then will the extension for Photoshop CS5 suffice? Or, will I have to design a separate one from CS5? Please guide me..
    Thanks!

    The Photoshop CS5 SDK includes functionality for creating interactions with Photoshop CS 5 from applications on Android™, Blackberry, and iOS mobile and tablet devices, as well as Mac OS and Windows® operating systems (an example would be the Adobe Nav app) basically the communication between an app and Photoshop. Flex extensions created for Photoshop would not automatically work with Photoshop Touch.
    Hope that helps
    -Dave

  • How to use a Flash/Flex GUI for DW Extensions

    I am creating a DW extension for an image and flash gallery.
    The extension will be accessible from the Insert menu. Once
    clicked, it would present me with a Flash/Flex form to
    search/browse for images/swf by file name or tags. Once I select an
    image/swf and clicked OK, it would insert into my webpage the
    absolute URL associated with the image/swf. The problem is I am not
    aware of how to create an extension with a Flash/Flex GUI.
    Any suggestions would be greatly appreciated.
    Thanks,
    srtr4k

    You should check out the Flash panels and Dialogs section of
    the Dreamweaver API reference. Here is a link.
    http://help.adobe.com/en_US/Dreamweaver/10.0_API_Ref/WS4FB61645-9C4E-4667-B6D4-0E5F553BEF4 F.html
    This gives you direct access to Flash panels and dialogs from
    the Dreamweaver Javascript API. Adobe is working on a document for
    how to create CSXS based Flash Extensions. CSXS based extensions
    only work as a floating panel that surface themselves in the
    Windows, Extensions menu.
    -Scott Richards
    Dreamweaver Team

  • Issue in setting Load balancing for Indesign Server CS5.5

    Hi All,
    I need to set up load balancing mechanism for Indesign Server CS5.5 on Windows Server 2008 R2(64 bit version).
    I have dutifully following all steps defined in "WORKING WITH LOAD BALANCING AND QUEUEING FOR ADOBE INDESIGN CS5 SERVER.pdf"
    After running Indesign server using batch file "startup-indesign-server-CORBA-4instances.bat" from "<ID_SDK>\samples\load-balancing-and-queuing-clients\indesignserver-startup-scripts", I get only one instance of Indesign Server running. How to run multiple instances of the INDD server ? Is running multiple instance has something to do with type of licensing ?
    Now I run Clover.cmd script, I get this screen. I have no idea why its not working. Please help. Please let me know, if the scenario is not clear and more information is required.
    Thnx,
    D

    This is the image after running clover.bat

  • Trying to load a Dreamweaver CS5 extension called Image Show Pro to mac operating system 10.9.2. Trial version worked fine, but when I try to load full version, Adobe Extension Manager crashes.  I have downloaded new Extension Manager for CS5. and still c

    Trying to load a Dreamweaver CS5 extension called Image Show Pro to mac operating system 10.9.2. Trial version worked fine, but when I try to load full version, Adobe Extension Manager crashes.  I have downloaded new Extension Manager for CS5. and still crashes. Anybody else experience this? email:[email protected]

    Hi bigd_bud,
    Can you see if the solutions in this post help?
    Re: Adobe Extension Manager crashes on mac 10.8
    Thanks,
    Preran

  • Can I delete extensions that do not load or am I looking for trouble

    After running EtreCheck I noticed that many extensions do not load.  So my question is: Can I delete extensions that do not load or am I looking for trouble?
    Here is the EtreCheck report:
    Problem description:
    slow with Yosemite
    EtreCheck version: 2.1.8 (121)
    Report generated February 19, 2015 at 12:11:22 PM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        Mac Pro (Late 2013) (Technical Specifications)
        Mac Pro - model: MacPro6,1
        1 3 GHz 8-Core Intel Xeon E5 CPU: 8-core
        32 GB RAM Upgradeable
            DIMM1
                8 GB DDR3 ECC 1866 MHz ok
            DIMM2
                8 GB DDR3 ECC 1866 MHz ok
            DIMM3
                8 GB DDR3 ECC 1866 MHz ok
            DIMM4
                8 GB DDR3 ECC 1866 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en2: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        AMD FirePro D500 - VRAM: 3072 MB
        AMD FirePro D500 - VRAM: 3072 MB
            Thunderbolt Display 2048 x 1152
            Thunderbolt Display 2048 x 1152
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 2:10:13
    Disk Information: ℹ️
        APPLE SSD SM1024F disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 999.32 GB (760.04 GB free)
                Core Storage: disk0s2 999.70 GB Online
    USB Information: ℹ️
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        American Power Conversion Smart-UPS 3000 XL FW:691.18.D USB FW:7.3
        Prolific Technology Inc. USB-SATA Bridge
        Apple Inc. Display Audio
        Apple Inc. FaceTime HD Camera (Display)
        Apple Inc. Apple Thunderbolt Display
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        Apple Inc. FaceTime HD Camera (Display)
        Apple Inc. Apple Thunderbolt Display
        Apple Inc. Display Audio
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus_2
            Apple Inc. Thunderbolt Display
        Apple Inc. thunderbolt_bus_1
        Apple Inc. thunderbolt_bus_0
            Promise Technology, Inc. Pegasus2-R
                Drobo 5D
            Apple Inc. Thunderbolt Display
    Configuration files: ℹ️
        /etc/hosts - Count: 1
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/MacX Video Converter Pro.app
        [not loaded]    com.macxdvd.driver.goodSysAudioCapture (1 - SDK 10.10) [Click for support]
            /Library/Extensions
        [loaded]    com.TrustedData.driver.VendorSpecificType00 (1.7.0 - SDK 10.7) [Click for support]
        [not loaded]    com.blackmagic-design.desktopvideo.iokit.driver (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.desktopvideo.iokit.framebufferdriver (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.desktopvideo.multibridge.iokit.driver (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.driver.BlackmagicIO (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.driver.BlackmagicUsbIO (10.3.4 - SDK 10.9) [Click for support]
        [loaded]    com.drobo.SCSI.ThunderBolt (1.1 [70504] - SDK 10.8) [Click for support]
        [loaded]    com.promise.driver.stex (5.2.10 - SDK 10.9) [Click for support]
            /Library/Extensions/DeckLink_Driver.kext/Contents/PlugIns
        [not loaded]    com.blackmagic-design.desktopvideo.firmware (10.3.4 - SDK 10.9) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.5.3 - SDK 10.6) [Click for support]
        [not loaded]    com.FTDI.driver.FTDIUSBSerialDriver (2.2.14) [Click for support]
        [not loaded]    com.Maxtor.driver.PowSecDriver (4.2.7) [Click for support]
        [not loaded]    com.SiliconImage.driver.Si3124u (2.0.3) [Click for support]
        [not loaded]    com.Susteen.driver.PL2303 (1.2.0) [Click for support]
        [loaded]    com.airgrab.driver.AirGrabFirewallModule (3.0) [Click for support]
        [not loaded]    com.aliph.driver.jstub (1.1.2 - SDK 10.7) [Click for support]
        [not loaded]    com.alwaysthinking.thinkinghomeUSB (1.1.7) [Click for support]
        [loaded]    com.attotech.driver.ATTOiSCSI (3.4.1b1 - SDK 10.6) [Click for support]
        [not loaded]    com.cy.iokit.Morpheus (1.4) [Click for support]
        [not loaded]    com.detto.iokit.M2MantiClassic (2.1) [Click for support]
        [not loaded]    com.devguru.driver.SamsungComposite (1.4.26 - SDK 10.6) [Click for support]
        [loaded]    com.globaldelight.driver.BoomDevice (1.1 - SDK 10.1) [Click for support]
        [not loaded]    com.hzsystems.driver.CDSDAudioCaptureSupport (1.5) [Click for support]
        [loaded]    com.hzsystems.terminus.driver (4) [Click for support]
        [not loaded]    com.perceptiveautomation.indigo_overrides.kext (1.0.0d1) [Click for support]
        [not loaded]    com.prolific.driver.PL2303 (1.2.1) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.33) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.33) [Click for support]
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.shed.PowerLinc.kext (1.0.0) [Click for support]
        [not loaded]    com.shed.PowerLincCU.kext (1.0.0) [Click for support]
        [not loaded]    com.shed.cm15.kext (1.0.0) [Click for support]
        [not loaded]    com.smithmicro.nke.NetBlockade (4.0) [Click for support]
        [not loaded]    com.wdc.driver.IOFireWireWDHID (1.1.2) [Click for support]
            /System/Library/Extensions/IOFireWireMxBt.kext
        [not loaded]    com.maxtor.iokit.IOFireWireMxBt (3.0.0) [Click for support]
            /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
        [not loaded]    com.devguru.driver.SamsungACMControl (1.4.26 - SDK 10.6) [Click for support]
        [not loaded]    com.devguru.driver.SamsungACMData (1.4.26 - SDK 10.6) [Click for support]
        [not loaded]    com.devguru.driver.SamsungMTP (1.4.26 - SDK 10.5) [Click for support]
        [not loaded]    com.devguru.driver.SamsungSerial (1.4.26 - SDK 10.6) [Click for support]
            /Users/[redacted]/Library/PreferencePanes/Contents/PlugIns/TechTool Pro 7.app
        [not loaded]    com.micromat.driver.spdKernel (1 - SDK 10.8) [Click for support]
        [not loaded]    com.micromat.driver.spdKernel-10-8 (1 - SDK 10.8) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [running]    com.blackmagic-design.DesktopVideoFirmwareUpdater.plist [Click for support]
        [running]    com.micromat.TechToolProAgent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [running]    com.attotech.iscsid.plist [Click for support]
        [running]    com.backblaze.bzserv.plist [Click for support]
        [loaded]    com.blackmagic-design.desktopvideo.XPCService.plist [Click for support]
        [running]    com.blackmagic-design.DesktopVideoHelper.plist [Click for support]
        [running]    com.blackmagic-design.streaming.BMDStreamingServer.plist [Click for support]
        [running]    com.datarobotics.ddservice64d.plist [Click for support]
        [running]    com.datarobotics.ddserviced.plist [Click for support]
        [running]    com.micromat.TechToolProDaemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.starfield.backupservice.plist [Click for support]
        [loaded]    com.teamviewer.Helper.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.backblaze.bzbmenu.plist [Click for support]
        [loaded]    com.bittorrent.uTorrent.plist [Click for support]
    User Login Items: ℹ️
        Cookie    Application  (/Applications/Cookie.app)
        Network Speed Monitor    Application  (/Applications/Network Speed Monitor.app)
        CleanAgent    Application  (/Applications/Clean.app/Contents/Resources/CleanAgent.app)
        SpeechSynthesisServer    Application  (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
        ClamXav Sentry    Application  (/Applications/ClamXav.app/Contents/Resources/ClamXav Sentry.app)
    Internet Plug-ins: ℹ️
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.1001 - SDK 10.7 [Click for support]
        Scorch: Version: Unknown - SDK 10.2 [Click for support]
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        DirectorShockwave: Version: 11.0.3r472 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
        AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        CANONiMAGEGATEWAYDL: Version: 3.1.0.2 [Click for support]
        DivXBrowserPlugin: Version: 2.2 [Click for support]
        Musicnotes: Version: 1.19.0 [Click for support]
        LogMeIn: Version: 1.0.1001 - SDK 10.7 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Google Earth Web Plug-in: Version: 6.1 [Click for support]
        AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.3.4.1 [Click for support]
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        OfficeLiveBrowserPlugin: Version: 12.2.8 [Click for support]
    User internet Plug-ins: ℹ️
        WbeTools64_14: Version: 1.0.23.53 © 2013 - SDK 10.6 [Click for support]
        WebEx: Version: 1.0 [Click for support]
        WebEx64: Version: 1.0 - SDK 10.5 [Click for support]
        Folx3Plugin: Version: 4.0 - SDK 10.6 [Click for support]
        fileEditTool64_15: Version: 1.0.35.65 © 2013 - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
        SaveFrom.net helper
    3rd Party Preference Panes: ℹ️
        Akamai NetSession Preferences  [Click for support]
        APC PowerChute Personal Edition  [Click for support]
        Backblaze Backup  [Click for support]
        Blackmagic Desktop Video  [Click for support]
        Flash Player  [Click for support]
        Java  [Click for support]
        TechTool Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 999.32 GB Disk used: 239.28 GB
        Destinations:
            Time Machine-Drobo [Local]
            Total size: 17.59 TB
            Total number of backups: 77
            Oldest backup: 2014-07-18 01:39:12 +0000
            Last backup: 2015-02-19 16:04:28 +0000
            Size of backup disk: Excellent
                Backup size 17.59 TB > (Disk size 999.32 GB X 3)
    Top Processes by CPU: ℹ️
            11%    WindowServer
             6%    Safari
             5%    Mail
             2%    firefox
             1%    bzfilelist
    Top Processes by Memory: ℹ️
        790 MB    firefox
        378 MB    mds_stores
        344 MB    clamd
        309 MB    Safari
        241 MB    Mail
    Virtual Memory Information: ℹ️
        21.17 GB    Free RAM
        6.67 GB    Active RAM
        4.12 GB    Inactive RAM
        2.38 GB    Wired RAM
        6.47 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 19, 2015, 10:00:50 AM    Self test - passed
        Feb 18, 2015, 03:49:35 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AgileTransCmd_2015-02-18-15493 5_[redacted].crash
        Feb 18, 2015, 03:44:30 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AgileTransCmd_2015-02-18-15443 0_[redacted].crash
        Feb 16, 2015, 12:12:51 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/mdworker_2015-02-16-121251_[re dacted].crash

    Starting your Mac in "Safe Mode" (see below) will load only Apple-provided kernel extensions. Observing its perfomance in that mode will be instructive.
    The problems you describe are likely to have been caused by garbage software of which "TechTool Pro" is only one example. That system has been altered from its factory configuration through the installation of several third party system modifications, any one of which can cause poor performance. Interaction between two or more is another possibility. Running a torrent client is another way of inviting malware intrusion.
    Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
    You must disable FileVault before you can start your Mac in Safe Mode.
    Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
    Merely starting your Mac in Safe Mode is not intended to resolve the problem, it's to observe its performance without certain additional components.
    To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

  • Need Notification for attaching the handler On Closing of the HTML Extension in Indesign CC 2014

    Need Notification for attaching the handler On Closing of the HTML Extension in Indesign CC 2014
    Hi,
    I need to process a couple of tasks after clicking on cross button(on top right corner of HTML extension) and before the Extension actually gets closed.
    As I Understand, Extension is using chromium browser.
    I tried attaching an event listener to "onbeforeunload" event of chrome but it suppresses any alerts being thrown and closes the extension, without waiting for
    background processes to complete.
    Is there a way through scripting/Plugin or any other way to achieve it?

    try the script at Adobe Community: InDesign 6 is crashing when attempting to open a particular document. All others are opening OK.
    I'd also try moving the pages to a new file, though I suspect that will crash too. Divide and conquer might work -- tray one of your operations on half the document at a time, then repeat by dividing any piece that fails, and so on, until you isolate a page, then use the same method to isolate an object (though it's possible you have a corrupt page).

  • Trying to load my Photoshop CS3 onto new Mac Book Air. Why does it ask for InDesign CS4 part way through?

    Loading my Photoshop CS3 onto new Mac Book Air. Why does it ask for InDesign CS4 part way through?  I have a CS5.5 disc. Will suffice?

    that doesn't make sense.  you will only be prompted for earlier adobe versions when installing a latter upgrade version.
    double check your versions.
    also, you might want to clean your computer before retrying to install, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

Maybe you are looking for