03.01.2014, 20:43
"local variable "string" shadows a variable at a preceding level"
means that you already have a variable named like that somewhere in your script.
same goes for the "name" var.
you have to use different identifiers
Just choose another identifer for "string" and "name"
like "stringxy" and "namexy"
means that you already have a variable named like that somewhere in your script.
same goes for the "name" var.
you have to use different identifiers
Just choose another identifer for "string" and "name"
like "stringxy" and "namexy"