Text adornment to export into idml
Hello,
We have an InDesign/InCopy SDK plug-in that adds special text adornments such as insert or delete marks to text characters and runs.
These appear on prinitng or on export to interactive pdf but I cannot find a way to make the export to idml aware of my special text adornments. ? I feel I must be missing something obvious, can anyone help?
Bit of code showing some of the special adornments and pic of how these appear in an interactive pdf attached.
// Responder service implementation
DECLARE_PMID (kImplementationIDSpace, kBLUserEditResponderImpl, kBlackLining_Prefix + 45)
DECLARE_PMID (kImplementationIDSpace, kBLTextAttrDeletedTextReportImpl, kBlackLining_Prefix + 46)
DECLARE_PMID (kImplementationIDSpace, kBLTextAttrDeletedTextAdornmentImpl, kBlackLining_Prefix + 47)
DECLARE_PMID (kImplementationIDSpace, kBLTextAttrInsertedTextReportImpl, kBlackLining_Prefix + 48)
DECLARE_PMID (kImplementationIDSpace, kBLTextAttrInsertedTextAdornmentImpl, kBlackLining_Prefix + 49)
// Responder Class ids
DECLARE_PMID (kClassIDSpace, kBLDeleteTextCmdResponderBoss, kBlackLining_Prefix + 26)
DECLARE_PMID (kClassIDSpace, kBLTextAttrDeletedTextBoss, kBlackLining_Prefix + 28)
DECLARE_PMID (kClassIDSpace, kBLTextAttrDeletedTextAdornmentBoss, kBlackLining_Prefix + 29)
DECLARE_PMID (kClassIDSpace, kBLTextAttrInsertedTextBoss, kBlackLining_Prefix + 30)
DECLARE_PMID (kClassIDSpace, kBLTextAttrInsertedTextAdornmentBoss, kBlackLining_Prefix + 31)
DECLARE_PMID (kClassIDSpace, kBLUserEditTextCmdResponderBoss, kBlackLining_Prefix + 32)

