Copy link to clipboard
Copied
hello everyone, how can I write the code part of a script that replaces the text inside an interactive button?
Below is an example on how to change the content of a textframe, but for buttons? I see from the Layer tab that they have a subgroup enclosed in square brackets [Normal].
var casellaTesto = documentoAperto.pages[0].textFrames.itemByName("casellaDescrizione");
var newContents = "nuvo testo";
if (casellaTesto.isValid && casellaTesto.contents.length > 0) {
casellaTesto.contents = newContents;
}
I should have found the solution, I attach it.
var stati = [
"Normale",
"Rollover",
"Clic"
];
for(i =0;i<stati.length;i++){
var statoDesiderato = pulsanteXX.states.itemByName(stati[i]);
if(statoDesiderato){
statoDesiderato.active = true;
var textFrameXX = pulsanteXX.allPageItems[1];
textFrameXX.contents = "test";
}
}
Copy link to clipboard
Copied
I found out how to rename the text in the button, but it only performs the change on one state of the button, how can I do it on all?
Here are the states of the button
$$$/StateType/Normal
$$$/StateType/Over
$$$/StateType/Down
var pulsanteXX = doc.buttons.itemByName("LINGUA");
var textFrame = pulsanteXX.allPageItems[1];
textFrame.contents = "test";
Copy link to clipboard
Copied
I should have found the solution, I attach it.
var stati = [
"Normale",
"Rollover",
"Clic"
];
for(i =0;i<stati.length;i++){
var statoDesiderato = pulsanteXX.states.itemByName(stati[i]);
if(statoDesiderato){
statoDesiderato.active = true;
var textFrameXX = pulsanteXX.allPageItems[1];
textFrameXX.contents = "test";
}
}