Last active
September 12, 2016 14:22
-
-
Save marianomike/90a3380eac4df5eeb8d2397349552edb to your computer and use it in GitHub Desktop.
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 'common.js' | |
var onRun = function(context) { | |
//reference the Application | |
var app = [NSApplication sharedApplication]; | |
//reference the Sketch Document | |
var doc = context.document; | |
//reference all the pages in the document in an array | |
var pages = [doc pages]; | |
alert("Number of Pages", "This document has " + pages.count() + " pages."); | |
//loop through the pages of the document | |
for (var i = 0; i < pages.count(); i++){ | |
//reference each page | |
var page = pages[i]; | |
//get the name of the page | |
var pageName = [page name]; | |
//show the page name in the console | |
log(pageName); | |
} | |
//show a message in app | |
doc.showMessage("MyPlugin Finished!"); | |
//send an alert message to the application | |
alert("Plugin Finished!", "This is a message saying the Plugin is finished.") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment