How to overlay contact_name on Sms_sender
Posted: 02 Aug 2014 13:55
Hi guys,
I am trying to work on a flow that shows a message dialog that overlays a contact name instead of the number when i recieve a sms.
I have tried adding a script prior to the execution if the message dialog.
if ($sms_sender == $contact_name)
{
$global_Name =$contact_name;
}
else
{
$global_Name =$sms_sender;
}
I also tried simply instead of the global variable jus calling it Name then copying Name to clip_data then added clip_data to the message dialog. All that clip_data contained was Name and not the variable.
Am i doing something wrong?
Sam
I am trying to work on a flow that shows a message dialog that overlays a contact name instead of the number when i recieve a sms.
I have tried adding a script prior to the execution if the message dialog.
if ($sms_sender == $contact_name)
{
$global_Name =$contact_name;
}
else
{
$global_Name =$sms_sender;
}
I also tried simply instead of the global variable jus calling it Name then copying Name to clip_data then added clip_data to the message dialog. All that clip_data contained was Name and not the variable.
Am i doing something wrong?
Sam