Posts: 166
Threads: 26
Joined: May 2013
Reputation:
0
14.06.2013, 12:54
(
Последний раз редактировалось HardRock; 14.06.2013 в 15:23.
)
ppppppppppppppppppppppppp
Posts: 386
Threads: 10
Joined: May 2012
Reputation:
0
1. You made a global variable named "string" (on top of your script)
2. You made one or more local variables named "string" in different/one callback(s)
3. The variable shadows a variable at a preceding level.
Fix:
Rename either the global variable or the local variables (plural, multiple variables) and it will be fine.
Hope this helps, the easy and fast way would be to rename the global variable rather than renaming the other local ones, good luck.