ShowDevTools method added by default

Hi, I'm building a InDesign CC 2014 HTML5 extension with EB3 and CSInterface-5.2.js. Whenever I debug this extension I get an error "Object #<Object> has no method 'showDevTools'  .
Even though I don't call any such method in my extension code but I see in debug session that EB add a default following lines of code at last of index.html.
<script>var path=decodeURI(__adobe_cep__.getSystemPath('extension'));path=path.replace('file://','');if(path.indexOf(':')!=-1){path=path.substring(1);}var fileName=path+'/debug';var result=cep.fs.stat(fileName);if(result.err==0){if(result.data.isFile()){var delRes=cep.fs.deleteFile(fileName);__adobe_cep__.showDevTools();}}</script>
I'm not sure how this code is being added while I believe that with CEP 5 Adobe has deprecated 'showDevTools' method and providing remote debugging option.
Thanks
MM

Exact same issue here using a Mac (10.9.5), Photoshop CC 2014, EB3, Chrome (Version 40.0.2214.111), Eclipse 4.4.1 (Luna) and CSInterface-5.2.js.
Any help would be greatly appreciated.
Thx,
Alex

Similar Messages

  • 11gR2 error: call a bounded task flow with method call as default activity

    hi all,
    We migrated several applications to the JDev 11g R2.
    There are 2 applications that contain a bounded task flow where we define Method Call as default activity.
    We need invoke specific actions before opening the page.
    They run well with 11gR1.
    But with *11G R2*, I can’t call directly this task flow with the following URL:
    http://127.0.0.1:7101/MyAPP/faces/adf.task-flow?adf.tfId=my-flow-def&adf.tfDoc=/WEB-INF/flows/my-flow-def.xml
    Message:
    *<SecurityUtils><invokeURLAllowed> ADFc : impossible to call directly the task flow '/WEB-INF/flows/ my-flow-def.xml #my-flow-def' with the help of URL*
    (original message: <SecurityUtils><invokeURLAllowed> ADFc : impossible d'appeler directement le flux de tâches '/WEB-INF/flows/ my-flow-def.xml #my-flow-def' à l'aide de l'URL.)
    Any idea?
    Thanks for you help

    Hi,
    Have a look at the task flow properties, in PatchSet1, a new feature "invokeURLAllowed" is added that prevents bounded task flows from being URL accessible for security reasons. You can swithc this feature on and off
    Frank
    Ps.: I though that bounded task flows that you call from a URL generally needed to have a viewActivity as the default activity

  • [svn:bz-trunk] 22429: Adding the default fallback of serializer and deserializer classes to amf deserializer and amf serializer

    Revision: 22429
    Revision: 22429
    Author:   [email protected]
    Date:     2011-09-07 08:04:46 -0700 (Wed, 07 Sep 2011)
    Log Message:
    Adding the default fallback of serializer and deserializer classes to amf deserializer and amf serializer
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/io/SerializationContext.java

  • Adding a Default Reply-To Address

    Hello all,
    Is there any way to set a default reply-to address? I always want to send via .Mac but it won't let me set my redirection email address in the From. So I always want my reply-to to be an alternate address.
    Thanks,
    John

    the method shown in the thread about adding a message
    receipt
    http://discussions.apple.com/message.jspa?messageID=71
    3245#713245
    should also work for a default reply-to header (of
    course, you would use "Reply-To:" instead of
    "Display-Notification-To:" when running the command
    in the Terminal).
    I'd really like to have a Default Reply-To Address - have tried the suggestion above, but can't make it work.
    I quit Mail, opened Terminal, copied in
    defaults write com.apple.mail UserHeaders '{"Reply-To:"="[email protected]";}'
    pressed return. Re-opened Mail, but no joy.
    (I tried it with and without a colon after Reply-To.)
    Is there a step I'm missing?
    Thanks for any help.

  • Adding a Default value to the Filter in a Workbook

    Hi,
    I have created a workbook in BI 7.0.  In the Filter, for a variable its displaying '#' as default value, but i want to display one of my variable values there.
    I added this value in the 'Default values' tab of the variable in the Query Designer.  After saving the query, i went to workbook, clicked on the Filter button, changed to design mode, clicked on the Filter pane, assigned the query as the Infoprovider& saved the workbook.  But still i am getting the '#' in my Filter. 
    I closed the workbook, opened it again & refreshed it but still i couldnt see the variable i added.  Am i missing any other thing?  Please guide me.  Thanks for your time.
    Regards,
    Murali

    Hi,
    adding a value as default value for a variable is only relevant for the selection screen.
    If u want to define # in the navigation pane u can do that there and save the workbook.
    Then # is saved as filter on workbook lvl, but its changeable by the user.
    Hint: In analysis mode disable "initial query view on refresh" in dataprovider settings of the analysis grid.
    Regards
    Tobias
    P.S. Giving points is the way to say thx in SDN!!!
    Edited by: Tobias on Jun 6, 2008 7:50 AM

  • Need help adding a default file name in a file chooser of save dialog type

    I need to create a file chooser with save dialog type, how can I add a highlighted default file name into the File Name textfield? As in Microsoft Word, when you want to save a document, a default file name Doc1.doc will appear in the File name text field of the file chooser even when you change to other directories.

    For JRE 1.4.0 you can use this fix:
    public class FileChooserFix implements PropertyChangeListener {
      private String fileName;
       * @see PropertyChangeListener
      public void propertyChange(PropertyChangeEvent ev) {
        JFileChooser chooser = (JFileChooser)ev.getSource();
        if (JFileChooser.FILES_ONLY == chooser.getFileSelectionMode()) {
          if (JFileChooser.SELECTED_FILE_CHANGED_PROPERTY.equals(ev.getPropertyName())) {
            File selectedFile = (File)ev.getNewValue();
            if (selectedFile != null) {
              // remember fileName of selected file
              fileName = selectedFile.getName();
          if (fileName != null &&
              JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(ev.getPropertyName())) {
            // reset selected file
            File directory = (File)ev.getNewValue();
            chooser.setSelectedFile(new File(directory, fileName));
       * Convenience method to create a fixed file chooser.
       * @return      fixed file chooser
      public static JFileChooser create() {
        JFileChooser chooser = new JFileChooser();
        chooser.addPropertyChangeListener(new FileChooserFix());
        return chooser;

  • Import parameter to method does not default when executed

    Hi Everybody...i have a method with import parameter IV_DATE type SY-DATUM default SY-DATUM.
    When i execute the method the system date does not default...the IV_DATE field is blank(Spaces). Is there anybody that can help. This is very strange.
    Thanks in advance.

    Hi,
    I created  a custom class and used date as exporting parameter
    I am able to get the date value. Please see screen shot for reference.
    Regards,
    Rafi

  • NavigateToURL where URLRequest method = POST always defaults to GET

    Hi there
    I'm trying to invoke a PHP URL using the HTTP POST method combined with parameters to pass to a form. The test app is an AIR application as per the code below. Whilst the default browser is launched with the URL specified, my issue is that the method used at runtime is always HTTP GET not POST. I'm not sure what I'm doing wrong. I'd be really grateful if somebody could review and point out my mistake!
    Many thanks
    Ed
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
    <![CDATA[
    import flash.net.navigateToURL;
      private function newWin(url:String):void {
                    var urlRequest:URLRequest = new URLRequest(url);
    var variables:URLVariables = new URLVariables();
        var rhArray:Array = new Array(new URLRequestHeader("Content-Type", "text/html"));
    urlRequest.requestHeaders = rhArray;
                variables.username = "admin";
                variables.password = "admin";
                variables.domain   = "Default";
                urlRequest.data = variables;               
    urlRequest.method = "POST";
                    navigateToURL(urlRequest);
    private function buttonclick() : void
    this.newWin("http://10.0.5.176/contactq/index.php");
    ]]>
    </mx:Script>
    <mx:Canvas id = "myCanvas" height="400" width="400">
    <mx:Button id="myButton" click="buttonclick();" x="169" y="166" width="91" label="Invoke URL"/>
    </mx:Canvas>
    </mx:WindowedApplication>

    Firefox stores certificates that a server sends automatically in cert8.db for easier access, but that can also cause conflict if servers sends a certificate that is already stored.

  • Role being added as default to all

    Hi all,
    I am facing a strange issue where one role (Say Role1) nodes is displayed by default for every user though the role not added to all users. This goes for Super users as well. I checked my user User1 (a super_admin_role) in which the nodes is displayed by default along with Admin nodes. User1 doesn't have Role1 assigned to it in its User master, still this node appears. I checked Everyone role, Everyone group but Role 1 is not added to any of these.
    What could be the reason and how can I overcome this (one option is to delete this role altogether and create a new role but that is my last respite).
    Rgds,
    Sree

    Hi Piyush, Puneet,
    Thank you for your response guys. The issue got resolved. The Authenticated group was assigned this particular role, hence every user who had been assigned this group had this role as well.
    thank you again,
    Rgds,
    Sree

  • PCUI Event ADD_LINE,  adding programmed defaults vs fixed defaults

    The event ADD_LINE creates a new blank line in the ODC with fixed default values when they are defined in the field group layout. 
    I have created a new table in the ODC that is to be linked to the focus object of the OIP, that is, the object_key of the object will be a parent key in the ODC table, and the object_key of the ODC will be generated.
    I want to progammatically add default values to the new line so that when it is first displayed, values from the selected search result object are defaulted to the ODC fields.  The Modify method appears to be able to add default values, execept this happens after the blank line has been created and the user has entered something. 
    This means that the fields are blank when the user first sees them.
    I want the new line to contain my selected values when it is first displayed.
    Is the CL_CRM_CONTEXT class intended to be used for this purpose?  I think I want the object_key in the OIP result to be passed as a parent_key to my table in the ODC.
    The PCUI Cookbook refers to the add_line event in
    section 5.3.1.2:  Creating a New Object in the ODP.
    The event ADD_LINE is raised.
    First the READ method with the parent object key is called.
    There is no READ method call with an initial object key for the new line itself.
    Next the default values from the blueprint tables are read. These fields are
    automatically included in the field list for the MODIFY method.
    There is also no PROCESS_EVENT method call for the raised event.
    The MODIFY method is called with initial object key. All fields with default values from
    the field group table plus all fields changed by the user are in the
    IT_CHANGED_FIELD &#8594; FIELD_NAME_TAB parameter.
    Please offer suggestions how to add dynamic defaults to a new line, or else create a custom event that loads the defaults in the PROCESS_EVENT method and then creates the new line, so that the user sees the defaults when it is first displayed.

    The event ADD_LINE creates a new blank line in the ODC with fixed default values when they are defined in the field group layout. 
    I have created a new table in the ODC that is to be linked to the focus object of the OIP, that is, the object_key of the object will be a parent key in the ODC table, and the object_key of the ODC will be generated.
    I want to progammatically add default values to the new line so that when it is first displayed, values from the selected search result object are defaulted to the ODC fields.  The Modify method appears to be able to add default values, execept this happens after the blank line has been created and the user has entered something. 
    This means that the fields are blank when the user first sees them.
    I want the new line to contain my selected values when it is first displayed.
    Is the CL_CRM_CONTEXT class intended to be used for this purpose?  I think I want the object_key in the OIP result to be passed as a parent_key to my table in the ODC.
    The PCUI Cookbook refers to the add_line event in
    section 5.3.1.2:  Creating a New Object in the ODP.
    The event ADD_LINE is raised.
    First the READ method with the parent object key is called.
    There is no READ method call with an initial object key for the new line itself.
    Next the default values from the blueprint tables are read. These fields are
    automatically included in the field list for the MODIFY method.
    There is also no PROCESS_EVENT method call for the raised event.
    The MODIFY method is called with initial object key. All fields with default values from
    the field group table plus all fields changed by the user are in the
    IT_CHANGED_FIELD &#8594; FIELD_NAME_TAB parameter.
    Please offer suggestions how to add dynamic defaults to a new line, or else create a custom event that loads the defaults in the PROCESS_EVENT method and then creates the new line, so that the user sees the defaults when it is first displayed.

  • Javamail adding some default properties for IMAP protocol

    Hi,
    I'm using Javamail API 1.4.2 to read emails using IMAPS and POP3S. It looks like Javamail API adding some properties by default.Though I'm using the IMAPS to get mail store it's adding some plain imap related properties like mail.imap.fetchsize, mail.imap.statuscachetimeout, mail.imap.appendbuffersize and mail.imap.minidletime+.
    see the debug trace below:
    DEBUG: setDebug: JavaMail version 1.4.2
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc]
    DEBUG: mail.imap.fetchsize: 16384
    DEBUG: mail.imap.statuscachetimeout: 1000
    DEBUG: mail.imap.appendbuffersize: -1
    DEBUG: mail.imap.minidletime: 10
    DEBUG: trying to connect to host "myhost", port 993, isSSL true
    * OK The Microsoft Exchange IMAP4 service is ready.
    A0 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI IDLE NAMESPACE LITERAL+
    A0 OK CAPABILITY completed.
    IMAP DEBUG: AUTH: NTLM
    IMAP DEBUG: AUTH: GSSAPI
    DEBUG: protocolConnect login, host=myhost, user=myuser, password=<non-null>
    A1 LOGIN myuser password
    A1 OK LOGIN completed.
    A2 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI IDLE NAMESPACE LITERAL+
    A2 OK CAPABILITY completed.
    IMAP DEBUG: AUTH: NTLM
    IMAP DEBUG: AUTH: GSSAPI
    DEBUG: connection available -- size: 1
    A3 SELECT INBOX
    * 0 EXISTS
    * 0 RECENT
    * FLAGS (\Seen \Answered \Flagged \Deleted \Draft $MDNSent)
    * OK [PERMANENTFLAGS (\Seen \Answered \Flagged \Deleted \Draft $MDNSent)] Permanent flags
    * OK [UIDVALIDITY 184] UIDVALIDITY value
    * OK [UIDNEXT 13] The next unique identifier value
    A3 OK [READ-WRITE] SELECT completed.
    I have tried Jamail API 1.4.3 but the result is same. I think the protocols for IMAPS should be *mail.imaps.fetchsize, mail.imaps.statuscachetimeout,
    mail.imaps.appendbuffersize* and mail.imaps.minidletime+.
    Here is the code I have used to get the store
    public static Store getMailStore(String protocol, String emailServerHostName,
    int portNumber, String userName, String password) throws MessagingException {
    Store store;
    Properties props = new Properties();
    boolean isSessionDebugEnabled = false;
    props.put("mail.host", emailServerHostName);
    props.put("mail.port", portNumber);
    props.put("mail.user", userName);
    props.put("mail.store.protocol", protocol);
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(true);
    store.connect(emailServerHostName, portNumber, userName, password);
    return store;
    public static void main(String[] args) {
    Store store = null;
    try {
    store = getMailStore("imaps", "myhost", 993, "myuser", "password");
    Folder inboxFolder = openFolderForRW(store, "INBOX");
    } catch (MessagingException e) {
    e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
    Am I need to add these properties manually for IMAPS?
    Thanks,
    PrasadKT

    It's just laziness in the code that prints out the debug information.
    It's using the correct property, but the debug output hardwires the
    property name. Yes, I should clean it up...

  • Not able to open Dataset when adding Encoding Default

    Hi Experts,
    I have an urgent requirement . I wanted to make one programs Unicode Complaint
    I had to change the statement
      open dataset gv_string in text mode  for output.
    to
      open dataset gv_string in text mode encoding default for output.
    But after this change the sy-subrc is becoming 8 and not able to open the .Can any one please help
    Thanks
    Arshad

    HI,
    Maybe there is no authorization for you to write the file onto the app.server.
    Check with basis about your authorizations.
    Or could be the directory does not exist.
    Regards,
    Subramanian
    Edited by: Subramanian PL on Jun 27, 2008 1:24 AM

  • Podcast headers remain after deleting usnig the swip method added in 2.2

    I have a 2nd gen iPod Touch with firmware 2.2 and I am able to delete podcasts with the swip method and it says it deletes them and they are removed from the list.
    The problem is that if I shut the touch off and turn it back on, all of the podcasts I deleted are back in the list. They are still deleted because if I try to open one I get an error. It is really annoying that they reappear in the list even though they are deleted. I have to use iTunes to completely remove them from the list.
    Anyone else have this problem and is there a fix for it?
    Thanks

    That is strange and beyond me then. All I know is that after 2.2 arrived I stopped downloading podcasts on my computer and syncing to my Ipod and instead downloaded direct to my Touch via Wifi. At the time, I had some podcasts on my Touch that originated via a previous computer sync. It was these Podcasts that reappeared as what I called "phantom" podcasts after deleting directly on the Touch and powering down and then restarting.
    As I said, they kept reappearing no matter how often I deleted, however after I removed them from my computer resident iTunes and then resync'd the Touch they stopped reappearing.
    I also note that if you have any Wifi direct podcasts on your Touch and you sync it with iTunes, it will automatically transfer these podcasts to your computer resident iTunes and I found that these titles would also continue to reappear after being deleted on the Touch until again they were deleted from the computer resident iTunes and resync'd with Touch.
    So, all I can say is since I have adopted this processure I have no more phantom podcast titles reappearing after powerdown.
    Jeff

  • Adding a default program to open a file doesn't work

    After upgrading Adobe Photoshop cs3 to cs5, I select a jpeg image file and select "open with", looking for the application.  Not there, so I browse to find the application (CS5) and select it.  It does not add the application to the "open
    with" choices.  I was able to add Adobe Bridge to the choices.  Adobe support worked with me several times and says the problem is with the W7 account permissions.  Any ideas on this?  W7 Professional 64 bit 

    Hi,
    In order to change the default program, you need to know the file type. For example, .mp3 or .wav, or .docx.
    Instead of going to "set your default programs" , go to "associate a file type or protocol with a program. Click on the file extension and just click change program.
    If that does not work, this problem maybe due to the fact that the program has not registered itself on installation. A program typically registers itself on installation by means of a new entry in the system registry. It is possible to manually include
    registry entries provided you know what and where.
    Regards,
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Adding a default setting to Adobe Acrobat XI Standard

    I am creating a very large document (over 100 pages) where we would like people to check boxes throughout the document.  The current default setting is for an X to fill the box but we want a check mark.  How do I update the default setting to change it from an X to a check?  I've tried using Duplicate Across Pages and that didn't work either.

    No, there's no trial version of Standard. Here's Adobe's comparison: http://www.adobe.com/products/acrobat/product-comparison.html
    Get Pro if you intend think you'll be doing any JavaScript programming since there are a number of limitations that Standard imposes. You can create the same field types with Standard as with Pro and can configure the fields the same way.
    The editing tools in Pro are more extensive and include the Redaction, Preflight, and custom Actions (formerly Batch processing).

Maybe you are looking for