@spa3212 said in UI button to perform specific function:
I wonder if it is possible to have a Button on a UI interface. When click it perform a specific Call to function.
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?
@hellomembersha said in Function Variable:
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?
"Execute code"
[[NEW_VARIABLE]] = function(){log("hello")};
Use [[NEW_VARIABLE]](), type expression
Thank you fox