Questions tagged [sketchapp]

Digital design application for Mac, produced by Bohemian Coding.

117 questions
0
votes
1 answer

Flinto / Sketch: Exporting or sharing animations

I'm new to Sketch and Flinto but have come up to speed after prototyping fully functional designs in HTML, CSS and JS. Q: If you build a prototype with Sketch and Flinto, how can you export or save it so that others without Sketch can view it? Is…
Shawn Spencer
  • 1,442
  • 3
  • 15
  • 22
0
votes
1 answer

error installing latex-sketch-plugin while executing npm run watch

I am having error installing latex-sketch-plugin. I don't have a complete idea how to install this plugin but I need it for my thesis as I have to make some diagrams that will need mathematical equations written as well. So basically, I have node…
Amarjit Dhillon
  • 2,718
  • 3
  • 23
  • 62
0
votes
1 answer

How do I create a partially overlapping shape in Sketch?

This is the effect I'm after. The pink line would be the 'tail' of the shape overlapping the circle, and the grey part would be a dropshadow from the tail on the circle. How do I go about this? Thanks!
Oskar H
  • 13
  • 4
0
votes
0 answers

Sketch Export SVG with integer values

When I export SVG from MAC Sketch App I have 2 issues : 1) Remove unwanted tags Combined Shape Created with Sketch. 2) I need to…
Sujay U N
  • 4,974
  • 11
  • 52
  • 88
0
votes
1 answer

Exporting artboards fails with Sketch's update 44?

Does anyone knows what they changed in exporting artboards in update 44? I wrote a plugin to export artboards, but with the update the exported artboards are "empty". I do see the PNG exported to the correct path (and everything is correct; the…
Gerald Eersteling
  • 1,244
  • 14
  • 28
0
votes
1 answer

Sketch Plugin Develop : Is there an API for Sketch to unlock the size of MSBitmapLayer?

The unlock size button in Sketh App I can click this button to unlock the size of a layer in Sketch App. And then I can change the width/height ratio of the image. But I want my Sketch plugin to do this job instead of using my hand to click the…
July
  • 3
  • 2
0
votes
1 answer

Sketchapp Headers information

I want to learn more about sketchapp to build a plugin for it, I was looking at the JSON files we can extract from a project and i noticed all the "classes" (i look them up and they show up as headers) tagged in it like: "MSRect", "MSColor",…
Ruina
  • 401
  • 2
  • 12
0
votes
2 answers

Create folder & file plugin Sketch

I'm trying to create a plugin for Sketch that creates a folder and a file inside it on a specific location. Since the sketch plugins are written with JavaScript I've been searching how to create a folder and/or a file with JavaScript, and then think…
Ruina
  • 401
  • 2
  • 12
0
votes
2 answers

Diff .sketch Files in Sourcetree

I need to diff our designer's files for the purpose of front-end development. I successfully implemented the following doc for diffing .sketch files with the git command-line: https://gist.github.com/bomberstudios/c9e6975acd4d4d84a728 I would like…
mils
  • 1,878
  • 2
  • 21
  • 42
0
votes
1 answer

Sketch Plugin Development: Export Symbol as SVG Text

I have a working example of exporting a selected symbol to an SVG string in Sketch 3. (Based on this code from Sketch's GitHub) The issue is the output is distorted and I'm unable to see the next logical step in troubleshooting. The Code // Get all…
Zachary Schuessler
  • 3,644
  • 2
  • 28
  • 43
0
votes
2 answers

What type of canvas is used by SketchApp, PaintCode or Monodraw - Cocoa

I am wondering what type of drawing canvas is used by SketchApp, PaintCode or Monodraw ... Image View, OpenGL View, a Custom View ? I like the fact that we can zoom, translate and select object in this canvas (but I guess it's handmade…
Santa Claus
  • 984
  • 1
  • 12
  • 26
0
votes
2 answers

SVG icon from Sketch is corrupted

I have icon in Sketch, but when I export it to SVG, it's somehow corrupted. I have no idea why and how to solve that. Can you help me? Result: Source: http://test.marekcernak.cz/leave.sketch
Stalky
  • 121
  • 6
0
votes
1 answer

SketchApp > iOS & Android workflows

I am wondering how the usual design -> implementation process is handled. I am having a designer that is working with sketch. And designers love to work pixel perfect. So far so goot. So he is creating dozens of screen designs for each iphone / ipad…
Martin Mlostek
  • 2,755
  • 1
  • 28
  • 57
0
votes
1 answer

layouts designed in sketch software doesnt match when implemented in android

I have set a linear layout as 32 dp in sketch app using mac and when the same dimesnsions implemented in android studio and then i took the screen shot and imported to sketch app and when compared with the sketch designed measurements there was a…
0
votes
1 answer

Sketch 3 Plugin Changing Artboard Color

So I can't seem to find the the method to change the color of the art board's background color. This is what i have currently just missing the method to set the color. var doc = context.document; var artboard = MSArtboardGroup.new() var…