What s New in Adobe InDesign CS4 Products SDK

Size: px
Start display at page:

Download "What s New in Adobe InDesign CS4 Products SDK"

Transcription

1 What s New in Adobe InDesign CS4 Products SDK For the benefit of previous users, this document summarizes the changes to the SDK in this release. C++ IDE Requirements On Windows, the required C++ development environment is now Visual Studio 2005, Service Pack 1. On Mac OS, the required C++ development environment is XCode for MacOS 10.4.x or XCode 3.1 for MacOS 10.5.x. Porting Content IDML Porting content was developed to help you transition to InDesign CS4. Adobe InDesign CS4 Porting Guide discusses the main changes to the InDesign API, and porting procedures. The changes to the InDesign CS4 API discussed in that document include links-architecture restructuring, scripting undo, gsession removal, user-interface changes, and other minor changes. IDML is an XML-based format for representing InDesign content. Essentially, it is a major revision of INX, InDesign's previous XML-based file format. IDML addresses INX shortcomings, in an effort to represent InDesign content in a human-readable format something that can be reasonably assembled and disassembled by a competent XML programmer. The INXErrorLogging sample project provides a reference implementation of the IINXErrorHandler error-logging interface. This implementation writes all error and warning messages during INX and IDML import and export to a log file. IDMLTools is a Java package that provides APIs, tools, and sample code that demonstrates how to work with IDML. The package is in the following directory and described more thoroughly in the ReadMe file in this directory: SDK/devtools/sdktools/idmltools The SDK also includes two new IDML documents: IDML File Format Specification formally describes the IDML file format. Adobe InDesign Markup Language (IDML) Cookbook provides practical, but less formal, information about working with IDML. 1

2 What s New in Adobe InDesign CS4 Products SDK Links 2 Links A new links sample, ExtendedLinks, was written to demonstrate the improved capabilities of the restructured links architecture. This sample pushes the bounds of the links APIs by implementing some useful features not directly supported by the product. Most notably, the sample demonstrates the use of the links architecture on a range of text (using XML features to identify the range). It also demonstrates the implementation of links from an ODBC data source. The goal is to demonstrate bi-directional update of data fields (like prices) in a catalog directly to and from a data source. Instructions for using MySQL and FileMaker Pro databases are provided. Links added by the ExtendedLinks plug-in are displayed by the ExtendedLinksUI plug-in. The plug-in implements its own panel, separate from the LinksUI panel. The ExtendedLinksUI panel contains a tree view that groups links based on a link's URI. The previous links sample (CustomDataLink) was updated for CS4. Flex User Interface Preflight The FlexUIStroke sample is new in CS4. This sample demonstrates two-way communication between a Flash/Flex SWF and an InDesign plug-in. The sample's plug-in has a panel that contains an OWLFlashPlayerWidget and aggregates a SelectionObserver. The SelectionObserver notifies Flash when the selection changes in InDesign, and Flash notifies the observer when its combo-box selection changes. The FlexUIBasicScriptUI sample is new in CS4. This sample demonstrates two-way communication between a Flash/Flex SWF and an InDesign JavaScript script. The script creates a ScriptUI panel containing a flashplayer component. The flashplayer component provides a communication channel between the JavaScript and the SWF. This sample also demonstrates the use of scripting events to observe change; however, model and selection change events are not available to scripting, so the panel cannot maintain an updated state like a C++ plug-in panel can. We added initial sample code and documentation for the new preflight architecture. The PreflightRule sample plug-in demonstrates creating custom preflight rules. This new architecture is documented in the chapter on Implementing Preflight Rules in Adobe InDesign CS4 Products Programming Guide. Code Snippets SnpExportDynamicDocument is a new code snippet that shows how to programmatically export dynamic InDesign content to SWF. The snippet creates a multi-page document with several buttons and exports it to SWF. SnpManipulateConditionalText is a new code snippet that shows how to manipulate a document's conditional text. The snippet allows you to create, delete, and modify conditional-text tags and their visual attributes.

