If you are talking about the user deleting it while check out Callbacks in the help file… specifically #nodePreDelete If the script it self is deleti…
if you scope your include within the script it shouldn’t write them out… your including in a global scope… ( include “functions.ms” var = p…
Are you writting your own submittal script? That would allow you to do whatever at that time between the user pressing the render button and it going…
Options: the Script needs to be either: Defined somewhere in the plugins or startup on all machines Coded directly in a string Filein script from an…
persistent:true On your callbacks is what you need. I have often have the function being called as a library function which initializes at start up……
It falls right in line with the Messagebox string display… Messagebox ” Hi There This is a whole Line WOW WOW”
It’s funny what you never try sometimes… this is new to me too… I guess there’s no more dialogs defined like this!.. ha ha… …. label LB01 “The M…
Here’s my quick stab at it… but I’ve found a issue with my angle idea… that the distance is a factor for closely angled points… so I was thinking mayb…
yeah… like so – in the listener p1=[20,20] [20,20] p2=[10,10] [10,10] atan2 ( p1.x-p2.x ) ( p1.y – p2.y ) 45.0 p2=[10,20] [10,20] atan2 ( p1.x-p2.x )…
Is the Arrayed data 2D or 3D? I’m assuming 2D as you wish to bound with a spline… If your working in 2D: You may want index them by degrees from the…
A Quick shot… this worked on a selection of 4 boxes… The Dialog still comes up, but it then runs over all the objects in the current selection doing …
We have an independent box that watches our BackBurner Managers, e-mails completions, creates custom logs, makes dailies of completed animations and r…
Got it to work by unlinking the Parameter/UI link and managing in rollout… I don’t know if it’s proper… but it’s working… plugin simpleObject Enviro…
Without seeing the scripts, it’s impossible to know how or if they can be combined and get the desired result… for example… There might be two or more…