APPLESCRIPT_CTI_Dialing_TipTel ( pPhoneNumberFieldname )
Dial phone number of TipTel phone connected by USB to Mac
Average rating: 4.5 (24 votes) Log in to vote
Ralph Nusser - Show more from this author
Sogetes FileMaker-Services https://www.D10.GmbH |
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
/*-----------------------------------------------
SYNTAX:
_APPLESCRIPT_CTI_TipTel_NUSSER ( pPhoneNumberFieldname )
AUTHOR:
Ralph Nusser, 04-NOV-2011
DESCRIPTION:
Dial phone number of TipTel phone connected by USB to Mac
SOURCE:
http://direct.ilink.de/de/downloads.html
http://www.tkr.de/telefon/direct.html
-----------------------------------------------*/
SetzeVars ([
vPhoneNumberFieldname = pPhoneNumberFieldname;
vLine1 = "set myPhoneNumber to cellValue of cell \"" & vPhoneNumberFieldname & "\" of current record" & ¶;
vLine2 = "tell application \"direct\"" & ¶;
vLine3 = "MakeCall to myPhoneNumber" & ¶;
vLine4 = "end tell"
];
vLine1 & vLine2 & vLine3 & vLine4
)
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.