Hey started experiment with custom sheets and i cant figure out why basic event triggers arent working. I am using the sheet sandbox btw. I use a custom char sheet that is currently just a copy paste from WH40k e2 advanced sheet so i just wanted to get a basic understand of the api and did as sample: on( "change:strength" , function (eventInfo) { sendChat( "test" , "new value" ) ; sendChat( "test" , eventInfo. newValue ) ; }) ; on( "ready" , function () { sendChat( "test" , "hello" ) ; }) ; The 40k sheet has the following html <input name ="attr_strength" class ="sheet-unnaturaltext" type ="text" value ="0" > and from what i gathered i should get this value now if i change it in my sheet, but it doesnt work. The on ready event fires fine btw. Anything i am not getting?