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

indesign

New Here ,
Jan 29, 2021 Jan 29, 2021

I have a problem that when I export my project from Indesign to interactive PDF then the result there is pdf without interactive only it appear as print pdf without animation even I export as interactive pdf?

someone can help me to solve this issue.

 

Thanks, regards.

 

Moved from Using the Community (which is about the forums) to the correct forum... Mod
To find a forum for your program please start at https://community.adobe.com/

TOPICS
How to
370
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 2 Correct answers

Community Expert , Jan 29, 2021 Jan 29, 2021

You can't have animations in a PDF, use another format, such as FXL ePub, InDesign’s Publish Online or the InDesign plugin (at extra cost), in5.

Translate
Community Expert , Jan 31, 2021 Jan 31, 2021

Animations do not work in PDF.

Translate
Community Expert ,
Jan 29, 2021 Jan 29, 2021

You can't have animations in a PDF, use another format, such as FXL ePub, InDesign’s Publish Online or the InDesign plugin (at extra cost), in5.

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
New Here ,
Jan 30, 2021 Jan 30, 2021

Derek, 

Good morning. 

Hope you are well. 

Thanks for your comments. Meanwhile, do you think any action does not appear in PDF interactive ?? For example moving bar or rolling the circle to show percentage?

Thanks and Regards. 

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 Expert ,
Jan 31, 2021 Jan 31, 2021

Animations do not work in PDF.

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
New Here ,
Sep 26, 2023 Sep 26, 2023
LATEST

could you please anyone correct below code. error is attached in pictureCapture.JPGddd.JPGjkl.JPGss.JPG

// InDesign mein ExtendScript macro
var doc = app.activeDocument;
var paragraphs = doc.paragraphs.everyItem().getElements(); // Sabhi paragraphs ko le lo

for (var i = 0; i < paragraphs.length; i++) {
    var paragraph = paragraphs[i];
    var firstWord = paragraph.words[0]; // Pehla shabd nikalo

    // Ab switch statement ka use karen
    switch (firstWord.contents) {
        case "body":
            paragraph.appliedParagraphStyle = doc.paragraphStyles.itemByName("body text");
            break;
        case "que":
            paragraph.appliedCharacterStyle = doc.characterStyles.itemByName("que");
            break;
        case "ans":
            paragraph.appliedCharacterStyle = doc.characterStyles.itemByName("ans");
            break;
        case "mcq":
            paragraph.appliedParagraphStyle = doc.paragraphStyles.itemByName("mcq head");
            break;
        default:
            // Agar koi keyword match nahi ho to kuch nahi karo
            break;
    }
}

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