@David-Healey Thanks!
Posts
-
Regarding expansionsposted in General Questions
Could someone update me if it's safe using expansions.
I have searched the forum and found some issues regarding getting the expansion sample maps and samples to be read accurately
Also regarding reading presets, favorites etc so that the preset browser will be updated without any errors?
Or should I wait to dive in? -
RE: How to Fix Filters not working on DAW as they do on HISEposted in General Questions
@duma this is not a function that exist in Hise
LFOModulator1.setFrequency(value)You need to use the "setAttribute" method like this
LFOModulator1.setAttribute(LFOModulator1.Frequency, value); -
RE: getPopupMenuTargetposted in General Questions
@dannytaurus said in getPopupMenuTarget:
Thank you!
-
RE: Radio Button - wrong default valueposted in General Questions
@Ben-Catman You could do like this
inline function onRadioButtonsControl(component, value) { if (value) Delay1.setAttribute(0, RadioButtons.indexOf(component)); }if you have a condition without curly braces, only the first line after if(value) will be affected by the condition. All lines after will be affected wether the value is false or true in this case, and you have 3 buttons that will trigger after each other.
-
RE: Radio Button - wrong default valueposted in General Questions
@Ben-Catman You have not set this line correctly:
It needs to be inside the "if (value)" conditionDelay1.setAttribute(0, RadioButtons.indexOf(component));inline function onRadioButtonsControl(component, value) { if (value) { Console.print("Active Button is: "+RadioButtons.indexOf(component)); Delay1.setAttribute(0, RadioButtons.indexOf(component)); } } -
RE: Radio Button - wrong default valueposted in General Questions
@Ben-Catman Do you have "saveInPreset" activated on the buttons?
HiseSnippet 917.3ocwV01aaaCDlzNbc1aqXEX+.DB1Gr2BBrhcdoqXXtwNoyaKIF0cEannnilhJhHRjBTTo0XX+m6+ftiRxUzsNcsFsX5CF93cOGeti2cjS0JFOKSoQ31OZQJGg+RxrERSznHpPhlLFguMQSCDp44FiRlgNdQJMKiGfv3lOvZCt0VnhuW9SGSioRFudID5wJAi+ahDgod0oC+UQb7oz.9iDINVOX3DlRNREqxA9zjzCkRYWQujeN0ZVCB5moYQH72QXACXCXGLefOkFdn+7C3yOx+Pe9Qr8CtKiQY6Om42uOEg+rSBDFkdlgZ3YH7VGqBVLKR8bY4F7XQlXdL2J3ilA6b4xmphCrgncUznHQbvzkIpLD3ko0oslkosugblHP750qSeecgBuZDtIPbiUoWyUnmuK854Pu0PIrCk1pjR2gLioEolZMV97EjIRCWGRgyIWpTZKpwuzfLRAVHM6lPuhepFDdMhNGzq2NdvOcuW61vYUlw6Zp16g1BjiKKP79QumrzAWxMiTIoJIHzY6RC72t6Ns8twu2Ez81bn82t6SAJKjwBI2KLWxLBkzSIcot0AZUbG1Rz6.QWbNua6+tcKQnWmJoVs.KyTw7cS0B6dbevaWy8JcimH6G7196cc7tBY.+EWDV64tPB7eZ2NTo85n8DxURgvNn2MyFEE7YDMNdNzHzYsrs68bhlyUF9ExNEDF7u2apJLbs5pbULWuV01tT86BXGYdxbt1McYMDpDWs7lbyk2tcerxCRGCUxIRg4hTt7l5IQUm9PqPyJVA+yTzHb6pFgxDGR.06sHUUinBJCTCWLB5C.5daNz9KgVO5D86SFSMTambUj.QWJWaD1DGdL+ZXNZYecKxXd1UFUZQnVUPgv258HXeQ8V9sCW3J7bQfIpdg+bXDWbYjyP6wCKtF3AZUd5JD+ChB64Pgg+0+KTnuKETernvaO9EF7qBxiolUuMvdmYkBnGZkQv1wrxLgYgqm+ncEw6KEuCYpvvhVOGarFNB0reJ3X0EqeE4jvPNyTSvsHm9GeZtEE8PUtQHu7LpQKfpDx44IyfGiv3vtKk7X6LLbCaydobukc+y3xfBgWAeUJ8sx3Jk9KUhRnLs5YrxoE1qt+7hU.NIKdlSKxYVYO+2bHABk.uj3YL1pt5s.t2lBr+lBbvlBb+ME3AaJvC2TfG8eCz9Pu6maTIksMHzYSOoXnNFehjBUfEUqn+ErZAbnL -
getPopupMenuTargetposted in General Questions
I can't find any information about this, what is the function and how to use it?

-
RE: Right click on a windows tabletposted in Scripting
@ulrik So back to the main question:
Is it possible to, via scripting, delete a band?
It would we good to know how to that. -
RE: Right click on a windows tabletposted in Scripting
@pgroslou thank you but he use only the screen
-
RE: Right click on a windows tabletposted in Scripting
@David-Healey I'll tell him, thank you David!
-
RE: Right click on a windows tabletposted in Scripting
@David-Healey I will ask him and come back with an answer
-
RE: Right click on a windows tabletposted in Scripting
@David-Healey According to the user it's not possible, I don't own a tablet my self so I could check
-
Right click on a windows tabletposted in Scripting
I'm working on a project that will be compiled as a Stand Alone instrument and will be used on a windows tablet.
Unfortunately you can't use event.rightClick, and not click + ctrl
So in a draggableFilter it's not possible to delete a band, is it possible to via scripting, delete a band, preferably the selected one? -
RE: How to get numbers from stringsposted in General Questions
@dannytaurus @Oli-Ullmann @ustk thank you all for the help, all your suggestions work great!