Profile

Ben Stahl

Contact Details

My Content

1 to 7 of 7 total
Posted By Ben Stahl 07-10-2024 22:25
Found In Egroup: Graphics
\ view thread
I haven't found a way to see a script in a scene from the API (I was recently looking for a way to set a script on an object programmatically), but at least in v11.5 and maybe earlier, xpSceneObject has a read/write VisualLogic property (type xpVisualLogic). In the xpVisualLogic object, you might be ...
Posted By Ben Stahl 06-07-2024 14:31
Found In Egroup: Graphics
\ view thread
I'm trying to do exactly the same thing you are. It's a small thing but since "print" debugging is about all we have, I use it a lot and the extra typing time adds up (as well as remembering the , 0 on the end). I haven't found a solution yet though, a way to retrieve the active engine (the one provided ...
Posted By Ben Stahl 03-13-2024 21:50
Found In Egroup: Graphics
\ view thread
Hi, we have a Project Server machine which has a large D drive (1.6 TB), yet the Project Server Database seems to be stored on the much smaller C: Drive in C:\Program Files (x86)\Project Server. And the problem is the C: drive is now full. First, is there any way to change the location of where it ...
Posted By Ben Stahl 03-12-2024 20:07
Found In Egroup: Graphics
\ view thread
Update: while this method does work, at least sometimes, in the Designer machine using it made the machine very crashy. Studio would hang pretty often when setting/getting the global variable, although not consistently. I tried all the usual things like restarting the app, rebooting, etc. When not using ...
Posted By Ben Stahl 03-07-2024 17:46
Found In Egroup: Graphics
\ view thread
I can confirm this works. There was an older post suggesting to use the format ".GetValue" and ".SetValue" which DOES NOT work (maybe it did then). ------------------------------ Ben Stahl ------------------------------
Posted By Ben Stahl 03-07-2024 15:08
Found In Egroup: Graphics
\ view thread
Thanks Simon, I am doing this...had to make multiple duplicate scripts to spread the work out over multiple frames. It works, but a bit clunky. Still would like a scripting call to assign a script (as string) to an object! ------------------------------ Ben Stahl ------------------------------
Posted By Ben Stahl 02-24-2024 20:18
Found In Egroup: Graphics
\ view thread
Hello, I have a scene where all the content is generated dynamically by a script that runs in OnPrepare. But many of the text object copies need to trigger something on a datalinq change. I would normally do this in OnSetText. Is there a way to assign a script (like OnSetText) from a script, or copy ...