I paste a part of a post I wrote few days ago.
I encountered that I guess is a bug...
In edittime.js, in OnPropertyChanged, I compare two properties that makes a change in another property...
if (this.properties["Screen"] == "Low" && this.properties["Orientation"] == "Vertical")
{
this.properties["Screen width"] = 320;
this.properties["Screen height"] = 480;
}
But, in C2, when I set the property "Screen" to "Low", it doesn't automatically change the "Screen width" value to "320", as it has to do.
I have to input something in the "Screen width" input area, and after that, the value updates automatically to "320"....