Instead of using native mxs controls you might want to check out the listview control. Each row in a listview can have a checkbox, and multiple column…
Change this line : dataGridView1.Columns[1].Name = “Track” To (the collection array is zero-based) : dataGridView1.Columns.Item[0].Name = “Column 1” …
abyjoe: gravey you are right… the code by itself does work… … code … this i tried and it doesnt work… i think whats wrong it createfile function… …
Could it be that you left the file open in a previous run? When you execute (opening but not closing the file): fStream = openFile out_name mode:”w”…
The vector can be used to set the .dir (direction) property of an object: $Box01.dir = [b]theVector[/b] Or you could use it to build a matrix: wUp…
You’re probably better off using the maxOps.CloneNodes function, which retains node hierarchies/dependencies. The following should do the trick: maxO…
It will also work if you declare them as locals. This is probably a matter of personal preference, but in my experience it’s better to use locals unle…
Since you’re deleting nodes in the callback function itself, your function causes the callback to be executed recursively (until the script errors out…
You could store the selection index of the dropdown list in the param block of your plugin, and use the on rollout open event to enable/disable the co…
I just started modifying Mike’s script without looking for any alternatives, which seems to be a bad habbit of mine Thanks for the heads up! Martijn
Iterating through numSegments Myline s will not work, since the refineSegments function causes the number of segments to change each time you call it….
Mike, Here’s the method for adding paths to a Path Constraint controller: mybox01.pos.controller.appendTarget $Line01 50 where 50 (default) is the we…
I’m afraid the opening of a subMenu doesn’t call any event. Martijn
It appears that this function is not undoable… Creating an instance (or copy) of the imported object might actually be the best solution (read: hack) …