ホーム > サポートセンター > 新機能ガイド > ARENA 2.0 新機能ガイド >

2.0で追加されたAppleScript
[Wednesday, February 28, 2001]

ARENA 2.0で新たに追加されたAppleScriptの一覧およびサンプルスクリプトを簡単にご案内します。

ARENA 2.0で追加されたAppleScriptを利用して、下記の処理を実行することができます。
  • サーバーセットを切り替える
  • 着信転送のマスタースイッチを切り替える
  • オンライン/オフラインを切り替える
  • アートセットを切り替える
  • 新規定型メールを作成する
  • メールをチェックする
  • ヘッダーの太字表示の設定を切り替える
注記:以下のサンプルスクリプトを利用する場合には、マークのところで改行をするようにしてください。
サーバーセットを切り替える
現在のサーバーセットを、「デフォルト」という設定名のサーバーセットに切り替えるサンプルスクリプトです。「ツール」メニューの「サーバーセット切替」コマンドに相当します。

tell application "ARENA 2.0 PPC"
try
set current connection set to connection set "デフォルト"
display dialog "サーバーセットを「" & (name of current connection set as string) & "」に変更しました。" buttons {"OK"} default button "OK"
on error
display dialog "サーバーセットを変更することができませんでした。" buttons {"OK"} default button "OK"
end try
end tell
着信転送のマスタースイッチを切り替える
着信転送のマスタースイッチの設定を変更するサンプルスクリプトです。「ファイル」メニューの「着信転送を使う」コマンドに相当します。

tell application "ARENA 2.0 PPC"
if auto transfer is true then
set auto transfer to false
display dialog "着信転送機能を無効にしました。" buttons {"OK"} default button "OK"
else
set auto transfer to true
display dialog "着信転送機能を有効にしました。" buttons {"OK"} default button "OK"
end if
end tell
オンライン/オフラインを切り替える
オンラインとオフラインの状態を切り替えるサンプルスクリプトです。「ファイル」メニューの「オフラインで使う」コマンドに相当します。

tell application "ARENA 2.0 PPC"
if online is true then
set online to false
display dialog "オフライン状態に変更しました。" buttons {"OK"} default button "OK"
else
set online to true
display dialog "オンライン状態に変更しました。" buttons {"OK"} default button "OK"
end if
end tell
アートセットを切り替える
現在のアートセットを標準アートセットに戻すサンプルスクリプトです。

tell application "ARENA 2.0 PPC"
set current art set to default art set
display dialog "アートセットを「" & (name of current art set as string) & "」に変更しました。" buttons {"OK"} default button "OK"
end tell
新規定型メールを作成する
新規定型メールを作成するサンプルスクリプトです。「new template mail "(テンプレートの内容)"」という書式です。

tell application "ARENA 2.0 PPC"
activate
new template mail "#
#H{To:syukka@yourcompany.co.jp}#
#H{Subject:出荷報告#D}#
#Dの出荷報告です。

【出荷先】
【出荷商品】
 「オールドトラック」        冊
 「トラックモーターショー」     冊
 「トランスポートテクニック」    冊
 「CHIKAMICHIマガジン」  冊

#S"
end tell
メールをチェックする
「ファイル」メニューの「メールをチェック」コマンドを実行するサンプルスクリプトです。

tell application "ARENA 2.0 PPC"
with timeout of 600 seconds
activate
if online is false then
set online to true
end if
if network activity is false then
check mail
end if

end timeout
end tell
ヘッダーの太字表示の設定を切り替える
ヘッダーの太字表示の設定を切り替えるサンプルスクリプトです。

tell application "ARENA 2.0 PPC"
if header bold is true then
set header bold to false
display dialog "ヘッダーの太字表示を無効にしました。" buttons {"OK"} default button "OK"
else
set header bold to true
display dialog "ヘッダーの太字表示を有効にしました。" buttons {"OK"} default button "OK"
end if
end tell







ARENA Internet Mailerは2002年9月末日で販売終了になりました。ご愛顧いただきまして誠にありがとうございました。

Copyright © 1998-2014 ARENA Project. All rights reserved.
お問い合わせ先