OK, that gives me a better clue as to what's going on. I think I can deal with what I have. In fact, what I know now looks to be some good info. What I'm trying to do is this:
We will have data coming in on an RSS feed, and it'll be updated about every second.
When that happens, the new value will be placed somewhere, the old value someplace else, and we'll figure out a way to make some stuff happen on render.
OnRender, when we need to, (or, if we can run an Animation Controller clip), we'll calculate a value for each frame that is the frame value * (1/30 of (newValue-oldValue) ) + oldValue. This will be rounded to the nearest integer, and placed in a field in the scene, so that the field text will "flip" from its old value to the new value. As it does that, we'll update the X-position of a slider using that text and Visual Logic. Since it'll happen at refresh rate, the slider should appear to move smoothly to the new position as the numbers flip.
While we're on this, I guess it's be a great time to mention that some global variables would be a really useful feature.
:-)
#XPression