Strange request on buttons...
- 
 I'm trying to utilize the componets that will take filmstrips... how would you go about controlling a buttons 2 states in the script... const midi_indicator_btn = Content.getComponent("midi_indicator_btn"); 
 inline function midi_indicator_btn_func()
 {
 midi_indicator_btn.value == 1;
 }midi_indicator_btn_func(); I know I'm close and 'save in preset' is dissabled... thanks in advance... 
- 
 @Felix10870 The API browser contains a list of all the functions you can use with buttons (and other controls). The one you want is setValue() 
- 
 @d-healey thank you... I have been experimenting... with set value... Just getting used to the sytanx... this is day 8 with HISE(I think) 
- 
 A lot of this stuff is covered in my videos - not that I'm trying to get more views or anything :p 
- 
 @d-healey I have been glued to them... so much information to absorb... I watching your deep dive on the sampler now... the last sampler I knew really well was the AKAI S1000  
- 
 @d-healey and I finaly got it... Content.getComponent("midi_indicator_btn").setValue(1); 
- 
 @Felix10870 Probably not the way to do it, using Content.get component outside of on init is less efficient than other methods. Get a reference to the component in on init and use that reference in the callback instead. 
- 
 @d-healey what is the Engine is dangling error... I get this when calling a timer... 
- 
 @Felix10870 Something @Christoph-Hart was using for testing and we can ignore. 
- 
 Ah yes, good riddance... 
- 
 @Christoph-Hart Thanks guys for the clarification... it just set off the 'newb alarm'... 


