Skip to content

Instantly share code, notes, and snippets.

@kuyseng
Created May 26, 2012 03:35
Show Gist options
  • Save kuyseng/2792004 to your computer and use it in GitHub Desktop.
Save kuyseng/2792004 to your computer and use it in GitHub Desktop.
javascript: indesign replace this page
function replace_this_page (arr, text, num) {
for(var i = 0, len = arr.length;i<len;i++){
if(arr[i] == num){
arr.splice(i,1); arr.unshift(text);}
}
return arr;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment