Downloads

Custom HEX Color Picker – 1520 colours

Using a couple of hex colour list on the web. I made a .clr  Colour Picker Palette file.

This can be place in you users colour folder:

~/Library/Colors/

Once done. Newly launched Applications will pick up the new palette.

Screen Shot 2014-01-22 at 15.23.20

Download “Custom Apple Color Picker : 1520 HEX colors” Web-Safe-other-Hex-Colors.clr_.zip – Downloaded 17047 times – 20.57 KB

Join list items Script libraries command (new version 2)

A  Applescript Script library command to join Applescript List items as a single string.

Continue reading ? Join List items Applescript Script libraries command

Text Utils is a Applescript script libraries suite. It holds a ‘missing command’ to join applescript list items into a string


Download “Text-Utils.scptd_v1” Text-Utils.scptd_v1.zip – Downloaded 3990 times – 6.60 KB

Download “Text-Utils.scptd_v2” Text-Utils.scptd_v2.zip – Downloaded 4480 times – 9.30 KB

Some Version 2 examples:

Examples

Needed Use Clauses

use script "Text Utils"

#example 1.

set theList to {"/Users/UserName/Folder 1", "/Users/UserName/Folder 2"}

 join list items theList using text " " with items in single quotes

Result:

"'/Users/UserName/Folder 1' '/Users/UserName/Folder 2' "


#example 2.

set theList to {"the", "cat", ", "over"}

join list items theListusing text "" with items in no quotes

Result:

"thecatjumpover"


#example 3.

set theList to {"the", "cat", "jump", "over"}

join list items theListusing text "," with items in no quotes

Result:

"the,cat,jump,over"



Check item size and type of items for emailing – Automator Service workflow

A workflow to go with a stackoverflow.com question.

automator-accepts-files-and-zips-folders-warn-about-sizes

A proof of concept. And the final stage of adding files to email is left to you. You should also note that there is no checking for packages of applications/bundles. Which on a Mac will be seen as a file but elsewhere as a folder.

Continue reading ?

[Download not found]

 

My very first Automator Action

This Action Get first Finder Window Path. It will return the Posix path of the front most open Finder window.

I had already written some code for an application that could get the path of open Finder windows…

Continue reading ?

Download BETA versions

 versions

This is for 10.9.x   v103- Action is now placed in Files & Folders in the Automator library

Download “Get first Finder Window Path_10.9 BETA” Get-first-Finder-Window-Path.action_BETA_10.9_103.zip – Downloaded 10696 times – 8.06 KB
This is for System : 10.8

Download “Get first Finder Window Path 10.8” GFFWPath_Action_1.0.2b10.8build.zip%22 – Downloaded 893 times –
This is for System : 10.6


Download “Get first Finder Window Path_10.6” GFFWPath_Action_1.0.2b10.6build.zip – Downloaded 7021 times – 7.52 KB

A Simple NSPopcoer

Download “Simple NSPopover test project” NSPopoverTest.zip – Downloaded 2563 times – 65.62 KB

Leave a Reply

Your email address will not be published. Required fields are marked *