Hi, I paste here my PM to Ashley who, I'm aware, is very busy.
Is there a way to return/access the layout size and/or the project in the Edittime.js.
I would like allow user change the layout size considering some other properties (read at bottom)...
Also, I encounter that I guess is a bug...
Still in edittime.js, in OnPropertyChanged, I compare two properties that make a change in another property...
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" value, and after that, the value change to "320"....
if (this.properties["Screen"] == "Low" && this.properties["Orientation"] == "Vertical")
{
this.properties["Screen width"] = 320;
this.properties["Screen height"] = 480;
}