public class myObject{
private var numVar:Number
}
My AS file:
var temp:MyObject
temp.numVar = 0;
When I debug, temp.numVar
contains a value of 0
, but does not show anything on the UI. If this object is then saved to the DB, and then displayed to the UI, it shows a 0
. My question is - how do I get temp.numVar
to display 0
before persistenting it to the DB?