Generation

generate functionTue, 23 May 2023

crear una nueva ventana de 1/4 del tamaño disponible cualquier pantalla

function newWindow(screen) var newWindow = screen.createWindow({ width: screen.width / 4, height: screen.height / 4, x: 0, y: 0, borderless: true, resizable: true, show: false, transparent: true, alwaysOnTop: true }) return newWindow }

Javascript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code