fires when a sheet is renamed
name | string | the name of the sheet in question |
newName | string | the new name given to the sheet |
$$("ssheet").attachEvent("onSheetRename", function(name, newName){
// some code here
console.log("Sheet " + name + " was renamed to " + newName);
});