Menu

Skip to content
AppleScriptの穴
  • Home
  • Products
  • Books
  • Docs
  • Events
  • Forum
  • About This Blog
  • License
  • 仕事依頼

AppleScriptの穴

Useful & Practical AppleScript archive. Click '★Click Here to Open This Script' Link to download each AppleScript

Products

Piyomaru Software’s Products Information

Application: Piyo Menu Clicker


Application: Kamenoko

(Now On Sale at Mac App Store) v1.0 supports macOS 10.13 or later. 100% written in AppleScript App.

Application: Double PDF

(Now On Sale at Mac App Store) v2.0 supports macOS 10.13 or later. v2.0 Now on sale! 100% written in AppleScript App.

eBooks

Small Applications

Piyomaru Small Application Products

Free products

You can use these products by free. No support. You can’t re-distribute these product.

choose runnning application Script Library

for macOS 10.10 or later
v1.0
Choose Running Application Script Library provides selection dialog to select a running & visible application process.
This library returns the selected process information by list.

–> Download chooseAppLib (To ~/Library/Script Libraries/)

Common Elements Lib Script Library

for macOS 10.10 or later
v1.3a
“Common Elements Lib” script Library provides Natural Language Processing ability calling Wikipedia REST API service. This library process a pair of words and returns common elements with two words. I call elements as Wikipedia awared (linked) words such as “macOS” or “Open Scripting Architecture”.

–> Download Common Elements Lib(To ~/Library/Script Libraries/)

AirSharingLib Script Library

v1.0
This script Library provides file sharing ability using Apple’s AirDrop® wireless file sharing system among Mac or iOS devices. This library is for macOS 10.13 or later.
–> Download airsharinglib(To ~/Library/Script Libraries/)

display drop dialog Script Library

v1.0
This script Library provides drag & drop-able dialog interface for macOS without exporting as applet. This library can add file drag & drop ability to normal AppleScript launched from ScriptMenu and so on.
–> Download display drop dialog Script Library (To ~/Library/Script Libraries/)

map scripter script Library

v1.2
This library provides not url-events based scripting but an AppleScript-way scripting of Apple’s Maps.app. This is made for macOS 10.10 or later.

–> Download mapScripter(To ~/Library/Script Libraries)

choose multiple list Library

v1.1
This library provides a dialog to select multiple list.
Sample AppleScript is included in its AppleScript dictionary. This library is for macOS 10.13 or later.

–> Download chooseMultiList(To ~/Library/Script Libraries)

choose style lib Library

v1.0
This library provides a dialog to show style selector from RTF and display filtered text preview.
Sample AppleScript is included in its AppleScript dictionary. This library is for macOS 10.13 or later.

–> Download chooseStyleLib(library and sample RTF. Library have to install to ~/Library/Script Libraries)

checkboxLib Library

v2.0
checkboxLib script Library is an AppleScript library that gives AppleScript scripts the ability to choose items with checkbox dialog. It requires macOS 10.12 or later. This library includes demo movie link and sample script result images in its script dictionary.Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

–> Download checkboxLibv2.scptd(To ~/Library/Script Libraries/)

choose date script Library

v1.0
choose date script Library is an AppleScript library that gives AppleScript scripts the ability to choose date with dialog. It requires macOS 10.12 or later. Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

–> Download choose date Lib.scptd (To ~/Library/Script Libraries/)

display text fields script Library

v1.3
display text fields script Library is an AppleScript library that gives AppleScript scripts the ability to show label and value paired data with dialog. It requires macOS 10.12 or later. Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

v1.3 added scroll view not to be crowded out of the dialog with a numbers of text fields

–> Download display text fields_v13 (To ~/Library/Script Libraries/)

choose location script Library

choose location library is an AppleScript library that gives AppleScript scripts the ability to show geolocation selection dialog with map. It requires macOS 10.12 or later. Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

–> Download choose location.scptd (To ~/Library/Script Libraries/)

display table Script Library

v1.3 Updated
display table library is an AppleScript library that gives AppleScript scripts the ability to show simple table user interface with 2D list (array). It requires macOS 10.12 or later. Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

If you need a complex and various function, you have to check Shane Stanley’s Myriad Tables Lib. display table is a simple and runs with Script Editor (no Script Debugger needed).