3 What s New in Adobe InDesign CS4 Products SDK Plug-ins 3 Plug-ins The FrameLabel sample was enhanced for CS4. Now you can specify a font color and label position (top, right, left, or bottom of the frame). The FrameLabelUI now supports mixed-mode operations; i.e., operations on frames with different FrameLabel settings. The Watermark sample is new for CS4. It demonstrates implementing a document watermark using a draw event handler. The sample allows you to set the watermark's text, font, color, opacity, rotation, and position. New APIs for PDF Form XObjects Open Folder PDF Form XObjects allow content to be added to a PDF file once and used later by reference. This is more efficient than duplicating static content. InDesign CS4's PDF export supports PDF Form XObjects. The IPDFFormXObjectData interface on the PDF export command (kpdfexportcmdboss) is used to add groups of static page items to the exported PDF as Form XObjects. Two InDesign features leverage this capability: Master Pages and Data Merge. All non-text, master page items are considered static content; therefore, they are added as Form XObjects. The text feature set supports dynamic features (like page numbers) in master text frames, which makes it hard to determine if a text frame is truly static; therefore, InDesign does not add master text frames to Form XObjects. If you can determine that a master text frame is static, you can use the IPDFFormXOjectData interface to add it to a PDF Form XObject, but be sure the content really is static; otherwise, it will be used incorrectly. Data merge now supports exporting directly to PDF without creating a document. This new feature creates Form XObjects for all static content (including text). Both features use an implementation of IPDFFormXObjectSetupProvider to populate the IPDFFormXOjectData. This is done through a service provider that provides the kpdfformxobjectsetupservice. A default implementation of this service provider is provided by the kpdfformxobjectsetupserviceimpl implementation. It is not possible to participate in the data-merge collection, even if you implement such a service. This is because data merge queries the service by ClassID. You can, however, participate in the standard PDF export by providing such a service. It is unlikely you will want to interact with the master-page feature's use of Form XObjects. You might consider building a feature that parallels data merge. In this case, you may want to re-use the service-provider approach to populate your data. The interfaces discussed above are found in the following locations: sdk/source/public/interfaces/graphics/ipdfformxobjectdata.h sdk/source/public/interfaces/graphics/ipdfformxobjectsetupprovider.h The SDK now contains source code for several InDesign user-interface plug-ins. The source code is saved under sdk/source/open. The actual project files are saved in the same directory as the SDK samples, but they contain.open. in their filenames.

4 What s New in Adobe InDesign CS4 Products SDK Improved DollyXs 4 Improved DollyXs The plug-in generation tool, DollyXs, was improved with the addition of 64-bit Windows project settings and preflight code generation. To learn more about DollyXs, see the DollyXs ReadMe file (devtools/sdktools/dollyxs/readme.txt). InDesign Server 64-bit Support (Windows only) The Windows version of this SDK includes 64-bit libraries for InDesign Server development. It also includes information on building 64-bit plug-ins in Adobe InDesign Server CS4 Plug-in Techniques. For your convenience, DollyXs now produce 64-bit targets in Windows project files. Documentation Reorganization The documents in the docs/guides folder were reorganized to allow for better online searching. Prior versions of the SDK contained many Working with... documents. These documents were combined into one new document, Adobe InDesign CS4 Solutions. Several other documents were added to Adobe InDesign CS4 Products Programming Guide. The root of the SDK also now contains a new document, Getting Started with the Adobe InDesign CS4 Products SDK.

5 What s New in Adobe InDesign CS4 Products SDK Documentation Reorganization Adobe Systems Incorporated. All rights reserved. If this guide is distributed with software that includes an end user agreement, this guide, as well as the software described in it, is furnished under license and may be used or copied only in accordance with the terms of such license. Except as permitted by any such license, no part of this guide may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, recording, or otherwise, without the prior written permission of Adobe Systems Incorporated. Please note that the content in this guide is protected under copyright law even if it is not distributed with software that includes an end user license agreement. The content of this guide is furnished for informational use only, is subject to change without notice, and should not be construed as a commitment by Adobe Systems Incorporated. Adobe Systems Incorporated assumes no responsibility or liability for any errors or inaccuracies that may appear in the informational content contained in this guide. Any references to company names in sample templates are for demonstration purposes only and are not intended to refer to any actual organization. Adobe, the Adobe logo, Creative Suite, InCopy, and InDesign are either registered trademarks or trademarks of Adobe Systems Inc. in the United States and/or other countries. Windows is either a registered trademark or a trademark of Microsoft Corp. in the United States and/or other countries. Mac OS is a trademark of Apple Computer, Inc., registered in the United States and other countries. Adobe Systems Incorporated, 345 Park Avenue, San Jose, California 95110, USA. Notice to U.S. Government End Users. The Software and Documentation are Commercial Items, as that term is defined at 48 C.F.R , consisting of Commercial Computer Software and Commercial Computer Software Documentation, as such terms are used in 48 C.F.R or 48 C.F.R , as applicable. Consistent with 48 C.F.R or 48 C.F.R through , as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA , USA. For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, , and The affirmative action clause and regulations contained in the preceding sentence shall be incorporated by reference.

Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook

Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook ADOBE DIGITAL LEARNING SERVICES 2016 Adobe Systems Incorporated. All rights reserved. Organize and Deliver Digital

More information

What s new and changed in Adobe ColdFusion (2016 release) Update 3

What s new and changed in Adobe ColdFusion (2016 release) Update 3 What s new and changed in Adobe ColdFusion (2016 release) Update 3 Adobe Systems Incorporated Version 1.0 19 th Sep 2016 2016 Adobe Systems Incorporated and its Licensors. All Rights Reserved. This is

