AppleScript名:配列から要素を削除する(要素をインデックスで指定) |
— Created 2017-02-24 11:37:14 +0900 by Takaaki Naganoya — 2017 Piyomaru Software use AppleScript version "2.4" use scripting additions use framework "Foundation" –要素を削除する(要素をインデックスで指定) set cMuta to current application’s NSMutableArray’s arrayWithObjects_(1, 2, 3) cMuta’s removeObjectAtIndex:2 cMuta –> (NSArray) {1, 2} |
More from my site
(Visited 78 times, 1 visits today)