Hello, I am new in NGUI and testing to see the possibility to use it in my feather projects
I am trying to have several windows with tween effect which trigger by the same button.
Therefore, I switch the tweenTarget in UIButtonTween by following coding
tweenTarget = Instantiate(Resources.Load("PrefabA")) as GameObject;
tweenTarget.transform.parent = transform.parent;
it works properly when I first click it with PrefabA,
then I closed the window and click it again which tweenTarget is PrefabB now,
and the new window does come out with nothing loaded.
I have tried several time, which the script go through properly, the information printed on log as well, but it just not appear in the window, neither sprite nor label.
Did I miss something there? or I can't just change the tweenTarget like this?
Please kindly help

thank u very much