More information

Rosetta Communicator for WorldBuilder and 3DS Max

Rosetta Communicator for WorldBuilder and 3DS Max Rosetta Communicator for WorldBuilder and 3DS Max Version 1.0 User Guide C o n t e n t s Introduction System Requirements Installation Installing the MAX Plug-In Registration Loading the Communications

More information

bbc Migrating and Sharing Secuity Settings: Using Security Settings Import/Export and FDF Files Acrobat and Adobe Reader PDF Creation Date:

bbc Migrating and Sharing Secuity Settings: Using Security Settings Import/Export and FDF Files Acrobat and Adobe Reader PDF Creation Date: bbc PDF Creation Date: September 5, 2008 Migrating and Sharing Secuity Settings: Using Security Settings Import/Export and FDF Files Acrobat and Adobe Reader Version 9.0 2008 Adobe Systems Incorporated.

More information

bbc Overview Adobe Acrobat SDK November 2006 Version 8.0

bbc Overview Adobe Acrobat SDK November 2006 Version 8.0 bbc Overview Adobe Acrobat SDK November 2006 Version 8.0 2006 Adobe Systems Incorporated. All rights reserved. Adobe Acrobat SDK 8.0 Overview for Microsoft Windows, Mac OS, Linux, and UNIX Edition 1.0,

More information

bbc Certificate Enrollment Guide Adobe Flash Access May 2010 Version 2.0

bbc Certificate Enrollment Guide Adobe Flash Access May 2010 Version 2.0 bbc Certificate Enrollment Guide Adobe Flash Access May 2010 Version 2.0 2010 Adobe Systems Incorporated. All rights reserved. Adobe Flash Access 2.0 Certificate Enrollment Guide This guide is protected

More information

ADOBE CREATIVE SUITE 5: PRICING OVERVIEW

ADOBE CREATIVE SUITE 5: PRICING OVERVIEW IN U.S. DOLLARS FOR UNIVERSAL ENGLISH VERSION Design Premium Adobe Photoshop CS5 Extended Adobe Illustrator CS5 Adobe InDesign CS5 Adobe Flash Catalyst CS5 Adobe Flash Professional CS5 Adobe Dreamweaver

More information

Security Methods for the Acrobat Family of Products

Security Methods for the Acrobat Family of Products Security Methods for the Acrobat Family of Products A guide for administrators describing password security, certificate security, and Livecycle (Policy Server) security, including configuration and deployment

More information

bbc Target Version Reference Adobe LiveCycle Designer ES July 2007 Version 8.1

bbc Target Version Reference Adobe LiveCycle Designer ES July 2007 Version 8.1 bbc Target Version Reference LiveCycle Designer ES July 2007 Version 8.1 2007 Systems Incorporated. All rights reserved. LiveCycle Designer ES 8.1 Target Version Reference for Microsoft Windows Edition

More information

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE 2015 Adobe Systems Incorporated. All rights reserved. Technical Note: Adobe Experience Manager DAM Connector for Adobe Drive CC

More information

Deconstructing Wireframes into AEM Templates and Components

Deconstructing Wireframes into AEM Templates and Components Technical Training Deconstructing Wireframes into AEM Templates and Components Hands- on Lab Guide If this guide is distributed with software that includes an end user agreement, this guide, as well as

More information

HP SmartStream Designer 21 For Adobe Illustrator

HP SmartStream Designer 21 For Adobe Illustrator HP SmartStream Designer 21 For Adobe Illustrator Readme HP Indigo Division Notice Copyright 2017 HP Development Company, L.P. All Rights Reserved. Reproduction, adaptation, or translation without prior

More information

bbc Preparing to Upgrade to LiveCycle ES from LiveCycle 7.x Adobe LiveCycle ES September 2007 Version 8.0

bbc Preparing to Upgrade to LiveCycle ES from LiveCycle 7.x Adobe LiveCycle ES September 2007 Version 8.0 bbc Preparing to Upgrade to LiveCycle ES from LiveCycle 7.x Adobe LiveCycle ES September 2007 Version 8.0 2007 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle ES 8.0 Preparing to Upgrade

More information

on VMware Deployment Guide November 2018 Deployment Guide for Unitrends Free on VMware Release 10.3 Version Provide feedback

on VMware Deployment Guide November 2018 Deployment Guide for Unitrends Free on VMware Release 10.3 Version Provide feedback Deployment Guide November 2018 Release 10.3 Version 1.11152018 2 Copyright Copyright 2018 Unitrends Incorporated. All rights reserved. Content in this publication is copyright material and may not be copied

More information

SOLO NETWORK. Adobe Flash Catalyst CS5.5. Create expressive interfaces and interactive content without writing code

