Xcode4.x 初心者向け07

tagを使い命令を振り分けます。

tag部分をそれぞれ変更します。
text01:1
text02:2
button:3

割り当て。今回はすべて同じ物に割り当てます。

スクリプト部

スクリプトエディタで開く

on uni01_(sender)
set tag01 to tag  of sender as unicode text
set uni01 to stringValue() of  sender as unicode text
if tag01=“1” then 
display dialog上のフィールド:&uni01
else if tag01=“2” then
display dialog下のフィールド:&uni01
else if tag01=“3” then
display dialogボタンが押されました
end if 
end uni01_