效果图

142Echarts - 矩形树图(Disk Usage)_bundle

源代码

<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 引入 echarts.js -->
<script src="js/echarts.min.js"></script>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="dist/extension/dataTool.js"></script>
</head>

<body>
<!-- 为ECharts准备一个具备大小(宽高)的Dom -->
<div id="main" style="width: 1024px;height:768px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
var option;

myChart.showLoading();

$.get('data/disk.tree.json', function(diskData) {
myChart.hideLoading();

function colorMappingChange(value) {
var levelOption = getLevelOption(value);
chart.setOption({
series: [{
levels: levelOption
}]
});
}

var formatUtil = echarts.format;

function getLevelOption() {
return [{
itemStyle: {
normal: {
borderWidth: 0,
gapWidth: 5
}
}
},
{
itemStyle: {
normal: {
gapWidth: 1
}
}
},
{
colorSaturation: [0.35, 0.5],
itemStyle: {
normal: {
gapWidth: 1,
borderColorSaturation: 0.6
}
}
}
];
}

myChart.setOption(option = {

title: {
text: 'Disk Usage',
left: 'center'
},

tooltip: {
formatter: function(info) {
var value = info.value;
var treePathInfo = info.treePathInfo;
var treePath = [];

for(var i = 1; i < treePathInfo.length; i++) {
treePath.push(treePathInfo[i].name);
}

return [
'<div class="tooltip-title">' + formatUtil.encodeHTML(treePath.join('/')) + '</div>',
'Disk Usage: ' + formatUtil.addCommas(value) + ' KB',
].join('');
}
},

series: [{
name: 'Disk Usage',
type: 'treemap',
visibleMin: 300,
label: {
show: true,
formatter: '{b}'
},
itemStyle: {
normal: {
borderColor: '#fff'
}
},
levels: getLevelOption(),
data: diskData
}]
});
});

//myChart.setOption(option);
</script>
</body>

</html>

disk.tree.json