SOLO NETWORK. Adobe Flash Catalyst CS5.5. Create expressive interfaces and interactive content without writing code (11) 4062-6971 (21) 4062-6971 (31) 4062-6971 (41) 4062-6971 (48) 4062-6971 (51) 4062-6971 (61) 4062-6971 Adobe Flash Catalyst CS5.5 Create expressive interfaces and interactive content without writing

More information

Web Client Manual. for Macintosh and Windows. Group Logic Inc Fax: Internet:

Web Client Manual. for Macintosh and Windows. Group Logic Inc Fax: Internet: Web Client Manual for Macintosh and Windows Group Logic Inc. 703-528-1555 Fax: 703-527-2567 Email: info@grouplogic.com Internet: www.grouplogic.com Copyright (C) 1995-2007 Group Logic Incorporated. All

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Oracle Outside In Technology Release Notes 8.5.3 Release 8.5.3 E74928-01 April 2016 The major goals of this release are improved rendering fidelity in several key target formats,

More information

ADOBE CREATIVE SUITE 4

ADOBE CREATIVE SUITE 4 ADOBE CREATIVE SUITE 4 DESIGN PREMIUM classroom in a book Instructor Notes www.adobepress.com Adobe Creative Suite 4 Design Premium Classroom in a Book 2009 Adobe Systems Incorporated and its licensors.

More information

Schlumberger Private Customer Use

Schlumberger Private Customer Use 1 Copyright Notice Copyright 2009-2016 Schlumberger. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or translated in any form or by any means, electronic

More information

Recording Output Intentions for Color Critical Workflows ADOBE SYSTEMS INCORPORATED

Recording Output Intentions for Color Critical Workflows ADOBE SYSTEMS INCORPORATED bbc Recording Output Intentions for Color Critical Workflows Technical Note #5413 Version : 1.0 ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000

More information

HP SmartStream Designer 22 For Adobe Illustrator

HP SmartStream Designer 22 For Adobe Illustrator HP SmartStream Designer 22 For Adobe Illustrator Readme HP Indigo Division Notice Copyright 2018 HP Development Company, L.P. All Rights Reserved. Reproduction, adaptation, or translation without prior

More information

Schlumberger Private Customer Use

Schlumberger Private Customer Use 1 Copyright Notice Copyright 2009-2014 Schlumberger. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or translated in any form or by any means, electronic

More information

Deployment Guide for Unitrends Backup on VMware

Deployment Guide for Unitrends Backup on VMware Deployment Guide for Unitrends Deployment Guide July 2018 Deployment Guide for Unitrends Backup on VMware Release 10.2 Version 1.07102018 2 Deployment Guide for Unitrends Copyright Copyright 2018 Unitrends

More information

bbc APTT User Guide Automating PDF Testing for the Enterprise Installation Testing User Guide FAQ and Examples

bbc APTT User Guide Automating PDF Testing for the Enterprise Installation Testing User Guide FAQ and Examples APTT User Guide Automating PDF Testing for the Enterprise Installation Testing User Guide FAQ and Examples Acrobat Family of Products 9.2 Modification date: 10/7/09 bbc 2009 Adobe Systems Incorporated.

More information

Oracle Endeca Commerce Compatibility Matrix

Oracle Endeca Commerce Compatibility Matrix Oracle Endeca Compatibility Matrix June 18, 2012 June 18, 2012 Page 1 Copyright 2010, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or

More information

ADOBE PROVISIONING TOOLKIT ENTERPRISE EDITION

ADOBE PROVISIONING TOOLKIT ENTERPRISE EDITION ADOBE PROVISIONING TOOLKIT ENTERPRISE EDITION 2010 Adobe Systems Incorporated. All rights reserved. Adobe Provisioning Toolkit Enterprise Edition Tech Note Adobe, the Adobe logo, Creative Suite, Adobe

More information

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Product information August 2008 Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Document history Change history 2008-05-01 Doc. No. 1212.4799.1 First version 2008-08-18 Doc. No.

More information

Adobe Acrobat Family Digital editions

Adobe Acrobat Family Digital editions Adobe Acrobat Family Digital editions WHAT S NEW TOPICS 1 The Adobe digital edition solution 2 Support for digital editions in Adobe Reader 7.0 and Adobe Acrobat 7.0 4 Unsupported Features 5 Migrating

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release Oracle Enterprise Manager Ops Center Installing and Updating Local Software Packages 12c Release 12.1.2.0.0 E37233-01 November 2012 This guide provides an end-to-end example for how to use Oracle Enterprise

More information

Using ADOBE FLASH CATALYST CS5

Using ADOBE FLASH CATALYST CS5 Using ADOBE FLASH CATALYST CS5 Copyright 2010 Adobe Systems Incorporated. All rights reserved. Using Adobe Flash Catalyst CS5 This user guide is protected under copyright law, furnished for informational

