Global variable to local?

Guys. Original Poster made a variable, then realized that he should have made it a local variable. That’s why he says he is trying to drag it down to the local variable section. He knows what local variables are. He just made a mistake and wants to easily fix it.

Answer for original poster: no, you cannot just drag the variable down to local and change it. I see no way to easily do this. You have to make a new local variable and then replace the old one everywhere with the new local one. Then delete the old one.

1 Like