私は、ユーザの入力があるフォルダを作成するAppleScriptスクリプトを作成しようとしていましたが、残念ながらそれを動作させることはできません。どんな助けもありがとうございます。フォルダを作成して名前を付けるスクリプトエディタ
set theResponse to display dialog "Enter the name of folder" default answer "" with icon note buttons {"Cancel", "Continue"} default button "Continue"
display dialog "Name of the folder: " & (text returned of theResponse) & "."
tell application "Finder"
make new folder at desktop with properties {name:"theResponse"}
end tell
スクリプトを書くために何を使用していますか? bash、node.js ...? – stealththeninja
@stealththeninja:それは私にとってAppleScriptのようです(Script Editorのデフォルト言語)。 – Ssswift
あなたの質問の下にある 'edit'をクリックし、コードを選択してコードフォーマットアイコン' {} 'をクリックしてください –