More information

Network-MIDI Driver Installation Guide

Network-MIDI Driver Installation Guide Network-MIDI Driver Installation Guide ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Adobe Acrobat Reader Help

Adobe Acrobat Reader Help Adobe Acrobat Reader Help This help file contains the basic information you need to open, navigate, and print PDF files using Adobe Acrobat Reader. If you need more help, you can download and install the

More information

How to Split PDF files with AutoSplit

How to Split PDF files with AutoSplit How to Split PDF files with AutoSplit An introduction to PDF document splitting and page extraction Table of Contents What software do I need?... 2 What splitting methods are available?... 2 What documents

More information

Oracle Retail Price Management. About Patch Releases. Release Notes Release

Oracle Retail Price Management. About Patch Releases. Release Notes Release Oracle Retail Price Management Release Notes Release 13.2.4 March 2012 Oracle Retail Price Management (RPM) Release 13.2.4 is a patch release for RPM 13.2. RPM 13.2.4 includes selected defect fixes and

More information

Oracle Insurance IStream

Oracle Insurance IStream Oracle Insurance IStream IStream Document Manager Glossary Release 6.3 E15015-01 June 2009 Copyright Copyright 2009, Oracle and/or its affiliates. All rights reserved. Primary Authors: Andrew Brooke and

More information

Oracle Insurance IStream

Oracle Insurance IStream Oracle Insurance IStream IStream Document Manager Glossary Release 6.2 E14878-01 January 2009 Copyright Copyright 2009, Oracle and/or its affiliates. All rights reserved. Primary Authors: Andrew Brooke

More information

What s New for Oracle Cloud Stack Manager. Topics: July Oracle Cloud. What's New for Oracle Cloud Stack Release

What s New for Oracle Cloud Stack Manager. Topics: July Oracle Cloud. What's New for Oracle Cloud Stack Release Oracle Cloud What's New for Oracle Cloud Stack Release 18.3.2 E83240-17 July 2018 What s New for Oracle Cloud Stack Manager Oracle Cloud Stack Manager is upgraded in Oracle Cloud data centers as soon as

More information

Avid Editing Application

Avid Editing Application Avid Editing Application ReadMe Revision History Date April 7, 2016 April 6, 2016 Description Additional bug fixes added. Added note below and additional fixes. IMPORTANT NOTE: With this release, do not

More information

Adobe. Type Manager 4.1. User Guide

Adobe. Type Manager 4.1. User Guide Adobe Type Manager 4.1 User Guide 1999 Adobe Systems Incorporated. All rights reserved. Adobe Type Manager 4.1 User Guide for Windows This manual, as well as the software described in it, is furnished

More information

Oracle Utilities Customer Self Service

Oracle Utilities Customer Self Service Oracle Utilities Customer Self Service Whitepaper: Creating and Deploying the Sample Mobile Client Application Release 2.1.0 Service Pack 2 E38172-07 October 2015 Oracle Utilities Customer Self Service

More information

Adobe Acrobat Weblink Plug-in

Adobe Acrobat Weblink Plug-in Adobe Acrobat Weblink Plug-in This online guide contains all the information you need to use the Adobe Acrobat Weblink plug-in with Acrobat Reader and Acrobat Exchange. Click one of the following topics

More information

ADOBE DRIVE 4.2 USER GUIDE

ADOBE DRIVE 4.2 USER GUIDE ADOBE DRIVE 4.2 USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive 4.2 User Guide Adobe, the Adobe logo, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop are either

More information

Oracle Endeca Guided Search Compatibility Matrix

Oracle Endeca Guided Search Compatibility Matrix Oracle Endeca Guided Search Compatibility Matrix February 28, 2012 February 28, 2012 Page 1 Copyright 2010, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks

More information

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8.

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8. Business Processes and Rules: Siebel Enterprise Application Integration Siebel Innovation Pack 2013 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software

More information

Getting Started Install and Configuration Version 8.2.3

Getting Started Install and Configuration Version 8.2.3 Getting Started Install and Configuration Version 8.2.3 Copyright 2018 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and

More information

If the firmware version indicated is earlier than the "Version 1.06", please update the unit s firmware.

If the firmware version indicated is earlier than the Version 1.06, please update the unit s firmware. STEP 1. Check the current firmware version Panasonic recommends that you update the firmware in your SC-C70 if the firmware version indicated is older than the version being offered. Please check the current

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Brand Setup Guide Release 18.2.0.0.0 Part No. E97823-01 June 2018 Brand Setup Guide June 2018 Oracle Financial Services Software Limited Oracle Park Off Western Express

More information

AutoPagex Plug-in User s Manual