[
{
"value": 40,
"name": "Accessibility",
"path": "Accessibility"
},
{
"value": 180,
"name": "Accounts",
"path": "Accounts",
"children": [
{
"value": 76,
"name": "Access",
"path": "Accounts/Access",
"children": [
{
"value": 12,
"name": "DefaultAccessPlugin.bundle",
"path": "Accounts/Access/DefaultAccessPlugin.bundle"
},
{
"value": 28,
"name": "FacebookAccessPlugin.bundle",
"path": "Accounts/Access/FacebookAccessPlugin.bundle"
},
{
"value": 20,
"name": "LinkedInAccessPlugin.bundle",
"path": "Accounts/Access/LinkedInAccessPlugin.bundle"
},
{
"value": 16,
"name": "TencentWeiboAccessPlugin.bundle",
"path": "Accounts/Access/TencentWeiboAccessPlugin.bundle"
}
]
},
{
"value": 92,
"name": "Authentication",
"path": "Accounts/Authentication",
"children": [
{
"value": 24,
"name": "FacebookAuthenticationPlugin.bundle",
"path": "Accounts/Authentication/FacebookAuthenticationPlugin.bundle"
},
{
"value": 16,
"name": "LinkedInAuthenticationPlugin.bundle",
"path": "Accounts/Authentication/LinkedInAuthenticationPlugin.bundle"
},
{
"value": 20,
"name": "TencentWeiboAuthenticationPlugin.bundle",
"path": "Accounts/Authentication/TencentWeiboAuthenticationPlugin.bundle"
},
{
"value": 16,
"name": "TwitterAuthenticationPlugin.bundle",
"path": "Accounts/Authentication/TwitterAuthenticationPlugin.bundle"
},
{
"value": 16,
"name": "WeiboAuthenticationPlugin.bundle",
"path": "Accounts/Authentication/WeiboAuthenticationPlugin.bundle"
}
]
},
{
"value": 12,
"name": "Notification",
"path": "Accounts/Notification",
"children": [
{
"value": 12,
"name": "SPAAccountsNotificationPlugin.bundle",
"path": "Accounts/Notification/SPAAccountsNotificationPlugin.bundle"
}
]
}
]
},
{
"value": 1904,
"name": "AddressBook Plug-Ins",
"path": "AddressBook Plug-Ins",
"children": [
{
"value": 744,
"name": "CardDAVPlugin.sourcebundle",
"path": "AddressBook Plug-Ins/CardDAVPlugin.sourcebundle",
"children": [
{
"value": 744,
"name": "Contents",
"path": "AddressBook Plug-Ins/CardDAVPlugin.sourcebundle/Contents"
}
]
},
{
"value": 28,
"name": "DirectoryServices.sourcebundle",
"path": "AddressBook Plug-Ins/DirectoryServices.sourcebundle",
"children": [
{
"value": 28,
"name": "Contents",
"path": "AddressBook Plug-Ins/DirectoryServices.sourcebundle/Contents"
}
]
},
{
"value": 680,
"name": "Exchange.sourcebundle",
"path": "AddressBook Plug-Ins/Exchange.sourcebundle",
"children": [
{
"value": 680,
"name": "Contents",
"path": "AddressBook Plug-Ins/Exchange.sourcebundle/Contents"
}
]
},
{
"value": 432,
"name": "LDAP.sourcebundle",
"path": "AddressBook Plug-Ins/LDAP.sourcebundle",
"children": [
{
"value": 432,
"name": "Contents",
"path": "AddressBook Plug-Ins/LDAP.sourcebundle/Contents"
}
]
},
{
"value": 20,
"name": "LocalSource.sourcebundle",
"path": "AddressBook Plug-Ins/LocalSource.sourcebundle",
"children": [
{
"value": 20,
"name": "Contents",
"path": "AddressBook Plug-Ins/LocalSource.sourcebundle/Contents"
}
]
}
]
},
{
"value": 36,
"name": "Assistant",
"path": "Assistant",
"children": [
{
"value": 36,
"name": "Plugins",
"path": "Assistant/Plugins",
"children": [
{
"value": 36,
"name": "AddressBook.assistantBundle",
"path": "Assistant/Plugins/AddressBook.assistantBundle"
},
{
"value": 8,
"name": "GenericAddressHandler.addresshandler",
"path": "Recents/Plugins/GenericAddressHandler.addresshandler"
},
{
"value": 12,
"name": "MapsRecents.addresshandler",
"path": "Recents/Plugins/MapsRecents.addresshandler"
}
]
}
]
},
{
"value": 53228,
"name": "Automator",
"path": "Automator",
"children": [
{
"value": 0,
"name": "ActivateFonts.action",
"path": "Automator/ActivateFonts.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/ActivateFonts.action/Contents"
}
]
},
{
"value": 12,
"name": "AddAttachments to Front Message.action",
"path": "Automator/AddAttachments to Front Message.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/AddAttachments to Front Message.action/Contents"
}
]
},
{
"value": 276,
"name": "AddColor Profile.action",
"path": "Automator/AddColor Profile.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/AddColor Profile.action/Contents"
}
]
},
{
"value": 32,
"name": "AddGrid to PDF Documents.action",
"path": "Automator/AddGrid to PDF Documents.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/AddGrid to PDF Documents.action/Contents"
}
]
},
{
"value": 12,
"name": "AddMovie to iDVD Menu.action",
"path": "Automator/AddMovie to iDVD Menu.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/AddMovie to iDVD Menu.action/Contents"
}
]
},
{
"value": 20,
"name": "AddPhotos to Album.action",
"path": "Automator/AddPhotos to Album.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/AddPhotos to Album.action/Contents"
}
]
},
{
"value": 12,
"name": "AddSongs to iPod.action",
"path": "Automator/AddSongs to iPod.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/AddSongs to iPod.action/Contents"
}
]
},
{
"value": 44,
"name": "AddSongs to Playlist.action",
"path": "Automator/AddSongs to Playlist.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/AddSongs to Playlist.action/Contents"
}
]
},
{
"value": 12,
"name": "AddThumbnail Icon to Image Files.action",
"path": "Automator/AddThumbnail Icon to Image Files.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/AddThumbnail Icon to Image Files.action/Contents"
}
]
},
{
"value": 268,
"name": "Addto Font Library.action",
"path": "Automator/Addto Font Library.action",
"children": [
{
"value": 268,
"name": "Contents",
"path": "Automator/Addto Font Library.action/Contents"
}
]
},
{
"value": 0,
"name": "AddressBook.definition",
"path": "Automator/AddressBook.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/AddressBook.definition/Contents"
}
]
},
{
"value": 408,
"name": "AppleVersioning Tool.action",
"path": "Automator/AppleVersioning Tool.action",
"children": [
{
"value": 408,
"name": "Contents",
"path": "Automator/AppleVersioning Tool.action/Contents"
}
]
},
{
"value": 568,
"name": "ApplyColorSync Profile to Images.action",
"path": "Automator/ApplyColorSync Profile to Images.action",
"children": [
{
"value": 568,
"name": "Contents",
"path": "Automator/ApplyColorSync Profile to Images.action/Contents"
}
]
},
{
"value": 348,
"name": "ApplyQuartz Composition Filter to Image Files.action",
"path": "Automator/ApplyQuartz Composition Filter to Image Files.action",
"children": [
{
"value": 348,
"name": "Contents",
"path": "Automator/ApplyQuartz Composition Filter to Image Files.action/Contents"
}
]
},
{
"value": 368,
"name": "ApplyQuartz Filter to PDF Documents.action",
"path": "Automator/ApplyQuartz Filter to PDF Documents.action",
"children": [
{
"value": 368,
"name": "Contents",
"path": "Automator/ApplyQuartz Filter to PDF Documents.action/Contents"
}
]
},
{
"value": 96,
"name": "ApplySQL.action",
"path": "Automator/ApplySQL.action",
"children": [
{
"value": 96,
"name": "Contents",
"path": "Automator/ApplySQL.action/Contents"
}
]
},
{
"value": 372,
"name": "Askfor Confirmation.action",
"path": "Automator/Askfor Confirmation.action",
"children": [
{
"value": 372,
"name": "Contents",
"path": "Automator/Askfor Confirmation.action/Contents"
}
]
},
{
"value": 104,
"name": "Askfor Finder Items.action",
"path": "Automator/Askfor Finder Items.action",
"children": [
{
"value": 104,
"name": "Contents",
"path": "Automator/Askfor Finder Items.action/Contents"
}
]
},
{
"value": 52,
"name": "Askfor Movies.action",
"path": "Automator/Askfor Movies.action",
"children": [
{
"value": 52,
"name": "Contents",
"path": "Automator/Askfor Movies.action/Contents"
}
]
},
{
"value": 44,
"name": "Askfor Photos.action",
"path": "Automator/Askfor Photos.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/Askfor Photos.action/Contents"
}
]
},
{
"value": 16,
"name": "Askfor Servers.action",
"path": "Automator/Askfor Servers.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/Askfor Servers.action/Contents"
}
]
},
{
"value": 52,
"name": "Askfor Songs.action",
"path": "Automator/Askfor Songs.action",
"children": [
{
"value": 52,
"name": "Contents",
"path": "Automator/Askfor Songs.action/Contents"
}
]
},
{
"value": 288,
"name": "Askfor Text.action",
"path": "Automator/Askfor Text.action",
"children": [
{
"value": 288,
"name": "Contents",
"path": "Automator/Askfor Text.action/Contents"
}
]
},
{
"value": 0,
"name": "Automator.definition",
"path": "Automator/Automator.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/Automator.definition/Contents"
}
]
},
{
"value": 12,
"name": "BrowseMovies.action",
"path": "Automator/BrowseMovies.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/BrowseMovies.action/Contents"
}
]
},
{
"value": 552,
"name": "BuildXcode Project.action",
"path": "Automator/BuildXcode Project.action",
"children": [
{
"value": 552,
"name": "Contents",
"path": "Automator/BuildXcode Project.action/Contents"
}
]
},
{
"value": 296,
"name": "BurnA Disc.action",
"path": "Automator/BurnA Disc.action",
"children": [
{
"value": 296,
"name": "Contents",
"path": "Automator/BurnA Disc.action/Contents"
}
]
},
{
"value": 8,
"name": "ChangeCase of Song Names.action",
"path": "Automator/ChangeCase of Song Names.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ChangeCase of Song Names.action/Contents"
}
]
},
{
"value": 60,
"name": "ChangeType of Images.action",
"path": "Automator/ChangeType of Images.action",
"children": [
{
"value": 60,
"name": "Contents",
"path": "Automator/ChangeType of Images.action/Contents"
}
]
},
{
"value": 24,
"name": "Choosefrom List.action",
"path": "Automator/Choosefrom List.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/Choosefrom List.action/Contents"
}
]
},
{
"value": 12,
"name": "CombineMail Messages.action",
"path": "Automator/CombineMail Messages.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/CombineMail Messages.action/Contents"
}
]
},
{
"value": 24,
"name": "CombinePDF Pages.action",
"path": "Automator/CombinePDF Pages.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/CombinePDF Pages.action/Contents"
}
]
},
{
"value": 12,
"name": "CombineText Files.action",
"path": "Automator/CombineText Files.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/CombineText Files.action/Contents"
}
]
},
{
"value": 24,
"name": "CompressImages in PDF Documents.action",
"path": "Automator/CompressImages in PDF Documents.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/CompressImages in PDF Documents.action/Contents"
}
]
},
{
"value": 8,
"name": "Connectto Servers.action",
"path": "Automator/Connectto Servers.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/Connectto Servers.action/Contents"
}
]
},
{
"value": 8,
"name": "ConvertAccount object to Mailbox object.caction",
"path": "Automator/ConvertAccount object to Mailbox object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertAccount object to Mailbox object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertAlbum object to Photo object.caction",
"path": "Automator/ConvertAlbum object to Photo object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertAlbum object to Photo object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertAlias object to Finder object.caction",
"path": "Automator/ConvertAlias object to Finder object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertAlias object to Finder object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertAlias object to iPhoto photo object.caction",
"path": "Automator/ConvertAlias object to iPhoto photo object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertAlias object to iPhoto photo object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertCalendar object to Event object.caction",
"path": "Automator/ConvertCalendar object to Event object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertCalendar object to Event object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertCalendar object to Reminders object.caction",
"path": "Automator/ConvertCalendar object to Reminders object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertCalendar object to Reminders object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertCocoa Data To Cocoa String.caction",
"path": "Automator/ConvertCocoa Data To Cocoa String.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertCocoa Data To Cocoa String.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertCocoa String To Cocoa Data.caction",
"path": "Automator/ConvertCocoa String To Cocoa Data.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertCocoa String To Cocoa Data.caction/Contents"
}
]
},
{
"value": 12,
"name": "ConvertCocoa URL to iTunes Track Object.caction",
"path": "Automator/ConvertCocoa URL to iTunes Track Object.caction",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/ConvertCocoa URL to iTunes Track Object.caction/Contents"
}
]
},
{
"value": 12,
"name": "ConvertCocoa URL to RSS Feed.caction",
"path": "Automator/ConvertCocoa URL to RSS Feed.caction",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/ConvertCocoa URL to RSS Feed.caction/Contents"
}
]
},
{
"value": 40,
"name": "ConvertCSV to SQL.action",
"path": "Automator/ConvertCSV to SQL.action",
"children": [
{
"value": 40,
"name": "Contents",
"path": "Automator/ConvertCSV to SQL.action/Contents"
}
]
},
{
"value": 8,
"name": "ConvertFeeds to Articles.caction",
"path": "Automator/ConvertFeeds to Articles.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertFeeds to Articles.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertFinder object to Alias object.caction",
"path": "Automator/ConvertFinder object to Alias object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertFinder object to Alias object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertGroup object to Person object.caction",
"path": "Automator/ConvertGroup object to Person object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertGroup object to Person object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertiPhoto Album to Alias object.caction",
"path": "Automator/ConvertiPhoto Album to Alias object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertiPhoto Album to Alias object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertiTunes object to Alias object.caction",
"path": "Automator/ConvertiTunes object to Alias object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertiTunes object to Alias object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertiTunes Playlist object to Alias object.caction",
"path": "Automator/ConvertiTunes Playlist object to Alias object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertiTunes Playlist object to Alias object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertMailbox object to Message object.caction",
"path": "Automator/ConvertMailbox object to Message object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertMailbox object to Message object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertPhoto object to Alias object.caction",
"path": "Automator/ConvertPhoto object to Alias object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertPhoto object to Alias object.caction/Contents"
}
]
},
{
"value": 8,
"name": "ConvertPlaylist object to Song object.caction",
"path": "Automator/ConvertPlaylist object to Song object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertPlaylist object to Song object.caction/Contents"
}
]
},
{
"value": 2760,
"name": "ConvertQuartz Compositions to QuickTime Movies.action",
"path": "Automator/ConvertQuartz Compositions to QuickTime Movies.action",
"children": [
{
"value": 2760,
"name": "Contents",
"path": "Automator/ConvertQuartz Compositions to QuickTime Movies.action/Contents"
}
]
},
{
"value": 8,
"name": "ConvertSource object to Playlist object.caction",
"path": "Automator/ConvertSource object to Playlist object.caction",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ConvertSource object to Playlist object.caction/Contents"
}
]
},
{
"value": 96,
"name": "CopyFinder Items.action",
"path": "Automator/CopyFinder Items.action",
"children": [
{
"value": 96,
"name": "Contents",
"path": "Automator/CopyFinder Items.action/Contents"
}
]
},
{
"value": 8,
"name": "Copyto Clipboard.action",
"path": "Automator/Copyto Clipboard.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/Copyto Clipboard.action/Contents"
}
]
},
{
"value": 72,
"name": "CreateAnnotated Movie File.action",
"path": "Automator/CreateAnnotated Movie File.action",
"children": [
{
"value": 72,
"name": "Contents",
"path": "Automator/CreateAnnotated Movie File.action/Contents"
}
]
},
{
"value": 96,
"name": "CreateArchive.action",
"path": "Automator/CreateArchive.action",
"children": [
{
"value": 96,
"name": "Contents",
"path": "Automator/CreateArchive.action/Contents"
}
]
},
{
"value": 412,
"name": "CreateBanner Image from Text.action",
"path": "Automator/CreateBanner Image from Text.action",
"children": [
{
"value": 412,
"name": "Contents",
"path": "Automator/CreateBanner Image from Text.action/Contents"
}
]
},
{
"value": 392,
"name": "CreatePackage.action",
"path": "Automator/CreatePackage.action",
"children": [
{
"value": 392,
"name": "Contents",
"path": "Automator/CreatePackage.action/Contents"
}
]
},
{
"value": 208,
"name": "CreateThumbnail Images.action",
"path": "Automator/CreateThumbnail Images.action",
"children": [
{
"value": 208,
"name": "Contents",
"path": "Automator/CreateThumbnail Images.action/Contents"
}
]
},
{
"value": 712,
"name": "CropImages.action",
"path": "Automator/CropImages.action",
"children": [
{
"value": 712,
"name": "Contents",
"path": "Automator/CropImages.action/Contents"
}
]
},
{
"value": 8,
"name": "CVSAdd.action",
"path": "Automator/CVSAdd.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/CVSAdd.action/Contents"
}
]
},
{
"value": 24,
"name": "CVSCheckout.action",
"path": "Automator/CVSCheckout.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/CVSCheckout.action/Contents"
}
]
},
{
"value": 24,
"name": "CVSCommit.action",
"path": "Automator/CVSCommit.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/CVSCommit.action/Contents"
}
]
},
{
"value": 276,
"name": "CVSUpdate.action",
"path": "Automator/CVSUpdate.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/CVSUpdate.action/Contents"
}
]
},
{
"value": 0,
"name": "DeactivateFonts.action",
"path": "Automator/DeactivateFonts.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/DeactivateFonts.action/Contents"
}
]
},
{
"value": 12,
"name": "DeleteAll iPod Notes.action",
"path": "Automator/DeleteAll iPod Notes.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/DeleteAll iPod Notes.action/Contents"
}
]
},
{
"value": 32,
"name": "DeleteCalendar Events.action",
"path": "Automator/DeleteCalendar Events.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/DeleteCalendar Events.action/Contents"
}
]
},
{
"value": 8,
"name": "DeleteCalendar Items.action",
"path": "Automator/DeleteCalendar Items.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/DeleteCalendar Items.action/Contents"
}
]
},
{
"value": 8,
"name": "DeleteCalendars.action",
"path": "Automator/DeleteCalendars.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/DeleteCalendars.action/Contents"
}
]
},
{
"value": 8,
"name": "DeleteReminders.action",
"path": "Automator/DeleteReminders.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/DeleteReminders.action/Contents"
}
]
},
{
"value": 12,
"name": "DisplayMail Messages.action",
"path": "Automator/DisplayMail Messages.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/DisplayMail Messages.action/Contents"
}
]
},
{
"value": 16,
"name": "DisplayNotification.action",
"path": "Automator/DisplayNotification.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/DisplayNotification.action/Contents"
}
]
},
{
"value": 8,
"name": "DisplayWebpages 2.action",
"path": "Automator/DisplayWebpages 2.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/DisplayWebpages 2.action/Contents"
}
]
},
{
"value": 12,
"name": "DisplayWebpages.action",
"path": "Automator/DisplayWebpages.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/DisplayWebpages.action/Contents"
}
]
},
{
"value": 276,
"name": "DownloadPictures.action",
"path": "Automator/DownloadPictures.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/DownloadPictures.action/Contents"
}
]
},
{
"value": 24,
"name": "DownloadURLs.action",
"path": "Automator/DownloadURLs.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/DownloadURLs.action/Contents"
}
]
},
{
"value": 8,
"name": "DuplicateFinder Items.action",
"path": "Automator/DuplicateFinder Items.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/DuplicateFinder Items.action/Contents"
}
]
},
{
"value": 8,
"name": "EjectDisk.action",
"path": "Automator/EjectDisk.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/EjectDisk.action/Contents"
}
]
},
{
"value": 12,
"name": "EjectiPod.action",
"path": "Automator/EjectiPod.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/EjectiPod.action/Contents"
}
]
},
{
"value": 276,
"name": "Enableor Disable Tracks.action",
"path": "Automator/Enableor Disable Tracks.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/Enableor Disable Tracks.action/Contents"
}
]
},
{
"value": 464,
"name": "EncodeMedia.action",
"path": "Automator/EncodeMedia.action",
"children": [
{
"value": 464,
"name": "Contents",
"path": "Automator/EncodeMedia.action/Contents"
}
]
},
{
"value": 80,
"name": "Encodeto MPEG Audio.action",
"path": "Automator/Encodeto MPEG Audio.action",
"children": [
{
"value": 80,
"name": "Contents",
"path": "Automator/Encodeto MPEG Audio.action/Contents"
}
]
},
{
"value": 24,
"name": "EncryptPDF Documents.action",
"path": "Automator/EncryptPDF Documents.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/EncryptPDF Documents.action/Contents"
}
]
},
{
"value": 12,
"name": "EventSummary.action",
"path": "Automator/EventSummary.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/EventSummary.action/Contents"
}
]
},
{
"value": 24,
"name": "ExecuteSQL.action",
"path": "Automator/ExecuteSQL.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/ExecuteSQL.action/Contents"
}
]
},
{
"value": 264,
"name": "ExportFont Files.action",
"path": "Automator/ExportFont Files.action",
"children": [
{
"value": 264,
"name": "Contents",
"path": "Automator/ExportFont Files.action/Contents"
}
]
},
{
"value": 24,
"name": "ExportMovies for iPod.action",
"path": "Automator/ExportMovies for iPod.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/ExportMovies for iPod.action/Contents"
}
]
},
{
"value": 44,
"name": "ExportvCards.action",
"path": "Automator/ExportvCards.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/ExportvCards.action/Contents"
}
]
},
{
"value": 12,
"name": "ExtractData from Text.action",
"path": "Automator/ExtractData from Text.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/ExtractData from Text.action/Contents"
}
]
},
{
"value": 24,
"name": "ExtractOdd & Even Pages.action",
"path": "Automator/ExtractOdd & Even Pages.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/ExtractOdd & Even Pages.action/Contents"
}
]
},
{
"value": 276,
"name": "ExtractPDF Annotations.action",
"path": "Automator/ExtractPDF Annotations.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/ExtractPDF Annotations.action/Contents"
}
]
},
{
"value": 2620,
"name": "ExtractPDF Text.action",
"path": "Automator/ExtractPDF Text.action",
"children": [
{
"value": 2620,
"name": "Contents",
"path": "Automator/ExtractPDF Text.action/Contents"
}
]
},
{
"value": 44,
"name": "FilterArticles.action",
"path": "Automator/FilterArticles.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/FilterArticles.action/Contents"
}
]
},
{
"value": 272,
"name": "FilterCalendar Items 2.action",
"path": "Automator/FilterCalendar Items 2.action",
"children": [
{
"value": 272,
"name": "Contents",
"path": "Automator/FilterCalendar Items 2.action/Contents"
}
]
},
{
"value": 280,
"name": "FilterContacts Items 2.action",
"path": "Automator/FilterContacts Items 2.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/FilterContacts Items 2.action/Contents"
}
]
},
{
"value": 280,
"name": "FilterFinder Items 2.action",
"path": "Automator/FilterFinder Items 2.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/FilterFinder Items 2.action/Contents"
}
]
},
{
"value": 12,
"name": "FilterFinder Items.action",
"path": "Automator/FilterFinder Items.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/FilterFinder Items.action/Contents"
}
]
},
{
"value": 264,
"name": "FilterFonts by Font Type.action",
"path": "Automator/FilterFonts by Font Type.action",
"children": [
{
"value": 264,
"name": "Contents",
"path": "Automator/FilterFonts by Font Type.action/Contents"
}
]
},
{
"value": 280,
"name": "FilteriPhoto Items 2.action",
"path": "Automator/FilteriPhoto Items 2.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/FilteriPhoto Items 2.action/Contents"
}
]
},
{
"value": 272,
"name": "FilterItems.action",
"path": "Automator/FilterItems.action",
"children": [
{
"value": 272,
"name": "Contents",
"path": "Automator/FilterItems.action/Contents"
}
]
},
{
"value": 276,
"name": "FilteriTunes Items 2.action",
"path": "Automator/FilteriTunes Items 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FilteriTunes Items 2.action/Contents"
}
]
},
{
"value": 276,
"name": "FilterMail Items 2.action",
"path": "Automator/FilterMail Items 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FilterMail Items 2.action/Contents"
}
]
},
{
"value": 60,
"name": "FilterParagraphs.action",
"path": "Automator/FilterParagraphs.action",
"children": [
{
"value": 60,
"name": "Contents",
"path": "Automator/FilterParagraphs.action/Contents"
}
]
},
{
"value": 276,
"name": "FilterURLs 2.action",
"path": "Automator/FilterURLs 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FilterURLs 2.action/Contents"
}
]
},
{
"value": 12,
"name": "FilterURLs.action",
"path": "Automator/FilterURLs.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/FilterURLs.action/Contents"
}
]
},
{
"value": 272,
"name": "FindCalendar Items 2.action",
"path": "Automator/FindCalendar Items 2.action",
"children": [
{
"value": 272,
"name": "Contents",
"path": "Automator/FindCalendar Items 2.action/Contents"
}
]
},
{
"value": 276,
"name": "FindContacts Items 2.action",
"path": "Automator/FindContacts Items 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FindContacts Items 2.action/Contents"
}
]
},
{
"value": 276,
"name": "FindFinder Items 2.action",
"path": "Automator/FindFinder Items 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FindFinder Items 2.action/Contents"
}
]
},
{
"value": 280,
"name": "FindFinder Items.action",
"path": "Automator/FindFinder Items.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/FindFinder Items.action/Contents"
}
]
},
{
"value": 276,
"name": "FindiPhoto Items 2.action",
"path": "Automator/FindiPhoto Items 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FindiPhoto Items 2.action/Contents"
}
]
},
{
"value": 272,
"name": "FindItems.action",
"path": "Automator/FindItems.action",
"children": [
{
"value": 272,
"name": "Contents",
"path": "Automator/FindItems.action/Contents"
}
]
},
{
"value": 276,
"name": "FindiTunes Items 2.action",
"path": "Automator/FindiTunes Items 2.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/FindiTunes Items 2.action/Contents"
}
]
},
{
"value": 280,
"name": "FindMail Items 2.action",
"path": "Automator/FindMail Items 2.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/FindMail Items 2.action/Contents"
}
]
},
{
"value": 84,
"name": "FindPeople with Birthdays.action",
"path": "Automator/FindPeople with Birthdays.action",
"children": [
{
"value": 84,
"name": "Contents",
"path": "Automator/FindPeople with Birthdays.action/Contents"
}
]
},
{
"value": 0,
"name": "Finder.definition",
"path": "Automator/Finder.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/Finder.definition/Contents"
}
]
},
{
"value": 104,
"name": "FlipImages.action",
"path": "Automator/FlipImages.action",
"children": [
{
"value": 104,
"name": "Contents",
"path": "Automator/FlipImages.action/Contents"
}
]
},
{
"value": 0,
"name": "FontBook.definition",
"path": "Automator/FontBook.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/FontBook.definition/Contents"
}
]
},
{
"value": 36,
"name": "GetAttachments from Mail Messages.action",
"path": "Automator/GetAttachments from Mail Messages.action",
"children": [
{
"value": 36,
"name": "Contents",
"path": "Automator/GetAttachments from Mail Messages.action/Contents"
}
]
},
{
"value": 180,
"name": "GetContact Information.action",
"path": "Automator/GetContact Information.action",
"children": [
{
"value": 180,
"name": "Contents",
"path": "Automator/GetContact Information.action/Contents"
}
]
},
{
"value": 8,
"name": "GetContents of Clipboard.action",
"path": "Automator/GetContents of Clipboard.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetContents of Clipboard.action/Contents"
}
]
},
{
"value": 8,
"name": "GetContents of TextEdit Document.action",
"path": "Automator/GetContents of TextEdit Document.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetContents of TextEdit Document.action/Contents"
}
]
},
{
"value": 12,
"name": "GetContents of Webpages.action",
"path": "Automator/GetContents of Webpages.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/GetContents of Webpages.action/Contents"
}
]
},
{
"value": 8,
"name": "GetCurrent Webpage from Safari.action",
"path": "Automator/GetCurrent Webpage from Safari.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetCurrent Webpage from Safari.action/Contents"
}
]
},
{
"value": 84,
"name": "GetDefinition of Word.action",
"path": "Automator/GetDefinition of Word.action",
"children": [
{
"value": 84,
"name": "Contents",
"path": "Automator/GetDefinition of Word.action/Contents"
}
]
},
{
"value": 8,
"name": "GetEnclosure URLs from Articles.action",
"path": "Automator/GetEnclosure URLs from Articles.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetEnclosure URLs from Articles.action/Contents"
}
]
},
{
"value": 12,
"name": "GetFeeds from URLs.action",
"path": "Automator/GetFeeds from URLs.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/GetFeeds from URLs.action/Contents"
}
]
},
{
"value": 0,
"name": "GetFiles for Fonts.action",
"path": "Automator/GetFiles for Fonts.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/GetFiles for Fonts.action/Contents"
}
]
},
{
"value": 12,
"name": "GetFolder Contents.action",
"path": "Automator/GetFolder Contents.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/GetFolder Contents.action/Contents"
}
]
},
{
"value": 412,
"name": "GetFont Info.action",
"path": "Automator/GetFont Info.action",
"children": [
{
"value": 412,
"name": "Contents",
"path": "Automator/GetFont Info.action/Contents"
}
]
},
{
"value": 0,
"name": "GetFonts from Font Files.action",
"path": "Automator/GetFonts from Font Files.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/GetFonts from Font Files.action/Contents"
}
]
},
{
"value": 0,
"name": "GetFonts of TextEdit Document.action",
"path": "Automator/GetFonts of TextEdit Document.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/GetFonts of TextEdit Document.action/Contents"
}
]
},
{
"value": 20,
"name": "GetiDVD Slideshow Images.action",
"path": "Automator/GetiDVD Slideshow Images.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/GetiDVD Slideshow Images.action/Contents"
}
]
},
{
"value": 28,
"name": "GetImage URLs from Articles.action",
"path": "Automator/GetImage URLs from Articles.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/GetImage URLs from Articles.action/Contents"
}
]
},
{
"value": 52,
"name": "GetImage URLs from Webpage.action",
"path": "Automator/GetImage URLs from Webpage.action",
"children": [
{
"value": 52,
"name": "Contents",
"path": "Automator/GetImage URLs from Webpage.action/Contents"
}
]
},
{
"value": 12,
"name": "GetLink URLs from Articles.action",
"path": "Automator/GetLink URLs from Articles.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/GetLink URLs from Articles.action/Contents"
}
]
},
{
"value": 24,
"name": "GetLink URLs from Webpages.action",
"path": "Automator/GetLink URLs from Webpages.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/GetLink URLs from Webpages.action/Contents"
}
]
},
{
"value": 20,
"name": "GetNew Mail.action",
"path": "Automator/GetNew Mail.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/GetNew Mail.action/Contents"
}
]
},
{
"value": 276,
"name": "GetPDF Metadata.action",
"path": "Automator/GetPDF Metadata.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/GetPDF Metadata.action/Contents"
}
]
},
{
"value": 8,
"name": "GetPermalinks of Articles.action",
"path": "Automator/GetPermalinks of Articles.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetPermalinks of Articles.action/Contents"
}
]
},
{
"value": 0,
"name": "GetPostScript name of Font.action",
"path": "Automator/GetPostScript name of Font.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/GetPostScript name of Font.action/Contents"
}
]
},
{
"value": 44,
"name": "GetSelected Contacts Items 2.action",
"path": "Automator/GetSelected Contacts Items 2.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/GetSelected Contacts Items 2.action/Contents"
}
]
},
{
"value": 8,
"name": "GetSelected Finder Items 2.action",
"path": "Automator/GetSelected Finder Items 2.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetSelected Finder Items 2.action/Contents"
}
]
},
{
"value": 28,
"name": "GetSelected iPhoto Items 2.action",
"path": "Automator/GetSelected iPhoto Items 2.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/GetSelected iPhoto Items 2.action/Contents"
}
]
},
{
"value": 8,
"name": "GetSelected Items.action",
"path": "Automator/GetSelected Items.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetSelected Items.action/Contents"
}
]
},
{
"value": 28,
"name": "GetSelected iTunes Items 2.action",
"path": "Automator/GetSelected iTunes Items 2.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/GetSelected iTunes Items 2.action/Contents"
}
]
},
{
"value": 28,
"name": "GetSelected Mail Items 2.action",
"path": "Automator/GetSelected Mail Items 2.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/GetSelected Mail Items 2.action/Contents"
}
]
},
{
"value": 540,
"name": "GetSpecified Calendar Items.action",
"path": "Automator/GetSpecified Calendar Items.action",
"children": [
{
"value": 540,
"name": "Contents",
"path": "Automator/GetSpecified Calendar Items.action/Contents"
}
]
},
{
"value": 292,
"name": "GetSpecified Contacts Items.action",
"path": "Automator/GetSpecified Contacts Items.action",
"children": [
{
"value": 292,
"name": "Contents",
"path": "Automator/GetSpecified Contacts Items.action/Contents"
}
]
},
{
"value": 308,
"name": "GetSpecified Finder Items.action",
"path": "Automator/GetSpecified Finder Items.action",
"children": [
{
"value": 308,
"name": "Contents",
"path": "Automator/GetSpecified Finder Items.action/Contents"
}
]
},
{
"value": 288,
"name": "GetSpecified iPhoto Items.action",
"path": "Automator/GetSpecified iPhoto Items.action",
"children": [
{
"value": 288,
"name": "Contents",
"path": "Automator/GetSpecified iPhoto Items.action/Contents"
}
]
},
{
"value": 288,
"name": "GetSpecified iTunes Items.action",
"path": "Automator/GetSpecified iTunes Items.action",
"children": [
{
"value": 288,
"name": "Contents",
"path": "Automator/GetSpecified iTunes Items.action/Contents"
}
]
},
{
"value": 380,
"name": "GetSpecified Mail Items.action",
"path": "Automator/GetSpecified Mail Items.action",
"children": [
{
"value": 380,
"name": "Contents",
"path": "Automator/GetSpecified Mail Items.action/Contents"
}
]
},
{
"value": 288,
"name": "GetSpecified Movies.action",
"path": "Automator/GetSpecified Movies.action",
"children": [
{
"value": 288,
"name": "Contents",
"path": "Automator/GetSpecified Movies.action/Contents"
}
]
},
{
"value": 276,
"name": "GetSpecified Servers.action",
"path": "Automator/GetSpecified Servers.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/GetSpecified Servers.action/Contents"
}
]
},
{
"value": 272,
"name": "GetSpecified Text.action",
"path": "Automator/GetSpecified Text.action",
"children": [
{
"value": 272,
"name": "Contents",
"path": "Automator/GetSpecified Text.action/Contents"
}
]
},
{
"value": 288,
"name": "GetSpecified URLs.action",
"path": "Automator/GetSpecified URLs.action",
"children": [
{
"value": 288,
"name": "Contents",
"path": "Automator/GetSpecified URLs.action/Contents"
}
]
},
{
"value": 8,
"name": "GetText from Articles.action",
"path": "Automator/GetText from Articles.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/GetText from Articles.action/Contents"
}
]
},
{
"value": 40,
"name": "GetText from Webpage.action",
"path": "Automator/GetText from Webpage.action",
"children": [
{
"value": 40,
"name": "Contents",
"path": "Automator/GetText from Webpage.action/Contents"
}
]
},
{
"value": 8,
"name": "Getthe Current Song.action",
"path": "Automator/Getthe Current Song.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/Getthe Current Song.action/Contents"
}
]
},
{
"value": 36,
"name": "GetValue of Variable.action",
"path": "Automator/GetValue of Variable.action",
"children": [
{
"value": 36,
"name": "Contents",
"path": "Automator/GetValue of Variable.action/Contents"
}
]
},
{
"value": 280,
"name": "GroupMailer.action",
"path": "Automator/GroupMailer.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/GroupMailer.action/Contents"
}
]
},
{
"value": 8,
"name": "HideAll Applications.action",
"path": "Automator/HideAll Applications.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/HideAll Applications.action/Contents"
}
]
},
{
"value": 12,
"name": "HintMovies.action",
"path": "Automator/HintMovies.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/HintMovies.action/Contents"
}
]
},
{
"value": 0,
"name": "iCal.definition",
"path": "Automator/iCal.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/iCal.definition/Contents"
}
]
},
{
"value": 44,
"name": "ImportAudio Files.action",
"path": "Automator/ImportAudio Files.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/ImportAudio Files.action/Contents"
}
]
},
{
"value": 28,
"name": "ImportFiles into iPhoto.action",
"path": "Automator/ImportFiles into iPhoto.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/ImportFiles into iPhoto.action/Contents"
}
]
},
{
"value": 24,
"name": "ImportFiles into iTunes.action",
"path": "Automator/ImportFiles into iTunes.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/ImportFiles into iTunes.action/Contents"
}
]
},
{
"value": 256,
"name": "InitiateRemote Broadcast.action",
"path": "Automator/InitiateRemote Broadcast.action",
"children": [
{
"value": 256,
"name": "Contents",
"path": "Automator/InitiateRemote Broadcast.action/Contents"
}
]
},
{
"value": 0,
"name": "iPhoto.definition",
"path": "Automator/iPhoto.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/iPhoto.definition/Contents"
}
]
},
{
"value": 0,
"name": "iTunes.definition",
"path": "Automator/iTunes.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/iTunes.definition/Contents"
}
]
},
{
"value": 24,
"name": "LabelFinder Items.action",
"path": "Automator/LabelFinder Items.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/LabelFinder Items.action/Contents"
}
]
},
{
"value": 8,
"name": "LaunchApplication.action",
"path": "Automator/LaunchApplication.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/LaunchApplication.action/Contents"
}
]
},
{
"value": 24,
"name": "Loop.action",
"path": "Automator/Loop.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/Loop.action/Contents"
}
]
},
{
"value": 0,
"name": "Mail.definition",
"path": "Automator/Mail.definition",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/Mail.definition/Contents"
}
]
},
{
"value": 16,
"name": "MarkArticles.action",
"path": "Automator/MarkArticles.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/MarkArticles.action/Contents"
}
]
},
{
"value": 12,
"name": "MountDisk Image.action",
"path": "Automator/MountDisk Image.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/MountDisk Image.action/Contents"
}
]
},
{
"value": 12,
"name": "MoveFinder Items to Trash.action",
"path": "Automator/MoveFinder Items to Trash.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/MoveFinder Items to Trash.action/Contents"
}
]
},
{
"value": 28,
"name": "MoveFinder Items.action",
"path": "Automator/MoveFinder Items.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/MoveFinder Items.action/Contents"
}
]
},
{
"value": 108,
"name": "NewAliases.action",
"path": "Automator/NewAliases.action",
"children": [
{
"value": 108,
"name": "Contents",
"path": "Automator/NewAliases.action/Contents"
}
]
},
{
"value": 0,
"name": "NewAudio Capture.action",
"path": "Automator/NewAudio Capture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/NewAudio Capture.action/Contents"
}
]
},
{
"value": 676,
"name": "NewCalendar Events Leopard.action",
"path": "Automator/NewCalendar Events Leopard.action",
"children": [
{
"value": 676,
"name": "Contents",
"path": "Automator/NewCalendar Events Leopard.action/Contents"
}
]
},
{
"value": 24,
"name": "NewCalendar.action",
"path": "Automator/NewCalendar.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/NewCalendar.action/Contents"
}
]
},
{
"value": 64,
"name": "NewDisk Image.action",
"path": "Automator/NewDisk Image.action",
"children": [
{
"value": 64,
"name": "Contents",
"path": "Automator/NewDisk Image.action/Contents"
}
]
},
{
"value": 20,
"name": "NewFolder.action",
"path": "Automator/NewFolder.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/NewFolder.action/Contents"
}
]
},
{
"value": 20,
"name": "NewiDVD Menu.action",
"path": "Automator/NewiDVD Menu.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/NewiDVD Menu.action/Contents"
}
]
},
{
"value": 20,
"name": "NewiDVD Movie Sequence.action",
"path": "Automator/NewiDVD Movie Sequence.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/NewiDVD Movie Sequence.action/Contents"
}
]
},
{
"value": 64,
"name": "NewiDVD Slideshow.action",
"path": "Automator/NewiDVD Slideshow.action",
"children": [
{
"value": 64,
"name": "Contents",
"path": "Automator/NewiDVD Slideshow.action/Contents"
}
]
},
{
"value": 12,
"name": "NewiPhoto Album.action",
"path": "Automator/NewiPhoto Album.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/NewiPhoto Album.action/Contents"
}
]
},
{
"value": 32,
"name": "NewiPod Note.action",
"path": "Automator/NewiPod Note.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/NewiPod Note.action/Contents"
}
]
},
{
"value": 12,
"name": "NewiTunes Playlist.action",
"path": "Automator/NewiTunes Playlist.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/NewiTunes Playlist.action/Contents"
}
]
},
{
"value": 576,
"name": "NewMail Message.action",
"path": "Automator/NewMail Message.action",
"children": [
{
"value": 576,
"name": "Contents",
"path": "Automator/NewMail Message.action/Contents"
}
]
},
{
"value": 32,
"name": "NewPDF Contact Sheet.action",
"path": "Automator/NewPDF Contact Sheet.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/NewPDF Contact Sheet.action/Contents"
}
]
},
{
"value": 4444,
"name": "NewPDF from Images.action",
"path": "Automator/NewPDF from Images.action",
"children": [
{
"value": 4444,
"name": "Contents",
"path": "Automator/NewPDF from Images.action/Contents"
}
]
},
{
"value": 1976,
"name": "NewQuickTime Slideshow.action",
"path": "Automator/NewQuickTime Slideshow.action",
"children": [
{
"value": 1976,
"name": "Contents",
"path": "Automator/NewQuickTime Slideshow.action/Contents"
}
]
},
{
"value": 808,
"name": "NewReminders Item.action",
"path": "Automator/NewReminders Item.action",
"children": [
{
"value": 808,
"name": "Contents",
"path": "Automator/NewReminders Item.action/Contents"
}
]
},
{
"value": 0,
"name": "NewScreen Capture.action",
"path": "Automator/NewScreen Capture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/NewScreen Capture.action/Contents"
}
]
},
{
"value": 64,
"name": "NewText File.action",
"path": "Automator/NewText File.action",
"children": [
{
"value": 64,
"name": "Contents",
"path": "Automator/NewText File.action/Contents"
}
]
},
{
"value": 8,
"name": "NewTextEdit Document.action",
"path": "Automator/NewTextEdit Document.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/NewTextEdit Document.action/Contents"
}
]
},
{
"value": 0,
"name": "NewVideo Capture.action",
"path": "Automator/NewVideo Capture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/NewVideo Capture.action/Contents"
}
]
},
{
"value": 28,
"name": "OpenFinder Items.action",
"path": "Automator/OpenFinder Items.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/OpenFinder Items.action/Contents"
}
]
},
{
"value": 12,
"name": "OpenImages in Preview.action",
"path": "Automator/OpenImages in Preview.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/OpenImages in Preview.action/Contents"
}
]
},
{
"value": 12,
"name": "OpenKeynote Presentations.action",
"path": "Automator/OpenKeynote Presentations.action",
"children": [
{
"value": 12,
"name": "Contents",
"path": "Automator/OpenKeynote Presentations.action/Contents"
}
]
},
{
"value": 60,
"name": "PadImages.action",
"path": "Automator/PadImages.action",
"children": [
{
"value": 60,
"name": "Contents",
"path": "Automator/PadImages.action/Contents"
}
]
},
{
"value": 0,
"name": "PauseCapture.action",
"path": "Automator/PauseCapture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/PauseCapture.action/Contents"
}
]
},
{
"value": 8,
"name": "PauseDVD Playback.action",
"path": "Automator/PauseDVD Playback.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/PauseDVD Playback.action/Contents"
}
]
},
{
"value": 8,
"name": "PauseiTunes.action",
"path": "Automator/PauseiTunes.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/PauseiTunes.action/Contents"
}
]
},
{
"value": 20,
"name": "Pause.action",
"path": "Automator/Pause.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/Pause.action/Contents"
}
]
},
{
"value": 3696,
"name": "PDFto Images.action",
"path": "Automator/PDFto Images.action",
"children": [
{
"value": 3696,
"name": "Contents",
"path": "Automator/PDFto Images.action/Contents"
}
]
},
{
"value": 276,
"name": "PlayDVD.action",
"path": "Automator/PlayDVD.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/PlayDVD.action/Contents"
}
]
},
{
"value": 8,
"name": "PlayiPhoto Slideshow.action",
"path": "Automator/PlayiPhoto Slideshow.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/PlayiPhoto Slideshow.action/Contents"
}
]
},
{
"value": 8,
"name": "PlayiTunes Playlist.action",
"path": "Automator/PlayiTunes Playlist.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/PlayiTunes Playlist.action/Contents"
}
]
},
{
"value": 264,
"name": "PlayMovies.action",
"path": "Automator/PlayMovies.action",
"children": [
{
"value": 264,
"name": "Contents",
"path": "Automator/PlayMovies.action/Contents"
}
]
},
{
"value": 20,
"name": "PrintFinder Items.action",
"path": "Automator/PrintFinder Items.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/PrintFinder Items.action/Contents"
}
]
},
{
"value": 108,
"name": "PrintImages.action",
"path": "Automator/PrintImages.action",
"children": [
{
"value": 108,
"name": "Contents",
"path": "Automator/PrintImages.action/Contents"
}
]
},
{
"value": 32,
"name": "PrintKeynote Presentation.action",
"path": "Automator/PrintKeynote Presentation.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/PrintKeynote Presentation.action/Contents"
}
]
},
{
"value": 288,
"name": "QuitAll Applications.action",
"path": "Automator/QuitAll Applications.action",
"children": [
{
"value": 288,
"name": "Contents",
"path": "Automator/QuitAll Applications.action/Contents"
}
]
},
{
"value": 24,
"name": "QuitApplication.action",
"path": "Automator/QuitApplication.action",
"children": [
{
"value": 24,
"name": "Contents",
"path": "Automator/QuitApplication.action/Contents"
}
]
},
{
"value": 8,
"name": "RemoveEmpty Playlists.action",
"path": "Automator/RemoveEmpty Playlists.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/RemoveEmpty Playlists.action/Contents"
}
]
},
{
"value": 0,
"name": "RemoveFont Files.action",
"path": "Automator/RemoveFont Files.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/RemoveFont Files.action/Contents"
}
]
},
{
"value": 1092,
"name": "RenameFinder Items.action",
"path": "Automator/RenameFinder Items.action",
"children": [
{
"value": 1092,
"name": "Contents",
"path": "Automator/RenameFinder Items.action/Contents"
}
]
},
{
"value": 16,
"name": "RenamePDF Documents.action",
"path": "Automator/RenamePDF Documents.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/RenamePDF Documents.action/Contents"
}
]
},
{
"value": 32,
"name": "RenderPDF Pages as Images.action",
"path": "Automator/RenderPDF Pages as Images.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/RenderPDF Pages as Images.action/Contents"
}
]
},
{
"value": 2888,
"name": "RenderQuartz Compositions to Image Files.action",
"path": "Automator/RenderQuartz Compositions to Image Files.action",
"children": [
{
"value": 2888,
"name": "Contents",
"path": "Automator/RenderQuartz Compositions to Image Files.action/Contents"
}
]
},
{
"value": 0,
"name": "ResumeCapture.action",
"path": "Automator/ResumeCapture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/ResumeCapture.action/Contents"
}
]
},
{
"value": 8,
"name": "ResumeDVD Playback.action",
"path": "Automator/ResumeDVD Playback.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ResumeDVD Playback.action/Contents"
}
]
},
{
"value": 8,
"name": "RevealFinder Items.action",
"path": "Automator/RevealFinder Items.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/RevealFinder Items.action/Contents"
}
]
},
{
"value": 428,
"name": "ReviewPhotos.action",
"path": "Automator/ReviewPhotos.action",
"children": [
{
"value": 428,
"name": "Contents",
"path": "Automator/ReviewPhotos.action/Contents"
}
]
},
{
"value": 56,
"name": "RotateImages.action",
"path": "Automator/RotateImages.action",
"children": [
{
"value": 56,
"name": "Contents",
"path": "Automator/RotateImages.action/Contents"
}
]
},
{
"value": 308,
"name": "RunAppleScript.action",
"path": "Automator/RunAppleScript.action",
"children": [
{
"value": 308,
"name": "Contents",
"path": "Automator/RunAppleScript.action/Contents"
}
]
},
{
"value": 20,
"name": "RunSelf-Test.action",
"path": "Automator/RunSelf-Test.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/RunSelf-Test.action/Contents"
}
]
},
{
"value": 316,
"name": "RunShell Script.action",
"path": "Automator/RunShell Script.action",
"children": [
{
"value": 316,
"name": "Contents",
"path": "Automator/RunShell Script.action/Contents"
}
]
},
{
"value": 36,
"name": "RunWeb Service.action",
"path": "Automator/RunWeb Service.action",
"children": [
{
"value": 36,
"name": "Contents",
"path": "Automator/RunWeb Service.action/Contents"
}
]
},
{
"value": 416,
"name": "RunWorkflow.action",
"path": "Automator/RunWorkflow.action",
"children": [
{
"value": 416,
"name": "Contents",
"path": "Automator/RunWorkflow.action/Contents"
}
]
},
{
"value": 32,
"name": "SaveImages from Web Content.action",
"path": "Automator/SaveImages from Web Content.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/SaveImages from Web Content.action/Contents"
}
]
},
{
"value": 20,
"name": "ScaleImages.action",
"path": "Automator/ScaleImages.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/ScaleImages.action/Contents"
}
]
},
{
"value": 2112,
"name": "SearchPDFs.action",
"path": "Automator/SearchPDFs.action",
"children": [
{
"value": 2112,
"name": "Contents",
"path": "Automator/SearchPDFs.action/Contents"
}
]
},
{
"value": 0,
"name": "SelectFonts in Font Book.action",
"path": "Automator/SelectFonts in Font Book.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/SelectFonts in Font Book.action/Contents"
}
]
},
{
"value": 944,
"name": "SendBirthday Greetings.action",
"path": "Automator/SendBirthday Greetings.action",
"children": [
{
"value": 944,
"name": "Contents",
"path": "Automator/SendBirthday Greetings.action/Contents"
}
]
},
{
"value": 8,
"name": "SendOutgoing Messages.action",
"path": "Automator/SendOutgoing Messages.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/SendOutgoing Messages.action/Contents"
}
]
},
{
"value": 16,
"name": "SetApplication for Files.action",
"path": "Automator/SetApplication for Files.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/SetApplication for Files.action/Contents"
}
]
},
{
"value": 340,
"name": "SetComputer Volume.action",
"path": "Automator/SetComputer Volume.action",
"children": [
{
"value": 340,
"name": "Contents",
"path": "Automator/SetComputer Volume.action/Contents"
}
]
},
{
"value": 44,
"name": "SetContents of TextEdit Document.action",
"path": "Automator/SetContents of TextEdit Document.action",
"children": [
{
"value": 44,
"name": "Contents",
"path": "Automator/SetContents of TextEdit Document.action/Contents"
}
]
},
{
"value": 8,
"name": "SetDesktop Picture.action",
"path": "Automator/SetDesktop Picture.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/SetDesktop Picture.action/Contents"
}
]
},
{
"value": 820,
"name": "SetFolder Views.action",
"path": "Automator/SetFolder Views.action",
"children": [
{
"value": 820,
"name": "Contents",
"path": "Automator/SetFolder Views.action/Contents"
}
]
},
{
"value": 8,
"name": "SetiDVD Background Image.action",
"path": "Automator/SetiDVD Background Image.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/SetiDVD Background Image.action/Contents"
}
]
},
{
"value": 20,
"name": "SetiDVD Button Face.action",
"path": "Automator/SetiDVD Button Face.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/SetiDVD Button Face.action/Contents"
}
]
},
{
"value": 112,
"name": "SetInfo of iTunes Songs.action",
"path": "Automator/SetInfo of iTunes Songs.action",
"children": [
{
"value": 112,
"name": "Contents",
"path": "Automator/SetInfo of iTunes Songs.action/Contents"
}
]
},
{
"value": 408,
"name": "SetiTunes Equalizer.action",
"path": "Automator/SetiTunes Equalizer.action",
"children": [
{
"value": 408,
"name": "Contents",
"path": "Automator/SetiTunes Equalizer.action/Contents"
}
]
},
{
"value": 32,
"name": "SetiTunes Volume.action",
"path": "Automator/SetiTunes Volume.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/SetiTunes Volume.action/Contents"
}
]
},
{
"value": 280,
"name": "SetMovie Annotations.action",
"path": "Automator/SetMovie Annotations.action",
"children": [
{
"value": 280,
"name": "Contents",
"path": "Automator/SetMovie Annotations.action/Contents"
}
]
},
{
"value": 256,
"name": "SetMovie Playback Properties.action",
"path": "Automator/SetMovie Playback Properties.action",
"children": [
{
"value": 256,
"name": "Contents",
"path": "Automator/SetMovie Playback Properties.action/Contents"
}
]
},
{
"value": 0,
"name": "SetMovie URL.action",
"path": "Automator/SetMovie URL.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/SetMovie URL.action/Contents"
}
]
},
{
"value": 408,
"name": "SetOptions of iTunes Songs.action",
"path": "Automator/SetOptions of iTunes Songs.action",
"children": [
{
"value": 408,
"name": "Contents",
"path": "Automator/SetOptions of iTunes Songs.action/Contents"
}
]
},
{
"value": 408,
"name": "SetPDF Metadata.action",
"path": "Automator/SetPDF Metadata.action",
"children": [
{
"value": 408,
"name": "Contents",
"path": "Automator/SetPDF Metadata.action/Contents"
}
]
},
{
"value": 8,
"name": "SetSpotlight Comments for Finder Items.action",
"path": "Automator/SetSpotlight Comments for Finder Items.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/SetSpotlight Comments for Finder Items.action/Contents"
}
]
},
{
"value": 20,
"name": "SetValue of Variable.action",
"path": "Automator/SetValue of Variable.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/SetValue of Variable.action/Contents"
}
]
},
{
"value": 8,
"name": "ShowMain iDVD Menu.action",
"path": "Automator/ShowMain iDVD Menu.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ShowMain iDVD Menu.action/Contents"
}
]
},
{
"value": 8,
"name": "ShowNext Keynote Slide.action",
"path": "Automator/ShowNext Keynote Slide.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ShowNext Keynote Slide.action/Contents"
}
]
},
{
"value": 8,
"name": "ShowPrevious Keynote Slide.action",
"path": "Automator/ShowPrevious Keynote Slide.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/ShowPrevious Keynote Slide.action/Contents"
}
]
},
{
"value": 16,
"name": "ShowSpecified Keynote Slide.action",
"path": "Automator/ShowSpecified Keynote Slide.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/ShowSpecified Keynote Slide.action/Contents"
}
]
},
{
"value": 36,
"name": "SortFinder Items.action",
"path": "Automator/SortFinder Items.action",
"children": [
{
"value": 36,
"name": "Contents",
"path": "Automator/SortFinder Items.action/Contents"
}
]
},
{
"value": 32,
"name": "SpeakText.action",
"path": "Automator/SpeakText.action",
"children": [
{
"value": 32,
"name": "Contents",
"path": "Automator/SpeakText.action/Contents"
}
]
},
{
"value": 20,
"name": "SpotlightLeopard.action",
"path": "Automator/SpotlightLeopard.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/SpotlightLeopard.action/Contents"
}
]
},
{
"value": 0,
"name": "StartCapture.action",
"path": "Automator/StartCapture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/StartCapture.action/Contents"
}
]
},
{
"value": 8,
"name": "StartiTunes Playing.action",
"path": "Automator/StartiTunes Playing.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/StartiTunes Playing.action/Contents"
}
]
},
{
"value": 8,
"name": "StartiTunes Visuals.action",
"path": "Automator/StartiTunes Visuals.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/StartiTunes Visuals.action/Contents"
}
]
},
{
"value": 16,
"name": "StartKeynote Slideshow.action",
"path": "Automator/StartKeynote Slideshow.action",
"children": [
{
"value": 16,
"name": "Contents",
"path": "Automator/StartKeynote Slideshow.action/Contents"
}
]
},
{
"value": 8,
"name": "StartScreen Saver.action",
"path": "Automator/StartScreen Saver.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/StartScreen Saver.action/Contents"
}
]
},
{
"value": 0,
"name": "StopCapture.action",
"path": "Automator/StopCapture.action",
"children": [
{
"value": 0,
"name": "Contents",
"path": "Automator/StopCapture.action/Contents"
}
]
},
{
"value": 8,
"name": "StopDVD Playback.action",
"path": "Automator/StopDVD Playback.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/StopDVD Playback.action/Contents"
}
]
},
{
"value": 8,
"name": "StopiTunes Visuals.action",
"path": "Automator/StopiTunes Visuals.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/StopiTunes Visuals.action/Contents"
}
]
},
{
"value": 8,
"name": "StopKeynote Slideshow.action",
"path": "Automator/StopKeynote Slideshow.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/StopKeynote Slideshow.action/Contents"
}
]
},
{
"value": 28,
"name": "SystemProfile.action",
"path": "Automator/SystemProfile.action",
"children": [
{
"value": 28,
"name": "Contents",
"path": "Automator/SystemProfile.action/Contents"
}
]
},
{
"value": 276,
"name": "TakePicture.action",
"path": "Automator/TakePicture.action",
"children": [
{
"value": 276,
"name": "Contents",
"path": "Automator/TakePicture.action/Contents"
}
]
},
{
"value": 420,
"name": "TakeScreenshot.action",
"path": "Automator/TakeScreenshot.action",
"children": [
{
"value": 420,
"name": "Contents",
"path": "Automator/TakeScreenshot.action/Contents"
}
]
},
{
"value": 20,
"name": "TakeVideo Snapshot.action",
"path": "Automator/TakeVideo Snapshot.action",
"children": [
{
"value": 20,
"name": "Contents",
"path": "Automator/TakeVideo Snapshot.action/Contents"
}
]
},
{
"value": 100,
"name": "Textto Audio File.action",
"path": "Automator/Textto Audio File.action",
"children": [
{
"value": 100,
"name": "Contents",
"path": "Automator/Textto Audio File.action/Contents"
}
]
},
{
"value": 436,
"name": "Textto EPUB File.action",
"path": "Automator/Textto EPUB File.action",
"children": [
{
"value": 436,
"name": "Contents",
"path": "Automator/Textto EPUB File.action/Contents"
}
]
},
{
"value": 8,
"name": "UpdateiPod.action",
"path": "Automator/UpdateiPod.action",
"children": [
{
"value": 8,
"name": "Contents",
"path": "Automator/UpdateiPod.action/Contents"
}
]
},
{
"value": 264,
"name": "ValidateFont Files.action",
"path": "Automator/ValidateFont Files.action",
"children": [
{
"value": 264,
"name": "Contents",
"path": "Automator/ValidateFont Files.action/Contents"
}
]
},
{
"value": 272,
"name": "ViewResults.action",
"path": "Automator/ViewResults.action",
"children": [
{
"value": 272,
"name": "Contents",
"path": "Automator/ViewResults.action/Contents"
}
]
},
{
"value": 64,
"name": "Waitfor User Action.action",
"path": "Automator/Waitfor User Action.action",
"children": [
{
"value": 64,
"name": "Contents",
"path": "Automator/Waitfor User Action.action/Contents"
}
]
},
{
"value": 456,
"name": "WatchMe Do.action",
"path": "Automator/WatchMe Do.action",
"children": [
{
"value": 456,
"name": "Contents",
"path": "Automator/WatchMe Do.action/Contents"
}
]
},
{
"value": 72,
"name": "WatermarkPDF Documents.action",
"path": "Automator/WatermarkPDF Documents.action",
"children": [
{
"value": 72,
"name": "Contents",
"path": "Automator/WatermarkPDF Documents.action/Contents"
}
]
},
{
"value": 80,
"name": "WebsitePopup.action",
"path": "Automator/WebsitePopup.action",
"children": [
{
"value": 80,
"name": "Contents",
"path": "Automator/WebsitePopup.action/Contents"
}
]
}
]
},
{
"value": 2868,
"name": "BridgeSupport",
"path": "BridgeSupport",
"children": [
{
"value": 0,
"name": "include",
"path": "BridgeSupport/include"
},
{
"value": 2840,
"name": "ruby-2.0",
"path": "BridgeSupport/ruby-2.0"
}
]
}
]