Hello I would have a feature request.
I spent about 1-2 hours today by replacing variables in complex blocks of code by new variable types.
Example:
x0+x1+x2+x3... (setting up huge blocks of code involving variables)
,,Oh wait, this does not work. I have to use a global variable. Or a local one instead. Or maybe better to use an instance variable. Oh noes I have to change hundreds of lines of code which contained the old variables. D:"
This was the scenario I had about 2 times today. It would be really usefull if construct had a feature which would allow the user to replace a variable and all it's references with a new one. Or a feature to find and replace specific peaces of code in an event sheet.
I suggest you organize your code to have an easier time editing this.
Also global variables are really something to use only when needed, I'll always try to have a local static variable or instances variable first.
Also if you have complex calculation, I'd recommand using functions so the calcul is written once on the entire project, but called multiple times (so you only have to edit once), It'll also be easier to read.
(For your suggestion to find and replace, there is a research function for the events sheet, but I think it is for non-free versions only)