AutoPagex Plug-in User s Manual Page 1 of 32 AutoPagex Plug-in User s Manual Version 1.1 Page 2 of 32 What is AutoPagex plug-in? AutoPagex is an advanced plug-in for Adobe Acrobat and Adobe Acrobat Professional software. It is designed

More information

Acrobat Widths-Only CIDFont Tutorial ADOBE SYSTEMS INCORPORATED

Acrobat Widths-Only CIDFont Tutorial ADOBE SYSTEMS INCORPORATED bbc Acrobat Widths-Only CIDFont Tutorial Technical Note #5412 ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000 http://partners.adobe.com April 12,

More information

Oracle FLEXCUBE Direct Banking iphone/ipad Workspace Configuration

Oracle FLEXCUBE Direct Banking iphone/ipad Workspace Configuration Oracle FLEXCUBE Direct Banking iphone/ipad Workspace Configuration Release 12.0.3.0.0 Part No. E52543-01 April 2014 iphone/ipad Workspace Configuration April 2014 Oracle Financial Services Software Limited

More information

USER GUIDE MADCAP FLARE Accessibility

USER GUIDE MADCAP FLARE Accessibility USER GUIDE MADCAP FLARE 2018 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

bbc Installing and Configuring LiveCycle Security Products for JBoss Adobe LiveCycle September 2007 Version 7.2

bbc Installing and Configuring LiveCycle Security Products for JBoss Adobe LiveCycle September 2007 Version 7.2 bbc Installing and Configuring LiveCycle Security Products for JBoss Adobe LiveCycle September 2007 Version 7.2 2007 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle 7.2 Installing and

More information

IBM Spectrum LSF Process Manager Version 10 Release 1. Release Notes IBM GI

IBM Spectrum LSF Process Manager Version 10 Release 1. Release Notes IBM GI IBM Spectrum LSF Process Manager Version 10 Release 1 Release Notes IBM GI13-1891-04 IBM Spectrum LSF Process Manager Version 10 Release 1 Release Notes IBM GI13-1891-04 Note Before using this information

More information

Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide Release October 2015

Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide Release October 2015 Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide Release 1101 October 2015 Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide, Release 1101 Copyright 2015, Oracle

More information

Corinex AV200 Powerline Ethernet Wall Mount

Corinex AV200 Powerline Ethernet Wall Mount Corinex AV200 Powerline Ethernet Wall Mount AV200 Powerline Wall Mount Quick Start Guide Copyright This document, as well as the software described in it, is furnished under license and may be used or

More information

IBM Worklight V5.0.6 Getting Started

IBM Worklight V5.0.6 Getting Started IBM Worklight V5.0.6 Getting Started Creating your first Worklight application 17 January 2014 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

DEVELOPING ADOBE AIR APPLICATIONS WITH ADOBE FLASH CS3 PROFESSIONAL

DEVELOPING ADOBE AIR APPLICATIONS WITH ADOBE FLASH CS3 PROFESSIONAL DEVELOPING ADOBE AIR APPLICATIONS WITH ADOBE FLASH CS3 PROFESSIONAL ii 2008 Adobe Systems Incorporated. All rights reserved. Developing Adobe AIR Applications with Adobe Flash CS3 Professional If this

More information

IBM Datacap Mobile SDK Developer s Guide

IBM Datacap Mobile SDK Developer s Guide IBM Datacap Mobile SDK Developer s Guide Contents Versions... 2 Overview... 2 ios... 3 Package overview... 3 SDK details... 3 Prerequisites... 3 Getting started with the SDK... 4 FAQ... 5 Android... 6

More information

October 14, Business Intelligence Connector Guide

October 14, Business Intelligence Connector Guide October 14, 2017 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Siebel CTI Administration Guide. Siebel Innovation Pack 2016 May 2016

Siebel CTI Administration Guide. Siebel Innovation Pack 2016 May 2016 Siebel CTI Administration Guide Siebel Innovation Pack 2016 May 2016 Copyright 2005, 2016 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a

More information

ADOBE ROBOHELP SERVER 8

ADOBE ROBOHELP SERVER 8 Getting Started with ADOBE ROBOHELP SERVER 8 Copyright 2008 Adobe Systems Incorporated. All rights reserved. Getting Started with Adobe RoboHelp Server 8 for Windows If this guide is distributed with software

More information

Oracle Retail Workforce Management Installation Guide Release August 2015

Oracle Retail Workforce Management Installation Guide Release August 2015 Oracle Retail Workforce Management Installation Guide Release 1.62 August 2015 Oracle Retail Workforce Management Installation Guide, Release 1.62 Copyright 2015, Oracle and/or its affiliates. All rights

More information

Oracle Communications MetaSolv Solution

Oracle Communications MetaSolv Solution Oracle Communications MetaSolv Solution Data Selection Tool How-to Guide Release 6.3 E69843-01 September 2016 Oracle Communications MetaSolv Solution Data Selection Tool How-to Guide, Release 6.3 E69843-01

