• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

how to remove text frame using js?

Participant ,
Jan 30, 2021 Jan 30, 2021

Copy link to clipboard

Copied

Can I remove/delete text frame in PDF using js in Acrobat?

 

first im creating new text frame (mouse input):

var name = "info";
var type = "text";
var page = 6;
var location = [120, 80, 220, 100];
var infoF = this.addField(name, type, page, location);
infoF.value = "kliknij, by skopiować wzór";

var t = this.getField("t15a4");
t.display = display.visible;

 

next i want delete this frame (it's my temporery info only) using second script (mouse exit):

var t = this.getField("infoF");
//t.display = display.hidden;

t.delete();  // or

t.remove();  // etc.

Krzysztof16B8_0-1612016934844.png

 

unfortunately nothing wants to work

TOPICS
JavaScript , PDF forms

Views

1.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 30, 2021 Jan 30, 2021

this.removeField("infoF");

Votes

Translate

Translate
Community Expert ,
Jan 30, 2021 Jan 30, 2021

Copy link to clipboard

Copied

In both cases use the same name for the field.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 30, 2021 Jan 30, 2021

Copy link to clipboard

Copied

this.removeField("infoF");

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jan 30, 2021 Jan 30, 2021

Copy link to clipboard

Copied

LATEST

Succesfully 🙂

thank You

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines