Skip to content

Instantly share code, notes, and snippets.

@kemiljk
Created October 14, 2021 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kemiljk/422fcc872562717fef2eaca6beae1c03 to your computer and use it in GitHub Desktop.
Save kemiljk/422fcc872562717fef2eaca6beae1c03 to your computer and use it in GitHub Desktop.
Scripter: Create slides, maintaining their aspect ratio, at any width.
function buildSlides() {
const frame = figma.createFrame()
const width = 1440
const height = width * 9/16
frame.name = "Slide"
frame.resize(width, height)
}
buildSlides()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment