property toggleSwitch : true
-- 補助アクセスを要求するコードを書くとproperty toggleSwitchの値が保存されない
tell application "System Events" to tell process "Dock"
set dock_dimensions to size in list 1
set dock_width to item 1 of dock_dimensions
end tell
if toggleSwitch then
display dialog "当アプリを再起動しても同じメッセージが表示されたらpropertyが保存されていません"
else
display dialog "propertyは正常に動作しています!"
end if
set toggleSwitch to not toggleSwitch
end run