我正在尝试查找用户是否选择了以前的历史记录状态,或者用户是否返回了历史记录。
我可以找到历史上的特定步骤,但无法真正判断它是否是当前选择的步骤。
docRef = activeDocument;
//var SavedHistory = docRef.historyStates.length - 1;
var BackHistory = docRef.activeHistoryState;
BackHistory = docRef.historyStates[0];
// var originalHistory = docRef.historyStates.getByName(docRef.name);
if (BackHistory){
alert("true")
} else {
alert("false")
}