Window Index?

 
Hello,
I want to create an object on a separate windows. Main Window's Index is 0, how about other separate windows? how can I determine it's index?
Thanks
 
 
Thank you, I've just find it on the metaeditor, but you seems faster than me :)
 
I try to make a text objet in a separate window, but nothing is appear, whats wrong?

int init()
  {
//---- indicators
   IndicatorShortName("Object");
//----
   return(0);
  }

   int index=WindowFind("Object");
   
   ObjectCreate("test",OBJ_TEXT,index,0,0); 
   ObjectSet("test", OBJPROP_CORNER, 0);
   ObjectSet("test", OBJPROP_YDISTANCE, 10);
   ObjectSet("test", OBJPROP_YDISTANCE, 5);
   ObjectSetText("test","Hello World",20,"Arial",White);
What I want is to make "Hello World" appear bellow indicator's name.

Thanks
 

Not OBJ_TEXT

Use OBJ_LABEL

 
Poor me, I didn't recognize it.

Thank you Phy, you're very helpful.
Reason: