hi,

sorry I ask a lot of questions grin

This is the situation:

I hav several panels with these kind of names:

inventory_panel_1, inventory_panel_2, inventory_panel_3,...

I have a function and I want to make all these panels visible with just one while loop, like this:

Code:
function whatever ()
{
  while (x < y)
  {
    inventory_panel_x.visible=on;
    x+=1;
    wait(1);
  }

}



Is it possible (don't forget the above code does not work)?

Last edited by Mahdi; 04/05/11 12:50.

I don't care!