corneli:
How do I make skype not start when I start up my macbook?
Normally this happens when skype is included in startup items.
You should be able to find this somewhere in system preferences > accounts > [your account]
After several test, we found out example code only works in SC and WC if server and client are the same machine (launched from Developer)… Because executeProgram function works in client when launched from SC, but it’s executed in server when launched from WC.
Due to this, we are using this code to calling:
function core_Skype_call(phoneNumber)
{
var vString = 'callto:'
// If parameter is null, opens Skype
if (phoneNumber)
vString = vString + phoneNumber;
if (application.getApplicationType() == APPLICATION_TYPES.WEB_CLIENT)
{
application.showURL(vString,'_self')
}
else
{
core_openFile(vString)
}
}
and this to chat:
function core_Skype_chat(contactName)
{
var vString = 'skype:'
// If parameter is null, opens Skype
if (contactName)
vString = vString + contactName + '?chat'
if (application.getApplicationType() == APPLICATION_TYPES.WEB_CLIENT)
{
application.showURL(vString,'_self')
}
else
{
core_openFile(vString)
}
}