adman635 wrote:But there's always times when I'm online and need to just call a number on a website (No Skype plug-ins for Firefox for Mac like on XP unfortunately). For this the built-in functionality isn't useful at all.
adman635 wrote:Just grabbed your scripts though, will play with them. I especially like the idea of hanging up calls w/o that window. I hate having to find it to click that little red button.
brendara wrote:How much does it cost to call landlines from Skype?
Code: Select all
on handle_string(s)
tell application "System Events"
if process "Skype" exists then
set okflag to true --iTunes is running
else
set okflag to false
end if
end tell
if okflag is true then
tell application "Skype"
get URL "skype:" & s & "?call"
activate
end tell
else
my growlRegister()
growlNotify("Skype Call", "Starting Skype … \n Try again after Skype startup sound!", 0)
tell application "Skype" to launch
end if
end handle_string
on growlRegister()
tell application "GrowlHelperApp"
register as application "Skype Call" all notifications {"Alert"} default notifications {"Alert"} icon of application "Skype"
end tell
end growlRegister
on growlNotify(grrTitle, grrDescription, grrPriority)
tell application "GrowlHelperApp"
notify with name "Alert" title grrTitle description grrDescription priority grrPriority application name "Skype Call"
end tell
end growlNotify
Return to “LaunchBar Search Templates”
Users browsing this forum: No registered users and 1 guest