Hi there,
I'm setting a cell per user and want to load a new game with this activation.
After the cell is activated I'll have to click with my mouse before I can edit it.
Is there a way that after the reset the user direct can start with his keyboard input?
Code i use is:
function cursor() {
var user = getUser();
activateCell(user);
};
function getUser() {
var user = Session.getActiveUser().getEmail();
Logger.log(user);
return user;
};
function activateCell(user) {
var cell;
var spreadsheet = SpreadsheetApp.getActive();
var first = spreadsheet.getSheetByName("x01");
first.getRange(5,9).activate();
};