/Applications/Adobe\ Illustrator\ CC\ 2014/Presets.localized/en_US/Scripts
Restart Illy and you should now see:
// http://localhost:41416/ | |
// … and then view console log. | |
gist: 'https://gist.githubusercontent.com/mhulse/93191698219b33471883a4846dd47809/raw/keys.json', | |
command: 'lsappinfo info -only bundlepath `lsappinfo front`', | |
refreshFrequency: '5s', | |
style: [ |
package { | |
import flash.display.*; | |
import flash.events.*; | |
public class Main extends MovieClip { | |
// Constructor: | |
public function Main() { | |
# fromhex A52A2A | |
# fromhex "#A52A2A" | |
# BLUE_VIOLET=$(fromhex "#8A2BE2") | |
# http://unix.stackexchange.com/a/269085/67282 | |
function fromhex() { | |
hex=$1 | |
if [[ $hex == "#"* ]]; then | |
hex=$(echo $1 | awk '{print substr($0,2)}') | |
fi | |
r=$(printf '0x%0.2s' "$hex") |
#foo-other { display: none; } |
{ | |
"key": "value" | |
} |
/* jshint laxbreak:true, -W043, -W030 */ | |
/* globals app */ | |
// jshint ignore:start | |
#target illustrator | |
#targetengine main | |
// jshint ignore:end | |
/** | |
* @@@BUILDINFO@@@ Boilerplate.jsx !Version! Fri Dec 25 2015 22:47:45 GMT-0800 |
#target illustrator | |
function make() { | |
var name = 'temp'; // Action name. | |
var set = 'temp'; // Set name. | |
var level = app.userInteractionLevel; | |
var action; | |
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS; |
/* globals $, app, BridgeTalk */ | |
#target illustrator | |
#targetengine main | |
/** | |
* @see https://gist.github.com/mhulse/aac5d6782868b612320b | |
* @see https://gist.github.com/mhulse/eb0ffb2bd365975632d2 | |
*/ |