8.0
Table Of Contents
- Overview
- New and enhanced features
- Getting started
- Functions
- Function overview
- Render types
- Content modifiers
- Render modifiers
- XML modify
- XML deconstruct and construct
- About XML deconstruct/construct
- xml
- construct
- Deconstructing a project
- Constructing a project
- Working with pages and spreads
- Working with layers
- Working with boxes
- Working with pictures
- Working with text
- Working with tables
- Working with Composition Zones
- Using server XSLT
- Working with lists
- Working with anchored boxes
- Working with placeholders
- Working with metadata
- Working with hidden text
- Administrative Request handlers
- The Modifier DTD
- Sample applications
- Contact Quark
- Legal notice
removed.
Example, Object
Model
Request Object Names : VistaRequest
sdk.QRequestContext rc = new sdk.QRequestContext();
if(!this.DocumentSettings1.documentName.Text.Equals(""))
rc.documentName = this.DocumentSettings1.documentName.Text;
//STEP 2(SPECIFIC TO REQUESTS):Create the QuarkVista request and
embed it in request context
VistaRequest vistareq = new VistaRequest();
vistareq.deleteVistaEffect = this.deletevistaeffect.Text;
vistareq.vistaBox = this.vistabox.Text;
vistareq.applyVistaEffect = this.applyvistaeffect.Text;
rc.request = vistareq;
//STEP 3(SPECIFIC TO REQUESTS):Create the JPEG renderer request and
embed it in
JPEGRenderRequest jpreq = new JPEGRenderRequest();
vistareq.request = jpreq;
//Create the service and call it with QRequestContext object
QManagerSDKSvcService svc = new QManagerSDKSvcService();
sdk.QContentData qc = svc.processRequest(rc);
Notes
The Vista functionality described here only works for master-subrender
mode.
Which render types support Vista XTensions software?
All render types of QuarkXPress Server support Vista XTensions
software.
I have installed the new QuarkXPress Server. Do I need to change
something in QuarkXPress Server to work on Vista XTensions
software?
Vista comes as an XTensions software module with QuarkXPress Server.
When you install QuarkXPress Server, Vista XTensions software is
disabled by default. To use Vista, you must first enable it. Launch
QuarkXPress Server. Open the XTensions Manager dialog box (
QuarkXPress Server > Server XTensions Manager). Check Vista
from the list to enable it. Click the OK button to close the
XTensions Manager dialog box. Now restart QuarkXPress Server. Vista
is now enabled in QuarkXPress Server.
Can I apply Vista effects to multiple images in a single URL?
Yes, you can apply the same Vista effects to multiple images in a single
URL.
What happens if I try to apply and delete a Vista effect in the same
URL?
If you delete and apply vista effects in the same URL parameter, the
deletevistaeffect
parameter will take precedence.
Page 90