Personalization request

 From:  Michael Gibson
1724.14 In reply to 1724.13 
Hi Luca, quick answer for #4:

Oops that script got messed up and partially converted to HTML (things like < converted into &lt; which is not good for code!).

Here is a proper version:
code:
script:var a = moi.command.lastCommandRevisionStart; var b = moi.command.lastCommandRevisionEnd; var objects = moi.geometryDatabase.getObjects(); for ( var i = 0; i < objects.length; ++i ) { var obj = objects.item(i); if ( obj.databaseRevision > a && obj.databaseRevision <= b ) obj.selected = true; }


But that thing is not actually the fixed command - that is a script that will select the objects that were created by the last command that was run. But you may find that useful in situations where you wished to have the output of a command selected when it was not by default.

The actual changed command was in the attachment "Copy_select_output.zip", which is a different thing than that that script - it is a replacement for the regular Transform/Copy command that should instead select the output objects when it is finished.

- Michael