need to select a lable from mql

 
is there an object set cmd to select a lable in mql4? want the ea to enable it so I can modify it without having to double click first thanks
 
sect8:
is there an object set cmd to select a lable in mql4? want the ea to enable it so I can modify it without having to double click first thanks

Well there is an ObjectSet() function but it sounds as if you want an Object Select function. It seems that one cannnot operate on Objects that way. You need to know the NAME of the object then you operate on it directly.

If you created the object then you do know its name and there is no need for a select function. In fact I don't think there is such a thing as a select function. In the user interface you click to select, then delete or modify. That's not the way an indicator or EA operates. Each command operates on the object directly, without the intermediate step of "selection".

Reason: