View Single Post
  #4  
Old 01-06-2011, 11:27 PM
Toxen Toxen is offline
A Toxic Fellow
Join Date: Jan 2008
Location: Georgia
Posts: 36
Toxen is on a distinguished road
Thanks for the help on that question , but now kinda another problem and it seems so easy but I cant figure it out.

the name of my gui controls are "Ron_TD_EnemyImage_ 0-14" and I created them all at the same time using a loop, I also need to move them all at the same time using a loop but the problem is I've tried like


PHP Code:
 for (i=0i<15i++){
   (
Ron_TD_EnemyImage @"_"i).bleh();
 }

//Or i've tried

 
for (i=0i<15i++){
  (
Ron_TD_EnemyImage i).bleh();//Aswell as putting an @ before the Ron
 

But i cant get the control name to work !

Anyone got any ideas? Please and thank u!
Reply With Quote