Indesign SDK colorspace reporting

Hello forum members,
I am writing a vb.net app using the Indesign SDK to create a new PDF file.  In this file is most likely text of varying color and a number of images that may be jpeg or pdf place into the Indesign document.  Is there a way for me to tell the number of colorspaces in the resultant document?  Sort of like PDF preflight, which would tell me all the colorspaces in the file?  Even if I have to check the colorspace of the image file after I add it to the document, I could run an array of the colorspace and I would already know the color of the text I am adding myself.  Any help is greatly appreciated.
Thanks!

Hi! Adobe seems to be very slow in granting access. After I had waited more than a week to be granted access i just tweeted to this guy: https://twitter.com/timothyspencer who seems to be a product manager for the InDesign SDK as he promised me to grant me access and voila i had it 2 days later. Maybe you should try the same.

Similar Messages

  • How to create table of contents in c# using indesign SDK CS5?

    Hi,
               Currently I am using adobe indesign SDK to implement a sample application. Here I need to write C# code to generate tabel of contents in a indesign page. Since I am new to indesign sdk, so I need help from you guys.
              Please send me some sample code to generate table of contents or any helpful link, which can help me in development.
    Thanks
    Chandra Prakash

    Please read the forum overview message.
    http://forums.adobe.com/community/indesign/indesign_sdk?view=overview
    In other words, C# is a scripting language. It has nothing to do with the SDK.
    Post scripting questions to the scripting forum.
    Dirk

  • Null pointer exception in com.crystaldecisions.sdk.occa.report.application.ControllerBase.checkViewReportRight

    I am testing BOE 4.0 with a simple jsp based on the samples.  The code is what I used to test BOE xi 3.1.  But I ran into some report display inconsistencies with 3.1 so I am trying 4.0.  The code below works in 3.1  But in 4.0, I get the report viewer screen coming up but get a null pointer exception coming to the screen.
    2014-06-18 13:48:01
    java.lang.NullPointerException
    at com.crystaldecisions.sdk.occa.report.application.ControllerBase.checkViewReportRight(ControllerBase.java:114)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.getPage(ReportSource.java:945)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.getPage(AdvancedReportSource.java:343)
    at com.businessobjects.report.web.event.PageListener.renderContentLocally(PageListener.java:394)
    at com.businessobjects.report.web.event.PageListener.getPage(PageListener.java:181)
    at com.businessobjects.report.web.event.PageListener.updatePage(PageListener.java:123)
    at com.businessobjects.report.web.event.UpdatePageEvent.processListener(UpdatePageEvent.java:47)
    at com.businessobjects.report.web.event.ViewerBroadcaster.broadcast(ViewerBroadcaster.java:109)
    at com.businessobjects.report.web.event.EventQueue.processEvents(EventQueue.java:53)
    at com.businessobjects.report.web.component.ViewerContainer.processEvents(ViewerContainer.java:1403)
    at com.businessobjects.report.web.WorkflowController.doEventProcessing(WorkflowController.java:353)
    at com.businessobjects.report.web.WorkflowController.doLifecycle(WorkflowController.java:255)
    at com.businessobjects.report.web.WorkflowController.doAsyncLifecycle(WorkflowController.java:106)
    at com.crystaldecisions.report.web.viewer.CrystalReportViewerUpdater._processHttpRequest(CrystalReportViewerUpdater.java:61)
    at com.crystaldecisions.report.web.ServerControl.processHttpRequest(ServerControl.java:345)
    at com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet.doUpdate(CrystalReportViewerServlet.java:156)
    at com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet.doPost(CrystalReportViewerServlet.java:144)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:646)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1040)
    at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
    at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:315)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
    at java.lang.Thread.run(Thread.java:662)
    Here is the AlwaysRequiredSteps_UnmanagedRas.jsp
    <%
    String path = "rassdk://C:\\reports\\asn.rpt";
    ReportAppSession ra = new ReportAppSession();
    ra.createService("com.crystaldecisions.sdk.occa.report.application.ReportClientDocument");
    ra.setReportAppServer("10.189.15.175:1566");
    ra.initialize();
    ReportClientDocument clientDoc = new ReportClientDocument();
    clientDoc.setReportAppServer(ra.getReportAppServer());
    clientDoc.open(path, OpenReportOptions._openAsReadOnly);
    %>
    Here is the OpenReport.jsp
    <%@ page contentType="text/html; charset=utf-8" %>
    <%@
       page import="com.crystaldecisions.sdk.occa.report.application.*,
      com.crystaldecisions.sdk.occa.report.data.*,
      com.crystaldecisions.sdk.occa.report.lib.*,
      com.crystaldecisions.report.web.viewer.*,
      com.crystaldecisions.sdk.occa.report.definition.*"
    %>
    <html>
    <head>
    <title>Preview Report</title>
    </head>
    <body>
    <%@ include file="AlwaysRequiredSteps_UnmanagedRAS.jsp"%>
    <%
      Tables oTablesCollection = clientDoc.getDatabaseController().getDatabase().getTables();
      for(int i = 0; i < oTablesCollection.size(); i++) {
          // We'll get two copies of the original table, change one, and use set table.
          ITable originalTable = oTablesCollection.getTable(i);
          ITable changedTable = oTablesCollection.getTable(i);
          IConnectionInfo newConnectionInfo = new ConnectionInfo();
          PropertyBag attributes = new PropertyBag();
          attributes.putBooleanValue(PropertyBagHelper.CONNINFO_SSO_ENABLED, false);
          attributes.putStringValue(PropertyBagHelper.CONNINFO_CRQE_DATABASETYPE, "JDBC (JNDI)");
          attributes.putStringValue(PropertyBagHelper.CONNINFO_DATABASE_DLL, "crdb_jdbc.dll");
          attributes.putStringValue(PropertyBagHelper.CONNINFO_CRQE_DATABASENAME, "");
          attributes.putBooleanValue(PropertyBagHelper.CONNINFO_CRQE_SQLDB, true);
          PropertyBag logonProperties = new PropertyBag();
          logonProperties.putStringValue("JDBC Connection String", "!oracle.jdbc.driver.OracleDriver!jdbc:oracle:thin:{userid}/{password}@10.189.12.248:1521:gbg");
          logonProperties.putBooleanValue("Trusted_Connection", false);
          logonProperties.putBooleanValue("Use JDBC", true);
          logonProperties.putStringValue("Database Class Name", "oracle.jdbc.driver.OracleDriver");
          logonProperties.putStringValue("Connection URL", "jdbc:oracle:thin:@10.189.12.248:1521:gbg");
          logonProperties.putStringValue("Server", "10.189.12.248");
          attributes.put(PropertyBagHelper.CONNINFO_CRQE_LOGONPROPERTIES, logonProperties);
          attributes.putStringValue("QE_ServerDescription", "10.189.12.248");
          newConnectionInfo.setKind(ConnectionInfoKind.CRQE);
          newConnectionInfo.setUserName("dsdone");
          newConnectionInfo.setPassword("dbuser");
          newConnectionInfo.setAttributes(attributes);
          changedTable.setQualifiedName("DSDONE" + "." + changedTable.getName());
          changedTable.setConnectionInfo(newConnectionInfo);
          // Commit the changes by calling the setTableLocation method from
          // the Database controller with the new table
          clientDoc.getDatabaseController().setTableLocation(originalTable, changedTable);
      // Create a Viewer object
      CrystalReportViewer viewer = new CrystalReportViewer();
      // Set the name for the viewer
      viewer.setName("Crystal_Report_Viewer");
      // Set the report source for the  viewer to the ReportClientDocument's report source
      viewer.setReportSource(clientDoc.getReportSource());
      // Process the http request to view the report
      viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
      // Dispose of the viewer object
      viewer.dispose();
      // Release the memory used by the report
      clientDoc.close();
    %>
    </body>
    </html>

    Hi Jason,
    Call any one of the methods
    viewer.dispose(); or clientDoc.close();
    Do not use both in BI 4.x version.
    Test the same and let me know if it works.
    Thanks,
    Prithvi

  • Com.crystaldecisions.sdk.occa.report.lib.ReportSDKException---- Error code:

    Hi,
    I am trying to run the crystal reports from a web-app in jboss app server (4.3.2).
    However on running the jsp the below error is received.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException---- Error code:-2147467259 Error code name:failed
    Please help me if you have come across such exception.
    Thanks,
    Lakshmi

    Hello guys,
    First thank you for your time and help !
    Today finally I was able to resolve my problem. I think that somehow my project (Java Dynamic Web Project) was corrupted becouse I wasn't able to find the report on runtime in any way (I try to put it in .ear as well). Now I have created one new fresh Dynamic Web project and add Crystal Reports facets to it. Then I put my report file in "reports" folder under WebContent and I was able to find it on runtime. My CRConfig.xml  is availiable under /WEB-INF/classes/ and it CONTAINS the following <reportlocation>../..</reportlocation> tag.
    I found very useful and helpfull articles here :
    http://publib.boulder.ibm.com/infocenter/iadthelp/v7r0/index.jsp?topic=/com.businessobjects.integration.eclipse.devtools.doc/developer/DisplayReports5.html
    http://publib.boulder.ibm.com/infocenter/iadthelp/v7r0/index.jsp?topic=/com.businessobjects.integration.eclipse.devtools.doc/developer/JRCReference3.html
    I still don't know what was the root couse for my problem. I hope that I never see this problem again
    Regards,
    Ivo
    Edited by: Ivo Kotev on Sep 21, 2011 10:35 AM

  • Load linkage error - "com/crystaldecisions/sdk/occa/report/data/Fields"

    We had installed and were using Crystal Reports for Eclpse with JBoss 4.2.  We recently upgraded to JBoss 5.1  Our crystal reports do not work from the web interface anymore.  The error we get is:
    Caused by: java.lang.LinkageError: loader constraint violation: loader (instance of org/jboss/web/tomcat/service/WebCtxLoader$ENCLoader) previously initiated loading for a different type with name "com/crystaldecisions/sdk/occa/report/data/Fields"
    It looks like there might be a class conflict with JBoss jars?  Any ideas on which jars to look at would be really appreciated.  Any other ideas or suggestions on what this error might be?
    Thank you.

    Based on the supported platforms document, I don't believe that JBoss 5.1 is on the list of application servers that are supported by Crystal Reports For Eclipse Version 2.  I believe that the versions of JBoss that are supported are 4.2 and 5.  By not supported, it means that SAP BusinessObjects hasn't tested and certified against these versions.
    As for the error, I'm not sure which jar file would be causing the conflict.
    Regards.
    - Robert

  • NoSuchMethodError in com.crystaldecisions.sdk.occa.report.reportsource.IRep

    Hi,
    I got the following Exception when I try to open a report from page server in CRS 2008.
    ]] Root cause of ServletException.
    java.lang.NoSuchMethodError: com/crystaldecisions/sdk/occa/report/reportsource/IReportSource.getPreferredViewingLocale()Ljava/util/Locale;
         at com.businessobjects.report.web.b.a.aJ(Unknown Source)
         at com.businessobjects.report.web.a.r.try(Unknown Source)
         at com.businessobjects.report.web.a.r.saveState(Unknown Source)
         at com.businessobjects.report.web.a.u.saveState(Unknown Source)
         at com.businessobjects.report.web.a.m.saveState(Unknown Source)
         Truncated. see log file for complete stacktrace
    The class I have imported is the following.
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource
    How to get rid of this exception?
    Thanks & Regards,
    Steve

    Hi Aasavari,
    This is the snippet of the java
                 String userName = "xxxxxxx";
                 String password = "xxxxxxxxx";
                 String auth = "secEnterprise";
                 String pageServer = "xxxxxxxxxxxx";
                 String report = "report";
                 ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
                 IEnterpriseSession enterpriseSession = sessionMgr.logon(userName, password, pageServer, auth);
                 // get info store from enterpise session
                 IInfoStore iStore = (IInfoStore) enterpriseSession.getService("InfoStore");
                 // get a collection of SI_ID from info store
                 IInfoObjects infoObjects = iStore.query("Select SI_ID From CI_INFOOBJECTS Where SI_NAME='" + report + "' And SI_INSTANCE=0");
                 // get the first SI_ID from the collection
                 IInfoObject infoObject = (IInfoObject)infoObjects.get(0);
                 // get report source factory from enterprise session
                 IReportSourceFactory reportFactory = (IReportSourceFactory) enterpriseSession.getService ("", "PSReportFactory");
                 // get report from report factory
                 Object reportSource = reportFactory.openReportSource(infoObject.getID(), Locale.ENGLISH);
                 HttpSession session = (HttpSession) FacesContext.getCurrentInstance().getExternalContext().getSession(true);
                 session.setAttribute("reportSource", reportSource);
    Below are the jsp source code.
    <%@ page import= "com.crystaldecisions.report.web.viewer.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.reportsourcefactory.RasReportSourceFactory"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSourceFactory2"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource"%>
    <%@ page import= "java.util.Date" %>
    <%
      Object reportSource = session.getAttribute("reportSource");
      CrystalReportViewer viewer = new CrystalReportViewer();
      viewer.setReportSource(reportSource);
      viewer.setOwnPage(true);
      viewer.setPrintMode(CrPrintMode.ACTIVEX);
      viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    %>
    Thanks & Regards,
    Steve

  • How to access third party plugin (inmath styles) in indesign SDK

    Hi All,
    I would like to know that how can we access third party plugins like inmath styles in indesign SDK using VC++. And also I got C++ header file from the third party to interface their style into indesign. Please help me how can we do that.
    Thanks
    Saravanan Rethinam

    You have the header file from inmath. It must contains something like this:
    #define kTPPrefixNumber 0x89ABC      // Prefix number of the plug-in issued by Adobe
    DECLARE_PMID(kInterfaceIDSpace, IID_ITHIRDPARTY, kTPPrefixNumber + 12)   //
    class IThirdParty : public IPMUnknown
         public:
         enum { kDefaultIID = IID_ITHIRDPARTY };
         virtual bool16 IsThirdPartyEnabled() =0;
    To use it in your code obtain an interface to object. You need to know where to look for it. Here is an example where it is on the Application boss:
    #include "../ThirdParty.h"
    InterfacePtr<IApplication> theApp(gSession->QueryApplication());
    InterfacePtr< IThirdParty > iThirdParty(theApp, UseDefaultIID());
    if (iThirdParty != nil) {
         // Safe to call functions on the Interface ...
         if (iThirdParty-> IsThirdPartyEnabled()) {

  • How to install plugin indesign sdk? [Help]

    hello
    I am looking for information on how to make a plugin for InDesign.
    if someone could help me or passing information on how to install the sdk and information about how to program indesign plugin.
    sorry for my English.
    salutations and thanks

    there are two ways of doing it
    - get the adobe flash builder (http://www.adobe.com/de/products/flash-builder.html) and the extension builder (http://www.adobe.com/devnet/creativesuite/cs-extension-builder.html) and start coding in flex (mxml & as)
    - get the indesign/incopy sdk (http://www.adobe.com/devnet/indesign/sdk.html) and start coding in objective-c / c++
    regards
    benjamin

  • "com.cristaldecisions.sdk.occa.report.reportsource.IReportSource"  missed

    Hi ,
    I am using Crystal Reports v XI with java. when i try to compile the java program , error is occured as
    package com.crystaldecisions.sdk.occa.report.reportsource does not exist
    import com.
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource;
    ^
    I looked for the jar file to set class path but I colud not find that. I think jar file containing this package might be missed. if so , How can i get it. is there any possibility to download that . please help me.
    [email protected]
    thank you.

    heee hiiii,
    i am also a new user of it....
    if u r using eclipse IDE
    u can download plugins and features of crystalReport for eclipse
    on www.businessobjects.com
    and then try out

  • Workshop: Adobe InDesign SDK Programming - How To Get Started

    Registration for InDesign SDK Dev Workshop in @CSBU Dev Summit in Seattle closes April 16. Don't delay - see below for links to registration info.
    Learning to program the InDesign SDK can easily take between two to six months of non-productive time.
    Kris Coppieters will return with his acclaimed one-day workshop that will slash the time it takes to get up to speed. This class is run in conjunction with the Developer Summit - there is an additional cost, and registration is handled separately from the Adobe Developer Summit.
    For more details and registration, go to
    http://www.rorohiko.com/wordpress/workshop-getting-started-with-the-indesign-sdk/
    Track: Product Specific Technologies
    Date, Time and Location:Monday May 3, 2010
    Starts at 9:00 am, lasts 8 hours
    Adobe University 1 
    Don't delay-register now!
    http://niemannross.host.adobe.com/2010csbuDeveloperSummit/conference/index.php
    http://niemannross.host.adobe.com/2010csbuDeveloperSummit/conference/eachSession.php?id=44
    Cheers,
    Kris

    FYI - Enrollment for the InDesign SDK course is about to close (official close date is April 16). Later enrollments will be accepted but might incur an extra fee.
    http://www.rorohiko.com/wordpress/2010/03/30/workshop-getting-started-with-the-indesign-sd k-2/

  • AIR 16.0.0.250 sdk Not reporting Iphone 6 resolution

    Hi,
    Air sdk16.0.0.250 sdk not reporting Iphone 6 resolution, instead it's reporting iphone 5 resolution in Ios Simulator.
    Platform:  mac osx 10.9.5 / xcode 6.1.1 / air Sdk 16.0.0.250
    Please advise?

    I think that on the previous beta reléase notes it said that on the simulator the info was still wrong, but right on an actual device... anyway, are you using the AIR SDK for Flex developers? After finding Re: Error creating arm64 compatible ANEs I wouldn't be surprised if the same happens here.

  • May 3 InDesign SDK Workshop in Seattle: Enrollment about to close

    Registration for InDesign SDK Dev Workshop in @CSBU Dev Summit in Seattle officially closes April 16. We still have spots available, but late enrollment causes us some logistical hassles.
    We might or might not accept latecomers, and there might be an administration fee.
    Learning to program the InDesign SDK can easily take between two to six months of non-productive time.
    Kris Coppieters will return with his acclaimed one-day workshop that will slash the time it takes to get up to speed. This class is run in conjunction with the Developer Summit - there is an additional cost, and registration is handled separately from the Adobe Developer Summit.
    For more details and registration, go to
    http://www.rorohiko.com/wordpress/workshop-getting-started-with-the-indesign-sdk /
    Track: Product Specific Technologies
    Date, Time and Location:Monday May 3, 2010
    Starts at 9:00 am, lasts 8 hours
    Adobe University 1 
    Don't delay-register now!
    http://niemannross.host.adobe.com/2010csbuDeveloperSummit/conference/index.php
    http://niemannross.host.adobe.com/2010csbuDeveloperSummit/conference/eachSession .php?id=44
    Cheers,
    Kris

    FYI - Enrollment for the InDesign SDK course is about to close (official close date is April 16). Later enrollments will be accepted but might incur an extra fee.
    http://www.rorohiko.com/wordpress/2010/03/30/workshop-getting-started-with-the-indesign-sd k-2/

  • Is InDesign SDK (CS4) cross platform

    Hi
    I am newbie to Adobe SDK and had a quick question.
    I remember reading in some documentation that Adobe SDK CS4 is "almost" cross platform. I am wondering if anyone here has experience with both windows and mac development to mention if that is the case or if there is some big differences. Also  I am wondering if to use InDesign SDK on Mac would I need to use objective C or would C++ work fine. Is using the SDK on Mac as simple as simplying copying the C++ files from windows and doing minor tweaks to them to compile?
    thanks
    Sam

    Hi
    Your source is the same for Windows and MAC
    The only difference is the compiler.
    Meaning if you are using source control, you can check out the same source om both Windows and Mac
    When dealing with files and Strings there are functions that only exist on Windows and some only on MAC
    But it's pretty straight forward....
    Of cource you have to download the SDK for both platforms

  • InDesign SDK Theory - REGISTER_PMINTERFACE

    I have another of my "theory behind the SDK" questions.
    Today I was playing around.  I created a pure virtual class looking something like this:
        class IMyClass: public IPMUnknown{}
    I then added the following defines to the project header:
        DECLARE_PMID(kClassIDSpace,                  kMyClassBoss,                kMYCPrefix + 3)
        DECLARE_PMID(kInterfaceIDSpace,            IID_IMyClass,                  kMYCPrefix + 0)
        DECLARE_PMID(kImplementationIDSpace, kMyClassImpl,                kMYCPrefix + 0)
        DECLARE_PMID(kActionIDSpace,                kMyClassAboutActionID, kMYCPrefix + 0)
    I then created the actual implementation of the class derived from the pure virtual class:
        class MyClass : public IMyClass {}
    I also included this in the implementation:
         CREATE_PMINTERFACE(MyClass, kMyClassImpl);
    Finally, in  MyClassFactoryList.h I did this:
         REGISTER_PMINTERFACE(TheClass, kMyClassImpl);   //  Note the value of the first argument.
    And in the calling plugin I included this line:
    InterfacePtr<IMyClass> iMyClass(static_cast<IMyClass *>(CreateObject(kMyClassBoss, IMyClass::kDefaultIID)));
    All of the above worked without a hitch.  Both plugins performed flawlessly.
    I then changed TheClass in REGISTER_PMINTERFACE to AbraCadabra just for the fun of it.  I chose that string because it was as far from MyClass as I could make it.  I cleaned, compiled and linked, and ran.  Once again, the plugins worked flawlessly.
    I have always thought that in REGISTER_PMINTERFACE() the first argument should always be the name of the class derived from the pure virtual class, that is, in the above example, MyClass.  What is the code really doing there?  Is there any special reason why it worked whne I used something different from MyClass, or am I correct in assuming that the first argument in the REGISTER macro does not matter, or maybe that it's just a placeholder?
    I am writing up documentation for using the SDK in my workplace so it would be nice if I heard from those of you who are more fluent in the SDK and the theory behind it.
    If you would rather reply directly instead of cluttering up the forum, my direct email address is John dot Darnell at Walsworth dot com.
    TIA!
    John

    FYI - Enrollment for the InDesign SDK course is about to close (official close date is April 16). Later enrollments will be accepted but might incur an extra fee.
    http://www.rorohiko.com/wordpress/2010/03/30/workshop-getting-started-with-the-indesign-sd k-2/

  • Extended Link sample in Windows InDesign SDK 5.5

    Hi,
    I am a newbie of InDesign Plug-in Development and have just gone through
    the "Chapter 2 - Getting Started with the InDesign SDK" of
    "<SDK>\docs\getting-started.pdf" in Visual Studio 2008 with InDesign 5.5.
    (Windows version: Microsoft 7 Professional 32-bit (Trad. Chinese))
    In trying another sample "ExtendedLink / ExtendedLinkUI", I can also successfully
    compiled these sample projects but fail to try them in InDesign 5.5.
    I have followed exactly the "MySQL Setup Guide" topic in "<SDK>\docs\reference\index.chm"
    in my development machine and have checked the database records are valid and the ODBC
    connection is successful. ( MySQL Server version: 5.5.14, MySQL ODBC version: 5.1.8 )
    According to "ExtendedLink" topic in "<SDK>\docs\reference\index.chm", in step 4 of
    "To use ExtendedLinkUI to place an asset......", the instruction is: "Fill in the fields for Authority
    and Table Name......". I put "mysql" in the field of Authority Name but cannot find the field of
    "Table Name". (Another field name is "Shared Folder" which I think do not relate with "Table Name")
    This makes me found nothing by following Step 6 and Step 8 and fail to try the sample.
    Any advice is much appreciated.

    Loading the TOC style gave me the fonts I wanted, but not the dots & the page numbers that were in the doc from which I loaded the styles.  My TOC has no page numbers now, but I do like the font.
    Is there a trick to getting the page number display with the dots to show up?

Maybe you are looking for

  • Using Tascam US-224 with Lion?

    Hi all, I actually did figure out how to use my Tascam US-224 with Mac OS Lion from an earlier post here. One has to reboot in 32 bit mode by holding down "3" and "2" during restart. Fine. But now I am getting an annoying ringing due to my US 224 bei

  • Sec & Hr SEC EDU CESS

    Dear Guru's, I have created excise invoice in which JAIX Sec & Hr Sec Edu Cess value is not flowing. Condition record is maintained.Condition is very well there in billing document. Pl suggest. Regards, Santosh

  • Cannot create database in RHEL5(beta 2)

    Hi, I am trying to install the database 10.2.0.1 in the RHEL5 (beta 2), all step was well, but at created database, choiced all parameter, after click the "OK" button on the parameter confirmation window, following error was displayed. If I run dbca

  • In Files, How to read and write spaces,tabs and newlines

    Love.......... After having read a file into a string, when I use this string in TextArea's setText()       method. Text Area do not care for spaces,tabs, newlines. if I print same string using println() out put has lines,spaces and tabs ----why-----

  • Importation problem using Canopus-55 DV converter

    I bought my mac with Panther and upgraded it recently to Tiger. Initially, I had no problem importing HI8 video from a 8 year old sony camera (following Tiger upgrade). I have created 9 DVD of family video without any problems with the little Canopus