• 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 automatically add *.pdf using AVOpenSaveDialogParams?

Community Beginner ,
May 28, 2018 May 28, 2018

Copy link to clipboard

Copied

Currently I have the following piece of code.

I would only want the user to save the file as PDF with *.pdf extension.

However, with the following code, I have to input *.pdf at the end of the filename.

Is there a way to automatically add *.pdf at the end of the filename?

Your help is greatly appreciated.

AVFileFilterRec* fileFilters = NULL;   

dialogParams.size = sizeof(dialogParams);

    dialogParams.flags = kAVOpenSaveAllowAllFlag;

    dialogParams.parentWindow = NULL;

    dialogParams.windowTitle = NULL;

    dialogParams.actionButtonTitle = NULL;

    dialogParams.initialFileSys = NULL;

    dialogParams.initialPathName = NULL;

    dialogParams.initialFileName = ASTextNew();

    dialogParams.fileFilters = &fileFilters;

    dialogParams.numFileFilters = 0;

    dialogParams.settingsComputeEnabledProc = NULL;

    dialogParams.settingsExecuteProc = NULL;

    dialogParams.settingsProcData = NULL;

    dialogParams.showExportCheckbox = true;

    outDialogParams.chosenFileSys = NULL;

    outDialogParams.chosenPathName = NULL;

    outDialogParams.chosenFilterIndex = 0;

    outDialogParams.launchFile = 0;

TOPICS
Acrobat SDK and JavaScript

Views

396

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

LEGEND , May 29, 2018 May 29, 2018

Have you tried filling in the file filters?

Votes

Translate

Translate
LEGEND ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

Have you tried filling in the file filters?

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 Beginner ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

I am not sure what to place in the filters. Is there any documentation on this portion?

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 Beginner ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

LATEST

Seems like I can use AVFileDescRec for this.

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