- Mi Vecino Totoro
- Arrietty y el mundo de los diminutos
- Ponyo en el acantilado
- Nicky, la aprendiz de bruja
- Haru en el reino de los gatos
- La Guerra de los Mapaches de Pompoko
- La Historia de los Niños Lobo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var layers = [[doc currentPage] layers], | |
| document_path = [[doc fileURL] path].split([doc displayName])[0], | |
| currentFilePath = [[doc fileURL] path]; | |
| // Loop through layers, picking symbols: | |
| var allSymbols = {} | |
| for (var i=0; i < [layers count]; i++) { | |
| var current = [layers objectAtIndex:i], | |
| currentID = current.sharedObjectID() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var URL = "http://gabrielecirulli.github.io/2048/" | |
| var frame = NSMakeRect(0,0,340,480) | |
| var webView = [[WebView alloc] initWithFrame:frame] | |
| [[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:URL]]] | |
| var mask = NSTitledWindowMask + NSClosableWindowMask + NSMiniaturizableWindowMask + NSResizableWindowMask + NSUtilityWindowMask; | |
| var window = [[NSPanel alloc] initWithContentRect:frame styleMask:mask backing:NSBackingStoreBuffered defer:true]; | |
| [[window contentView] addSubview:webView] | |
| [window makeKeyAndOrderFront:nil] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Post to Campfire (ctrl alt cmd p) | |
| // Setup | |
| var CHAT_ROOM = "Main Room" | |
| var flint = SBApplication.application("Flint"), | |
| msg = [doc askForUserInput:"Post to Campfire:" initialValue:""]; | |
| if (msg) { | |
| [flint post:msg toRoom:CHAT_ROOM] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copy Layer List to Clipboard | |
| // Change this variables to configure the script: | |
| var COPY_LAYER_TYPE = false, | |
| TRAVERSE_GROUPS = true | |
| var layers = [[doc currentPage] layers], | |
| loop = [layers objectEnumerator], | |
| layer_tree = "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Change font (ctrl a) | |
| var doc = context.document, | |
| selection = context.selection, | |
| font_name = [doc askForUserInput:"Font name:" initialValue:"Arial"]; | |
| function check_layer(layer){ | |
| log(layer) | |
| var className = layer.className() | |
| log("Checking layer " + layer + " of klass: " + className) | |
| if (className == "MSTextLayer") { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fw.getDocumentDOM().selectAll(); | |
| fw.getDocumentDOM().duplicateFrame(-1, 1, "after current", true); |
NOTE: the list has moved to https://github.com/sketchplugins/plugin-directory
A list of Sketch plugins hosted at GitHub, in no particular order.
- brandonbeecroft/Lorem-Ipsum-Plugin-for-Sketch This is a plugin for quickly creating Lorem Ipsum text in Sketch
- sebj/Sketch Templates and Plugins for Sketch by Bohemian Coding
- FredericJacobs/crop_Artboard A script to export the Sketch App artboards to the clipboard
- almonk/SketchGit A simple Git client built right into Sketch.
For example xhdpi will be the reference for Android design and then we will able to export to ldpi, mdpi, hdpi and xxhdpi with only one click.
The export function creates a folder for each format named (ldpi, mdpi, hdpi, xhdpi, xxhdpi...) and each slice wil be resized like that :
- xhdpi = 100%
- ldpi = 37,5%
- mdpi = 50%
- hdpi = 75%
- xxhpi = 150%
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Clear All Guides in Current Artboard | |
| #import 'library/common.js' | |
| var current_artboard = [[doc currentPage] currentArtboard]; | |
| if (current_artboard != null) { | |
| var horizontal_guides = [current_artboard horizontalRulerData], | |
| vertical_guides = [current_artboard verticalRulerData]; | |
| // Remove horizontal guides |