Copy link to clipboard
Copied
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/
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.
Animations do not work in PDF.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
Animations do not work in PDF.
Copy link to clipboard
Copied
could you please anyone correct below code. error is attached in picture
// 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;
}
}