@isaacjaco49111 said in join a resource with a variable:
@Fox I understand, so for example if I have 20 accounts and I want to obtain resource 18, should I create 18 resources?
Create one resource and put the data of 20 accounts in it
Hello, I have a huge project and I have a global variable that bothers me because I have changed the way it works.
If I have to rename it manually, I'm in for the day.
So I tried with the script directly that works however in the bottom display I still have the old variable that is displayed because if I understand correctly
the /*Dat:eyJzIjoiY3VzdG9tIiwidiI6... contains the data that bas displays
Do you have a solution for renaming variables without using the editor? Thanks
@pronokush said in How to rename all variables at once in the project:
Do you have a solution for renaming variables without using the editor?
BAS doesn't have any tools for refactoring; every programmer must create them for themselves. That's our reality.
I believe you need a script that parses the XML file of the BAS project and changes:
@pronokush said in How to rename all variables at once in the project:
Hello, I have a huge project and I have a global variable that bothers me because I have changed the way it works.
If I have to rename it manually, I'm in for the day.
So I tried with the script directly that works however in the bottom display I still have the old variable that is displayed because if I understand correctly
the /*Dat:eyJzIjoiY3VzdG9tIiwidiI6... contains the data that bas displaysDo you have a solution for renaming variables without using the editor? Thanks
There is no such tool yet, but it is in development plans. Now you can write a script that changes the names of variables in the base64-encoded line of the technical description of the action, and then use the automatic actions update tool so that changes are applied to the action code following the interface