Hi!
I'm having a problem where my script which is on event in a scene director is not working when importing the project to other computers. I'm using Xpression SCE 6.5 3700 on all machines but it's working on 3/5 machines I've tested. They all run Windows 10 and are up to date as of now. There are and have been other version of xpression installed on the machines so that might have something to do with the problem, but I cant resolve the problem on the other machines. When trying the scene on another machine, all I'm doing is copying over the entire folder and running the scene. Tried reinstalling xpression on the computers that the script won't work on with no luck. There are other scripts in the scene that is working perfectly fine, only this one is not working. This is the script I'm having trouble with on certain machines:
dim arrow as xpBaseObject
dim ValueOld as xpTextObject
dim ValueNew as xpTextObject
dim MoveArrow as xpAnimController
Scene.GetObjectByName("arrow", arrow)
Scene.GetObjectByName("ValueOld", ValueOld)
Scene.GetObjectByName("ValueNew", ValueNew)
Scene.GetAnimControllerByName("MoveArrow", MoveArrow)
MoveArrow.SetKeyFrameValueTCB(arrow, 0,"Position.X",(ValueOld.text),0.5,1.0,0.0)
MoveArrow.SetKeyFrameValueTCB(arrow, 24,"Position.X",(ValueNew.text),0.5,1.0,0.0)