Object Index Problem

 

Hey, I got an object:

ObjectCreate(NameOfObject ....

And now I need to place the same object several times with different coordinates but as the NameOfObject stays the same it's not possible to create multiple objects in the same chart. How can I set an extra name for each object? I would need something like that:

NameOfObject+IncreasingIndexAfterPlacingObject

I'm glad if anyone could give me a tip.

 
Use StringConcatenate to create the name . . .
 

NameOfObject+IncreasingIndexAfterPlacingObject works fine. You can also use NameOfObject+Time[x]

Reason: