• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: ANN Piyomaru AppleScript Libraries
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ANN Piyomaru AppleScript Libraries


  • Subject: Re: ANN Piyomaru AppleScript Libraries
  • From: Takaaki Naganoya via AppleScript-Users <email@hidden>
  • Date: Sat, 7 Sep 2019 16:55:38 +0900

Hi, I updated my AppleScript libraries “display youtube”.


name: display YouTube Script Library
version: 2.0
This library provides display a YouTube movie interface.

—Change in v2.0:
“starts from” option added. It indicates the start point of YouTube movie by
seconds.

—Documents(Written in Japanese. Use Google translate), download URL
http://piyocast.com/as/archives/7280
http://piyocast.com/as/wp-content/uploads/2019/09/display-youtube_v2.scptd_.zip

<sample>
use AppleScript version "2.5"
use framework "Foundation"
use scripting additions
use utbLib : script "display youtube"

set aURL to "https://www.youtube.com/watch?v=GP_tVXTYdmY";

display youtube main message “Replay Movie” sub message “My Senjo No Kizuna
replay movie on YouTube" with URL bURL with size {900, 600} starts from 24
</sample>



> 2019/08/27 17:24、Takaaki Naganoya via AppleScript-Users
> <email@hidden>のメール:
>
> Hi All,
>
> I’ve just released some free AppleScript Libraries.
>
> These libraries requires macOS 10.12 or higher and is free for personal use.
> Available from each URLs. These articles may be written in Japanese language.
> You can translate articles by Google :-).
>
>
> (1) checkboxLib
> This library provides a simple checkbox selection UI.
> http://piyocast.com/as/archives/7043
> http://piyocast.com/as/wp-content/uploads/2019/08/checkboxLib_v3.scptd_.zip
>
> <sample>
> use AppleScript version "2.5"
> use scripting additions
> use checkLib : script "checkboxLib"
>
> set tList to {"Carrot", "Burdock", "Radish", "Apple", "Cabbage", "Lettuce",
> "Potato", "Garlic", "Komatsuna", "Bok choy", "Shiitake mushroom", "Hen of the
> Woods"}
> set cRes to choose checkbox main message "Select Vegetables" with titles tList
> </sample>
>
>
>
> (2)mouseClick , a small utlility to move mouse cursor and force click
>
> http://piyocast.com/as/archives/7090
> http://piyocast.com/as/wp-content/uploads/2019/08/mouseClick.zip
>
> <sample>
> tell application "mouseClick"
>       force click at {4, 4} --click apple menu
> end tell
> </sample>
>
> (3)calcLIbAS v1.5, 36 Numeric Functions Library
> Now have sdef.
>
> http://piyocast.com/as/archives/7114
> http://piyocast.com/as/wp-content/uploads/2019/08/calcLibASv1.5.zip
>
> (4)displayTextView AppleScript Library
> This library provides long text display UI.
>
> http://piyocast.com/as/archives/7134
> http://piyocast.com/as/wp-content/uploads/2019/08/displayTextView.scptd_.zip
>
> <sample>
> use AppleScript version "2.5"
> use scripting additions
> use radioLib : script "displayTextView"
> set aStr to do shell script "cal 2019"
>
> display text view aStr main message "Main Message" sub message "Sub Message"
> with properties {font name:"Courier", size:13, width:600, height:600}
> </sample>
>
>
> (4)choose multiple path script library
> This library provides multiple path selection dialog with drag & drop
> function (by NSPathControl)
>
> http://piyocast.com/as/archives/7140
> http://piyocast.com/as/wp-content/uploads/2019/08/choosePathLib.scptd_.zip
>
> <sample>
> use AppleScript version "2.5"
> use scripting additions
> use choosePath : script "choosePathLib"
> set mesList to {"orig 1", "Dest 1", "Orig 2", "Dest 2"}
> set defaultLocList to {"~/Movies", "~/Desktop", "~/Documents", "~/Library"}
>
> set cRes to choose multiple path main message "Main Message" sub message "Sub
> message" with titles mesList with default locations defaultLocList
> </sample>
>
>
> (5)display location Script Library
> This library provides map display user interface to indicate a location. The
> location is displayed with four different zoomed maps.
>
> http://piyocast.com/as/archives/7145
> http://piyocast.com/as/wp-content/uploads/2019/08/display-location.scptd_.zip
>
> <sample>
> use AppleScript version "2.5"
> use framework "Foundation"
> use scripting additions
> use dispLoc : script "display location"
>
> set locList to  {41.82459, 140.7174504}
> display multiple map main message "The Target Place" sub message "This is a
> new target place to invade" with location locList with size {900, 600}
> </sample>
>
>
> (6)display YouTube Script Library
> This library provides display a YouTube movie interface.
>
> http://piyocast.com/as/archives/7155
> http://piyocast.com/as/wp-content/uploads/2019/08/display-youtube.scptd_.zip
>
> <sample>
> use AppleScript version "2.5"
> use framework "Foundation"
> use scripting additions
> use utbLib : script "display youtube"
>
> set aURL to "https://www.youtube.com/watch?v=GP_tVXTYdmY";
>
> display youtube main message "Replay Movie" sub message "My Senjo No Kizuna
> replay movie on YouTube" with URL bURL with size {900, 600}
> </sample>
>
>
> --
> Takaaki Naganoya
> email@hidden
> http://piyocast.com/as/
>
>
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> AppleScript-Users mailing list      (email@hidden)
> Help/Unsubscribe/Update your Subscription:
> Archives: http://lists.apple.com/archives/applescript-users
>
> This email sent to email@hidden

--
Takaaki Naganoya
email@hidden
http://piyocast.com/as/



 _______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users

This email sent to email@hidden

  • Prev by Date: Re: Address Book plugin no longer works
  • Next by Date: Re: Address Book plugin no longer works
  • Previous by thread: Re: AppleScript-Users Digest, Vol 16, Issue 89
  • Next by thread: [ANN] Library updates
  • Index(es):
    • Date
    • Thread