My Thing wont open, Locked up system.
We are trying to set up our alert features for our door sensor by changing the value of IsTriggered, which is a property of the Thing from a Thing Shape. We are writing the subscription through the extension Twilio has given us. We are doing a few edits in that script and it works, every time we run we do get the text message from the Twilio account but it seems to lock up the Thing that we Trigger that alert on within Thingworx. The Thing will not open, show properties, and in return locks up most of our system.
Below is the script that we are using:
if(Things["DoorOpenCloseSensor"].ArmedDisarmed==1){
if(Things["DoorOpenCloseSensor"].IsTriggered==true){
var params = {
to: "//MY PHONE NUMBER" /* STRING */,
text: "Your Door Has been Opened!" /* STRING */
};
Things["DoorOpenCloseSensor"].IsTriggered=false;
// no return
Things["TwilioBaseThing"].SendSMSMessage(params);
}
}
Things["DoorOpenCloseSensor"].IsTriggered=false;
When going to the Thingworx Community forums we noticed a listing that was kind of similar to what is going on with our project. Here is the link to that listing: https://community.thingworx.com/thread/2469
Is there a way to get out of this lockup? Is there something wrong in this script that could be causing this lockup?