–> Download displayTable.scptd (To ~/Library/Script Libraries/)

display youtube Script Library

display youtube library is an AppleScript library that gives AppleScript scripts the ability to show youtube movie player user interface with a YouTube movie URL. It requires macOS 10.12 or later. Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

Download display youtube_v2.1 (To ~/Library/Script Libraries/)

Download display youtube_v2.scptd

pickup color Script Library

v1.2
pickup color library is an AppleScript library that gives AppleScript scripts the ability to choose color by popup menu dialog user interface. It requires macOS 10.12 or later. Sample script is included in its AppleScript dictionary which can be used by clicking “Click Here to Open This Script” link.

–> Download pickup color.scptd(To ~/Library/Script Libraries)

display location Script Library

display location library is an AppleScript library that gives AppleScript scripts the ability to show a geolocation with 4-way multi zoomed map. It requires macOS 10.12 or later.

–> Download display location.scptd (To ~/Library/Script Libraries/)

choose multiple path Script Library

v2.1
choose multiple path library is an AppleScript library that gives AppleScript scripts the ability to select multiple path by drag & drop operation. It requires macOS 10.12 or later.

–> Download choosePathLib.scptd(~/Library/Script Libraries)

displayTextView Script Library v2.0

displayTextView library is an AppleScript library that gives AppleScript scripts the ability to display long and scrollable text with indicated font. It requires macOS 10.14 or later.

–> Download v2.1 displayTextView.scptd (To ~/Library/Script Libraries)

calcLibAS Script Library

v1.5
calcLibAS library is an AppleScript library that gives AppleScript scripts the ability to calculate additional 36 math functions.

–> Download calcLibASv1.5 (To ~/Library/Script Libraries/)

AppleScript名:Every Functions
— Created 2019-08-20 by Takaaki Naganoya
— 2019 Piyomaru Software
use AppleScript version "2.5"
use scripting additions
use framework "Foundation"
use calSub : script "calcLibAS"

set a001 to abs -10
set a002 to acos -1
set a003 to acosh 10
set a004 to asin 10
set a005 to asinh 10
set a006 to atan 10
set a007 to atan2 {10, 20}
set a008 to atanh 10
set a009 to cbrt 3
set a010 to ceil 0.95
set a011 to clz32 1
set a012 to cos 1
set a013 to cosh 1
set a014 to exp 1
set a015 to expm1 -1
set a016 to floor 45.95
set a017 to fround 1.337
set a018 to hypot {3, 4, 5}
set a019 to lmul {2, 5}
set a020 to logarithm 10
set a021 to log10 2
set a022 to log1p 1
set a023 to log2 3
set a024 to max {1, 2, 3, 4, 6, 2, 10}
set a025 to min {1, 2, 3, 4, 6, 2, 10, 0}
set a026 to pow {7, 2}
set a027 to rnd –random number
set a028 to roundNum 5.95
set a029 to sign 10
set a030 to sin (pi / 2)
set a031 to sinh 1
set a032 to sqrt 2
set a033 to tan 30
set a034 to tanh 10
set a035 to trunc 13.37

set aList to {a001, a002, a003, a004, a005, a006, a007, a008, a009, a010, a011, a012, a013, a014, a015, a016, a017, a018, a019, a020, a021, a022, a023, a024, a025, a026, a027, a028, a029, a030, a031, a032, a033, a034, a035}

return test() of calSub –Check function to calc from sdef and each handlers excepting random numbers

★Click Here to Open This Script 

(Visited 1,593 times, 2 visits today)

電子書籍(PDF)をオンラインストアで販売中!

Google Search

