Thread: Whats rong?
View Single Post
06-03-08, 04:39 PM   #1
Raden101
A Murloc Raider
Join Date: May 2008
Posts: 5
Whats rong?

Code:
NameL = getglobal("MyForm".."NameLabel".."Label");
TextL = MyVar["Name"];
NameL:SetText(TextL);
and on another lua file i have this

Code:
MyVar= {};
MyVar["Name"] = "Text here";
and it will not show the "Name"
also if i chang it to this it works.

Code:
NameL = getglobal("MyForm".."NameLabel".."Label");
TextL = "TEST";
NameL:SetText(TextL);
Can anyone help a noob out?

tAnKs!
  Reply With Quote