Question
FindChangeList working for character styles but not paragraph styles InD 2020 on an iMac with Mojave
I am trying to create a simple text file to use with the FindChangeList script and although the character style changes I am asking for work great, the paragraph styles don't work at all. Does anyone have any idea what I am doing wrong?
The first two find/changes work great, and the third changes the character style to none, but won't apply the paragraph style.
Here is my text file:
text {findWhat:" ^p"} {changeTo:"", appliedCharacterStyle:"temp"} {includeLockedStoriesForFind:false, includeLockedLayersForFind:false, includeHiddenLayers:false, includeMasterPages:false, includeFootnotes:true, wholeWord:false, caseSensitive:false, kanaSensitive:true, widthSensitive:true, ignoreKashidas:true, ignoreDiacritics:false, searchBackwards:false} //assign temp to space before return
text {findWhat:" ", appliedCharacterStyle:"temp"} {changeTo:""} {includeLockedStoriesForFind:false, includeLockedLayersForFind:false, includeHiddenLayers:false, includeMasterPages:false, includeFootnotes:true, wholeWord:false, caseSensitive:false, kanaSensitive:true, widthSensitive:true, ignoreKashidas:true, ignoreDiacritics:false, searchBackwards:false} //delete space before return
text {findWhat:"Morning Moment With Families^p"} {changeTo:"", appliedCharacterStyle:"[No character style]", appliedParagraphStyle:"h1 B"} {includeLockedStoriesForFind:false, includeLockedLayersForFind:false, includeHiddenLayers:false, includeMasterPages:false, includeFootnotes:true, wholeWord:false, caseSensitive:false, kanaSensitive:true, widthSensitive:true, ignoreKashidas:true, ignoreDiacritics:false, searchBackwards:false} //apply h1 B with ch style none
Thanks to anyone who can help.