つづきです。。
Apache_Start.applescriptと、
Apache_Stop.applescriptにも修正を加えます。
こんな感じになりました。
Apache_Start.applescript
CODE:
on clicked theObject
do shell script "/usr/local/apache2/bin/apachectl graceful" with administrator privileges
set string value of text field "status" of window "mainwindow" to "Status: ON"
set title of button "start_btn" of window "mainwindow" to "Graceful"
set enabled of button "stop_btn" of window "mainwindow" to true
end clicked
Apache_Stop.applescript
CODE:
on clicked theObject
do shell script "/usr/local/apache2/bin/apachectl stop" with administrator privileges
set string value of text field "status" of window "mainwindow" to "Status: OFF"
set title of button "start_btn" of window "mainwindow" to "Start"
set enabled of button "stop_btn" of window "mainwindow" to false
end clicked
テストしてみます。

おおっ。バッチリのようです。
見た目も多少整えます。
出来上がりか?