Class' properties no updating

First off, I am a bit of a novice when it comes to Actionscript 2.0 - although I have plenty other experience with OOP programming.

Here is my situation: I have a Wheel movie clip which is linked to a Wheel class (in external .as file), and each wheel has an array of WheelPoints (also in a .as file). they are both linked similarly to their own respective MovieClip sybols in my .fla file.

Problem: I can’t get up-to-date access for a property in my WheelPoints class from anywhere outside the class. I have a boolean defined for the WheelPoints class which, when traced inside the class, returns the propper value (if it is coliding or not, in this case). But when traced outside (Wheel class or in main .fla file) the original value (false) is always displayed.

Is it because the value is being set in a onEnterFrame function?

If anyone has any advice I would really appreciate it. :ne:

Thank you.