I think i might have not been successful in explaining the situation correctly, Let me rephrase it again in a simpler way with an example,
Lets say there are three objects:
"Sp_Data", "Sp_B1" and "Sp_B2",
where object "Sp_Data" have an instance variable named "BChoice" with value "choose("Sp_B1","Sp_B2")"
Now i want to create object randomly between Sp_B1 & Sp_B2 so i so i create this event,
1. Every X Second >>> Create Object by name(Choose("Sp_B1","Sp_B2"))______This works fine!
But i want this event to take the value of name from the instance variable of object "Sp_Data" that is "Bchoice" so i create this event,
2. Every X Second >>> Create Object by name(Sp_Data.BChoice)______This does not work!
So question is what do i do to make event "2" work?