View Evernote Mac File Import.AppleScript
This file contains 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
property ptyScriptName : "Import Selected Files Selected in Finder into Evernote with Tags" | |
property ptyScriptVer : "3.1" -- Add support for Tag Input | |
property ptyScriptDate : "2018-10-12" | |
property ptyScriptAuthor : "JMichaelTX" | |
property version : ptyScriptVer | |
property LF : linefeed | |
property ptyENicon : path to resource "Evernote.icns" in bundle (path to application "Evernote") | |
(* | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
View Create Internet Location File from EN Note.applescript
This file contains 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
property ptyScriptName : "Create Internet Location File from EN Note" | |
property ptyScriptVer : "2.0" | |
property ptyScriptDate : "2018-03-29" | |
property ptyScriptAuthor : "JMichaelTX" | |
(* | |
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
REQUIRED: | |
1. macOS 10.11.6+ | |
2. Mac Applications |
View revealPFItemInFinder.applescript
This file contains 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
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
on revealPFItemInFinder() | |
--––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– | |
(* VER: 2.1 2018-03-19 | |
PURPOSE: Reveal Item in Finder that is Selected in Path Finder | |
RETURNS: alias of item selected in both Finder and Path Finder | |
AUTHOR: JMichaelTX | |
--––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– |
View Set Evernote Mac Font and Text Size using AppleScript.AppleScript
This file contains 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
property ptyScriptName : "Set EN Mac Font Name and Size" | |
property ptyScriptVer : "2.0" | |
property ptyScriptDate : "2017-06-12" | |
property ptyScriptAuthor : "JMichaelTX" | |
property LF : linefeed | |
use AppleScript version "2.4" -- Yosemite (10.10) or later | |
use scripting additions | |
my enSetFontAndSize("Courier New", "14") |
View Add Prefix Suffix to Note Titles.applescript
This file contains 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
(* | |
=============================================================================== | |
Add Prefix or Suffix to Selected Note Titles | |
=============================================================================== | |
VER: 1.0 LAST UPDATE: 2017-04-17 | |
AUTHOR: JMichaelTX | |
USE AT YOUR OWN RISK. | |
This script has had only VERY LIMITED TESTING. |
View Create Hyperlink with Custom Protocol from Selected Text.applescript
This file contains 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
property gstrScriptName : "Create Hyperlink with Custom Protocol from Selected Text" | |
property gstrScriptVer : "1.0.1" | |
property gstrScriptDate : "Mon, Nov 16, 2015" | |
(* | |
—————————————————————————————————————————————————— | |
PURPOSE: | |
• Based on the User's selection, create and put on Clipboard: | |
• RTF formatted Hyperlink | |
• This supports custom URL Schemes/Protocols not supported by Evernote |
View EN Mac Append Note OR Create New Note (AS).applescript
This file contains 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
(* | |
=============================================================================== | |
Append to Existing Note OR Create New Note | |
=============================================================================== | |
VER: 1.2 LAST UPDATE: 2016-07-05 | |
PURPOSE: | |
• Search for Existing Note by Title and Notebook | |
• IF found, append HTML |
View Copy & Get Selection to Clipboard JXA.js
This file contains 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
'use strict'; | |
var app = Application.currentApplication() | |
app.includeStandardAdditions = true | |
var mySelection = copySelection("Safari", 1) | |
mySelection | |
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
function copySelection(pAppName, pTimeLimitSec) { |
View EN Mac Create Note from Text in Delimiters.applescript
This file contains 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
(* | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
[EN] Extract Text in Delimiters (AS) | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
VER: 1.3 LAST UPDATE: 2016-06-13 | |
PURPOSE: | |
• Extract text in delimited from all Notes in Specified Notebook |
NewerOlder