-- ボタンをクリックして呼び出されるハンドラ on clicked theObject set targetWindow to window of theObject set radioButtons to control "rb" of targetWindow set selectTag to tag of current cell of radioButtons if selectTag is 0 then -- 1つ目のボタンが選択されている場合 else if selectTag is 1 then -- 2つ目のボタンが選択されている場合 else if selectTag is 2 then -- 3つ目のボタンが選択されている場合 else if selectTag is 3 then -- 4つ目のボタンが選択されている場合 end if end clicked