OSXのフリーソフト紹介、基本的な使い方を解説。
| PAGE-SELECT | NEXT ≫
<a href="applescript://com.apple.scripteditor?コピーしてもらいたいコード">リンク名</a>上記のような形でリンクを貼るだけです。set myString to the clipboard
set myStringConv to ""
set beforeList to {"%", " ", ASCII character (10), ASCII character (13), ASCII character (34), ASCII character (9)}
set afterList to {"%25", "%20", "%0a", "%0a", "%22", "%20%20"}
set oldDel to text item delimiters of AppleScript
set i to 1
repeat with x in beforeList
set text item delimiters of AppleScript to x
set mylist to every text item of myString
set text item delimiters of AppleScript to item i of afterList
set myString to mylist as string
set i to i + 1
end repeat
set text item delimiters of AppleScript to oldDel
set myString to "<a href=" & (ASCII character (34)) & "applescript://com.apple.scripteditor?action=new&script=" & myString & (ASCII character (34)) & "> </a>"
set the clipboard to myStringこのAppleScriptをスクリプトエディタで開く
try
tell application "System Events"
click button "応答" of group 1 of window "自動応答" of process "Skype"
end tell
end trySkype通話を取るAppleScriptをスクリプトエディタで開くtry
tell application "Skype"
activate
end tell
tell application "System Events"
pick menu item "切断" of menu "通話" of menu bar item "通話" of menu bar 1 of process "Skype"
end tell
end trySkype通話切断のAppleScriptをスクリプトエディタで開く
cd ~/Library/Application\ Support/Firefox/Profiles/xxxxxxxx.profilename/それから、sqlite3のvacuumコマンドで再構築sqlite3 places.sqlite vacuum何がしかの不具合が起きる可能性がありますので、Profiles以下のフォルダはどこか違う場所にコピーしてバックアップをとっておくのがいいでしょう。
<VoiceEng>
<MicBoost>
<C-Media.20USB.20Headphone.20Set.20.20>0</C-Media.20USB.20Headphone.20Set.20.20>
</MicBoost>
<MicVolume>
<C-Media.20USB.20Headphone.20Set.20.20>99</C-Media.20USB.20Headphone.20Set.20.20>
</MicVolume>
</VoiceEng><VoiceEng>
<AGC>0</AGC>
<MicBoost>
<C-Media.20USB.20Headphone.20Set.20.20>0</C-Media.20USB.20Headphone.20Set.20.20>
</MicBoost>
<MicVolume>
<C-Media.20USB.20Headphone.20Set.20.20>99</C-Media.20USB.20Headphone.20Set.20.20>
</MicVolume>
</VoiceEng>0から1にすると自動調節機能Onに戻せます。
| PAGE-SELECT | NEXT ≫