Skip to content

Instantly share code, notes, and snippets.

@bomberstudios
Created March 26, 2014 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bomberstudios/9786816 to your computer and use it in GitHub Desktop.
Save bomberstudios/9786816 to your computer and use it in GitHub Desktop.
Post to Campfire from Sketch.app — Requires Flint.app
// 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]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment