ByteScout PDF SDK - VBScript and VB6 - Add GoTo Action to PDF - ByteScout

ByteScout PDF SDK – VBScript and VB6 – Add GoTo Action to PDF

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – VBScript and VB6 – Add GoTo Action to PDF

How to add goto action to PDF in VBScript and VB6 with ByteScout PDF SDK

This code in VBScript and VB6 shows how to add goto action to PDF with this how to tutorial

The documentation is designed to help you to implement the features on your side. What is ByteScout PDF SDK? It is the SDK for pdf documents generation, modification and updates. Can also generate and fill PDF forms. Provides support for text (fonts, style, size, font family), layers, pdf form fields, vector and raster drawings. It can help you to add goto action to PDF in your VBScript and VB6 application.

The SDK samples like this one below explain how to quickly make your application do add goto action to PDF in VBScript and VB6 with the help of ByteScout PDF SDK. In your VBScript and VB6 project or application you may simply copy & paste the code and then run your app! You can use these VBScript and VB6 sample examples in one or many applications.

You can download free trial version of ByteScout PDF SDK from our website to see and try many others source code samples for VBScript and VB6.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

GoToAction.vbs
      
' This example demonstrates how to create a button with GoTo action. ' Create Bytescout.PDF.Document object Set pdfDocument = CreateObject("Bytescout.PDF.Document") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Set comHelpers = pdfDocument.ComHelpers ' Add page Set page1 = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) pdfDocument.Pages.Add(page1) Set page2 = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) pdfDocument.Pages.Add(page2) Set timesFont = comHelpers.CreateStandardFont(comHelpers.STANDARDFONTS_TIMES, 18) Set blackBrush = comHelpers.CreateSolidBrush(comHelpers.CreateColorGray(0)) ' Mark action target with text page2.Canvas.DrawString "Action target", (timesFont), (blackBrush), 20, 200 ' Create button Set button1 = comHelpers.CreatePushButton(20, 20, 100, 25, "button1") button1.Caption = "Go To Page 2" ' Create action to go to page 2 at 200 points from the top button1.OnActivated = comHelpers.CreateGoToAction(comHelpers.CreateDestination((page2), 200)) page1.Annotations.Add(button1) ' Save document to file pdfDocument.Save("result.pdf") ' Open document in default PDF viewer app Set shell = CreateObject("WScript.Shell") shell.Run "result.pdf", 1, false

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next