Here is the script I use. This gets put on a hotkey combination in the Keyboard/GPI Mapping area under the "Edit" menu. You would change the name of the scene from "FAMILY FUEL" to the name of your scene and would change the name of the director from Answer1 to the name of your director. Then when you hit Alt+1 the number one answer would be revealed by the scene director1 which triggers animation 1. This might be easier on the phone. haha or over a beer.
dim scene as xpScene
dim fb as xpOutputFramebuffer
dim scenedir
engine.GetOutputFramebuffer(0, fb)
if fb.GetSceneOnLayer(0, scene) then
if Scene.Name = "FAMILYFUEL" then
if scene.GetSceneDirectorByName("Answer1", scenedir) then
if scenedir.position >= 60 then
scenedir.PlayRange(60, 0)
else
scenedir.PlayRange(0, 60)
end if
end if
end if
end if
#XPression