Popular posts

  • AppleScriptによるWebブラウザ自動操縦ガイド
  • macOS 13, Ventura(継続更新)
  • ドラッグ&ドロップ機能の未来?
  • macOS 12.x上のAppleScriptのトラブルまとめ
  • PFiddlesoft UI Browserが製品終了に
  • macOS 12.3 beta 5、ASの障害が解消される(?)
  • SF Symbolsを名称で指定してPNG画像化
  • 新刊発売:AppleScriptによるWebブラウザ自動操縦ガイド
  • macOS 12.3上でFinder上で選択中のファイルをそのままオープンできない件
  • Pixelmator Pro v2.4.1で新機能追加+AppleScriptコマンド追加
  • Safariで表示中のYouTubeムービーのサムネイル画像を取得
  • macOS 12のスクリプトエディタで、Context Menu機能にバグ
  • 人類史上初、魔導書の観点から書かれたAppleScript入門書「7つの宝珠」シリーズ開始?!
  • UI Browserがgithub上でソース公開され、オープンソースに
  • macOS 12.5(21G72)がリリースされた!
  • Pages v12に謎のバグ。書類上に11枚しか画像を配置できない→解決
  • 新発売:AppleScriptからSiriを呼び出そう!
  • iWork 12.2がリリースされた
  • macOS 13 TTS Voice環境に変更
  • NSCharacterSetの使い方を間違えた

Tags

10.11savvy (1102) 10.12savvy (1243) 10.13savvy (1391) 10.14savvy (586) 10.15savvy (434) 11.0savvy (274) 12.0savvy (174) 13.0savvy (34) CotEditor (60) Finder (47) iTunes (19) Keynote (97) NSAlert (60) NSArray (51) NSBezierPath (18) NSBitmapImageRep (21) NSBundle (20) NSButton (34) NSColor (51) NSDictionary (27) NSFileManager (23) NSFont (18) NSImage (42) NSJSONSerialization (21) NSMutableArray (62) NSMutableDictionary (21) NSPredicate (36) NSRunningApplication (56) NSScreen (30) NSScrollView (22) NSString (118) NSURL (97) NSURLRequest (23) NSUTF8StringEncoding (30) NSUUID (18) NSView (33) NSWorkspace (20) Numbers (55) Pages (36) Safari (41) Script Editor (20) WKUserContentController (21) WKUserScript (20) WKWebView (23) WKWebViewConfiguration (22)

カテゴリー

  • 2D Bin Packing
  • 3D
  • AirDrop
  • AirPlay
  • Animation
  • AppleScript Application on Xcode
  • beta
  • Bluetooth
  • Books
  • boolean
  • bounds
  • Bug
  • Calendar
  • call by reference
  • Clipboard
  • Code Sign
  • Color
  • Custom Class
  • dialog
  • drive
  • exif
  • file
  • File path
  • filter
  • folder
  • Font
  • Font
  • GAME
  • geolocation
  • GUI
  • GUI Scripting
  • Hex
  • History
  • How To
  • iCloud
  • Icon
  • Image
  • Input Method
  • Internet
  • iOS App
  • JavaScript
  • JSON
  • JXA
  • Keychain
  • Keychain
  • Language
  • Library
  • list
  • Locale
  • Machine Learning
  • Map
  • Markdown
  • Menu
  • Metadata
  • MIDI
  • MIME
  • Natural Language Processing
  • Network
  • news
  • Noification
  • Notarization
  • Number
  • Object control
  • OCR
  • OSA
  • PDF
  • Peripheral
  • PRODUCTS
  • QR Code
  • Raw AppleEvent Code
  • Record
  • recursive call
  • regexp
  • Release
  • Remote Control
  • Require Control-Command-R to run
  • REST API
  • Review
  • RTF
  • Sandbox
  • Screen Saver
  • Script Libraries
  • sdef
  • search
  • Security
  • selection
  • shell script
  • Shortcuts Workflow
  • Sort
  • Sound
  • Spellchecker
  • Spotlight
  • SVG
  • System
  • Tag
  • Telephony
  • Text
  • Text to Speech
  • timezone
  • Tools
  • Update
  • URL
  • UTI
  • Web Contents Control
  • WiFi
  • XML
  • XML-RPC
  • イベント(Event)
  • 未分類

アーカイブ

  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年11月
  • 2022年10月
  • 2022年9月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年2月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年8月
  • 2018年7月
  • 2018年6月
  • 2018年5月
  • 2018年4月
  • 2018年3月
  • 2018年2月

https://piyomarusoft.booth.pm/items/301502

メタ情報

  • 登録
  • ログイン
  • 投稿フィード
  • コメントフィード
  • WordPress.org

Forum Posts

  • 人気のトピック
  • 返信がないトピック

メタ情報

  • 登録
  • ログイン
  • 投稿フィード
  • コメントフィード
  • WordPress.org
Proudly powered by WordPress
Theme: Flint by Star Verte LLC