[ { "appName": "Sketch.app", "shortcut": [ { "menu": "Mask with Selected Shape", "key": "7", "modifier": ["command"] }, {
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
[ | |
{ | |
"appName": "Sketch.app", | |
"shortcut": [ | |
{ | |
"menu": "Flatten Selection to Bitmap", | |
"key": "e", | |
"modifier": [ "command", "control", "shift" ] | |
} | |
] |
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
@import '/path/to/script-file.js'; |
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
{ | |
"<class>" = MSShapeGroup; | |
clippingMaskMode = 0; | |
exportOptions = { | |
"<class>" = MSExportOptions; | |
exportFormats = ( | |
); | |
includedLayerIds = ( | |
); | |
layerOptions = 0; |
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 doc = context.document; | |
var sel = context.selection; | |
var borderPosition = doc.askForUserInput_initialValue_( 'Set Border Position: 0:Center / 1:Inside / 2:OutSide', '' ); | |
if ( !borderPosition || '' == borderPosition || ( 0 > borderPosition || 2 < borderPosition ) ) return false; | |
for ( var i = sel.count() - 1; i >= 0; i-- ) { | |
var border = sel[i].style().borders(); | |
border.objectAtIndex(0).setPosition( borderPosition ); | |
}; |
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
log('This is an example Sketch script.'); | |
var doc = context.document; | |
var documentName = context.document.displayName(); | |
log('The current document is named: ' + documentName); | |
var selectedLayers = context.selection; | |
var selectedCount = selectedLayers.count(); |
大都会岡山Advent Calendar」14日目です。今年はアタック25じゃないので、気分が楽ですね。
ウンチクを語れるほど詳しくはないのですが、お酒は日本酒とビールが好きです。今回はきちんと岡山らしいことを書こうかなということで、エンジニアの燃料といわれる?ビール、それも大都会の地ビール(醸造所?)を淡々と紹介していきます。ITにまったく無関係なポストが実はお初だったりします。
ちなみに、普段は大手ビールメーカーものの普通のビールでは「一番搾り」「ヱビス(特に琥珀)」、ビールではないですが「ホワイトベルグ」を好んでよく飲みます。あとは、「白濁」や「よなよなエール」とかも好みです。細かくレビューできる舌を持ち合わせておらず、味がどうとかは細かく書きませんので、この辺りを勘案してみていただけると幸いです。
http://blog.mmmcorp.co.jp/blog/2015/11/27/sketch3_nogood/
基本的に解決できそうなので、簡単にお返事を書きました。
3.4.2で欧文は直ってますね。和文については、現状のままでは修正されないと思うので、バグレポートを送りましょう。自分で使うツールは自分で使いやすくなるように要望を上げていきましょう!
NewerOlder