11-30-2010 06:30 PM
11-30-2010 06:55 PM
You don't need to pass data from one to the other because you are using a flat sequence structure. The frames will execute in the order that is laid out. You need data passing only if you don't use the sequence structure.
11-30-2010 10:00 PM
My bad. It appears I had a race condition elsewhere in the program, and I though this was the cause of the erroneous behavior I was experiencing.
Good to know that these film-strip thingies work without input being passed around.
12-01-2010 09:51 AM
Actually, those film strip thingies are considered to be bad programming practice. What if you have an error and need to break out from a frame in the middle to handle the error? There is no way to do it with sequence structures. You should consider using a state machine. There are many examples of state machines if you search for them. Don't wait for some drastic problem to happen. Switch to a state machine now and forget about those film strip thingies.