More information

New Features in Primavera P6 16.2

New Features in Primavera P6 16.2 New Features in Primavera P6 16.2 COPYRIGHT & TRADEMARKS Copyright 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016 Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide March 2016 Original Issued Date: March 2006 Vision / Serduct version: 03.x Author Product: MICROS Opera 3.x Copyright

More information

Getting Started Install and Configuration Version 8.3.0

Getting Started Install and Configuration Version 8.3.0 Getting Started Install and Configuration Version 8.3.0 Copyright 2018 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and

More information

Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release and Higher E November 2016

Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release and Higher E November 2016 Oracle Hospitality Suite8 XML Export of Invoice Data for Hungarian Tax Authority Release 8.7.4 and Higher E81378-01 November 2016 Copyright 2002, 2016, Oracle and/or its affiliates. All rights reserved.

More information

USER GUIDE. MADCAP FLARE 2017 r3. Accessibility

USER GUIDE. MADCAP FLARE 2017 r3. Accessibility USER GUIDE MADCAP FLARE 2017 r3 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015 Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9 July 2015 Copyright 1987, 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Release September 2018

Release September 2018 Oracle Fusion Middleware What's New for Oracle Data Visualization Desktop E76890-11 September 2018 What s New for Oracle Data Visualization Desktop Here s an overview of the new features and enhancements

More information

Oracle. Field Service Cloud Using the Parts Catalog

Oracle. Field Service Cloud Using the Parts Catalog Oracle Field Service Cloud Release August 2016 Field Service Cloud Part Number: E67887-10 Copyright 2016, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

How to Merge PDF files with AutoSplit

How to Merge PDF files with AutoSplit How to Merge PDF files with AutoSplit An introduction to combining PDF and Microsoft Office documents Table of Contents What Software Do I Need?... 2 What Is Document Merging?... 2 What Merging Methods

More information

Acrobat Security Administration Guide

Acrobat Security Administration Guide PDF Creation Date: May 31, 2007 bc Acrobat Security Administration Guide Acrobat and Adobe Reader Version 8.1 2007 Adobe Systems Incorporated. All rights reserved. Adobe Acrobat 8.1 Security Administration

More information

Oracle Utilities Meter Data Management Integration to SAP for Meter Data Unification and Synchronization

Oracle Utilities Meter Data Management Integration to SAP for Meter Data Unification and Synchronization Oracle Utilities Meter Data Management Integration to SAP for Meter Data Unification and Synchronization Release 11.1 Media Pack Release Notes Oracle Utilities Meter Data Management v2.1.0.0 SAP for Meter

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( )

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( ) Oracle Enterprise Manager Ops Center Creating vservers 12c Release 1 (12.1.4.0.0) E27357-02 June 2013 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops Center. Introduction

More information

Using save Outside the Server Loop

Using save Outside the Server Loop Using save Outside the Server Loop Adobe Developer Support Technical Note #5129 14 February 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Oracle Utilities Customer Self Service

Oracle Utilities Customer Self Service Oracle Utilities Customer Self Service Whitepaper: Creating and Deploying the Sample Mobile Client Application Release 2.1.0 Service Pack 1 E38172-05 June 2014 Oracle Utilities Customer Self Service Whitepaper:

More information

Siebel CTI Administration Guide. Siebel Innovation Pack 2015, Rev. A October 2015

Siebel CTI Administration Guide. Siebel Innovation Pack 2015, Rev. A October 2015 Siebel CTI Administration Guide Siebel Innovation Pack 2015, Rev. A October 2015 Copyright 2005, 2015 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service. Version 2.3.x. Installation Guide. Publication: GC (August 2011)

IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service. Version 2.3.x. Installation Guide. Publication: GC (August 2011) IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service Version 2.3.x Installation Guide Publication: GC27-3920-00 (August 2011) Note: Before using this document and the products it supports,

More information

WOWZA MEDIA SERVER SOFTWARE END USER LICENSE AGREEMENT ( EULA ) VERSION 2.1.2

WOWZA MEDIA SERVER SOFTWARE END USER LICENSE AGREEMENT ( EULA ) VERSION 2.1.2 WOWZA MEDIA SERVER SOFTWARE END USER LICENSE AGREEMENT ( EULA ) VERSION 2.1.2 NOTICE: BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA.

More information

JavaFX. JavaFX Overview Release E

JavaFX. JavaFX Overview Release E JavaFX JavaFX Overview Release 2.2.21 E20479-06 April 2013 Learn about the JavaFX 2 and later technology, read a feature summary, explore the sample applications, and follow the high-level steps to create

More information

Qvidian Proposal Automation System Requirements

