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

How to automatically add *.pdf using AVOpenSaveDialogParams?

Community Beginner ,
May 28, 2018 May 28, 2018

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
635
Translate
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?

Translate
LEGEND ,
May 29, 2018 May 29, 2018

Have you tried filling in the file filters?

Translate
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

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

Translate
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
LATEST

Seems like I can use AVFileDescRec for this.

Translate
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