I've been having the usual problem of not being able to use objects which have just been created which are on the same 'level' as the next groups of code. As such, I've had to move the function to create my objects to a higher level, so that the next group of code is in the level lower. But now the strangest thing is happening.....
I create my objects in a function (which is at an even higher level and I can confirm that the objects are created) but in the very next line of code, when I do an object.count, it's back to zero.
I've always had this problem with C2 and the solution is usually to check that the objects are created on a higher level, but it seems to have changed.
So it's like this.
-------> Call Function to create objects
Object count is zero.
--> Function to create objects (top level).
Object count is 10 when leaving function.