… Sure! 😉
(^/) The Jedi
/*
_FRIdNGE-0745_BeginningOfPara.jsx
Script written by FRIdNGE, Michel Allio [11/12/2023]
*/
app.doScript("main()", ScriptLanguage.javascript, undefined, UndoModes.ENTIRE_SCRIPT, "Beginning Of Para! …");
function main()
{
// Name of your Char Style
var myCharStyle = "red";
// Place the cursor inside your Story
var myStory = app.selection[0].parentStory;
app.findGrepPreferences = app.changeGrepPreferences = null;
app.findGrepPreferences.findWhat = "(^.{4,})(?=.*\\r\\1)";
myFound1 = myStory.findGrep();
for ( var i = 0; i < myFound1.length; i++ ) {
app.findGrepPreferences = app.changeGrepPreferences = null;
app.findGrepPreferences.findWhat = "^" + myFound1[i].contents;
myFound2 = myStory.findGrep();
for ( var j = 0; j < myFound2.length; j++ ) if ( myFound2[j].characters[0].appliedCharacterStyle.name != myCharStyle ) myFound2[j].appliedCharacterStyle = myCharStyle;
}
app.findGrepPreferences = app.changeGrepPreferences = null;
alert( "Done! …" )
}