Qvidian Proposal Automation System Requirements Qvidian Proposal Automation System Requirements Version 11.0.6-10/13/2017 Copyright Copyright 2017 Qvidian. All rights reserved. Information in this document is subject to change without notice. The software

More information

Oracle Java CAPS Database Binding Component User's Guide

Oracle Java CAPS Database Binding Component User's Guide Oracle Java CAPS Database Binding Component User's Guide Part No: 821 2620 March 2011 Copyright 2009, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

More information

Oracle Tuxedo. Oracle Tuxedo Plug-in for Oracle Solaris Studio User s Guide 12c Release 2 (12.1.3) April 2014

Oracle Tuxedo. Oracle Tuxedo Plug-in for Oracle Solaris Studio User s Guide 12c Release 2 (12.1.3) April 2014 Oracle Tuxedo Oracle Tuxedo Plug-in for Oracle Solaris Studio User s Guide 12c Release 2 (12.1.3) April 2014 Oracle Tuxedo Plug-in for Oracle Solaris Studio Users Guide, Release 12c Release 2 (12.1.3)

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need Oracle Enterprise Manager Ops Center Creating a Server Pool for Oracle VM Server for SPARC 12c Release 2 (12.2.2.0.0) E48147-03 December 2014 This guide provides an end-to-end example for how to use Oracle

More information

Oracle Enterprise Manager Ops Center. Overview. What You Need. Create Oracle Solaris 10 Zones 12c Release 3 ( )

Oracle Enterprise Manager Ops Center. Overview. What You Need. Create Oracle Solaris 10 Zones 12c Release 3 ( ) Oracle Enterprise Manager Ops Center Create Oracle Solaris 10 Zones 12c Release 3 (12.3.0.0.0) E60027-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops

More information

Software api overview VERSION 3.1v3

Software api overview VERSION 3.1v3 Software api overview VERSION 3.1v3 Mari Software API Overview. Copyright 2016 The Foundry Visionmongers Ltd. All Rights Reserved. Use of this guide and the Mari software is subject to an End User License

More information

Error Code 3 Indesign Cs3 >>>CLICK HERE<<<

Error Code 3 Indesign Cs3 >>>CLICK HERE<<< Error Code 3 Indesign Cs3 InDesign Premiere Pro After Effects Lightroom See all. See plans for The 1603 error is an MSI error code indicating a failure that is generic, but computer-specific. folder on

More information

Oracle Banking APIs. Part No. E Origination Social Media Integration Guide Release April 2018

Oracle Banking APIs. Part No. E Origination Social Media Integration Guide Release April 2018 Oracle Banking APIs Origination Social Media Integration Guide Release 18.1.0.0.0 Part No. E94092-01 April 2018 Origination Social Media Integration Guide April 2018 Oracle Financial Services Software

More information

EnterpriseTrack Reporting Data Model Configuration Guide Version 17

EnterpriseTrack Reporting Data Model Configuration Guide Version 17 EnterpriseTrack EnterpriseTrack Reporting Data Model Configuration Guide Version 17 October 2018 Contents About This Guide... 5 Configuring EnterpriseTrack for Reporting... 7 Enabling the Reporting Data

More information

Isight Component Development 5.9

Isight Component Development 5.9 Isight Component Development 5.9 About this Course Course objectives Upon completion of this course you will be able to: Understand component requirements Develop component packages for Isight Targeted

More information

equestionnaire User Guide

equestionnaire User Guide Prodika Product Lifecycle Management equestionnaire User Guide Release 5.1 Part Number: TPPR-0045-5.1A Make sure you check for updates to this manual at the Oracle Documentation Web site Copyrights and

More information

Database Change Reference Release 6.3

Database Change Reference Release 6.3 [1]Oracle Communications MetaSolv Solution Database Change Reference Release 6.3 E69841-01 April 2018 Oracle Communications MetaSolv Solution Database Change Reference, Release 6.3 E69841-01 Copyright

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Push Notification User Manual Release 18.3.0.0.0 Part No. F12056-01 December 2018 Push Notification User Manual December 2018 Oracle Financial Services Software Limited

More information

Oracle Responsys Release 18C. New Feature Summary

Oracle Responsys Release 18C. New Feature Summary Oracle Responsys Release 18C New Feature Summary TABLE OF CONTENTS Revision History 3 Overview 3 APIs 3 REST AFTM API: Support for retrievelistmember 3 Mobile 4 SPAN Deliverability Scoring and Monthly

More information

Oracle Enterprise Manager Ops Center

Oracle Enterprise Manager Ops Center Oracle Enterprise Manager Ops Center Configure and Install Guest Domains 12c Release 3 (12.3.2.0.0) E60042-03 June 2016 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6.1 SERVICE PACK 1 PART NO. E17383-01 MARCH 2010 COPYRIGHT Copyright 1998, 2010, Oracle and/or its affiliates. All rights

More information