Tutorial: Window.moveBy

Window.moveBy

Moves the window by a specified amount

Options Object

{
    moveIndependently: true // Move a window indpendently of its group or along with its group. Defaults to false.
}

Example

async function createWin() {
    const app = await fin.Application.start({
        name: 'myApp',
        uuid: 'app-1',
        url: 'https://cdn.openfin.co/docs/javascript/stable/tutorial-Window.moveBy.html',
        autoShow: true
    });
    return await app.getWindow();
}

async function moveBy(left, top) {
    const win = await createWin();
    const options = {
        moveIndependently: false
    }
    return await win.moveBy(left, top, options);
}

moveBy(580, 300).then(() => console.log('Moved')).catch(err => console.log(err));