オペレーターとかでリストで選択しなければいけないときの対処の仕方。
×selectobj ob1,ob2
○selectobj ob1 &","& ob2
----------------------------------------------------
dim ob1, ob2, button
CreatePrim "Cone", "MeshSurface"
CreatePrim "Cylinder", "MeshSurface"
Translate , -3, 0, 0, siAbsolute, siPivot, siObj, siX, , , , , , , , , , 0
DeselectAll
PickObject "_", "_", ob1, button
if button <> 0 then
PickObject "_", "_", ob2, button
if button <> 0 then
ApplyGenOp "MeshMerge", , ob1 &","& ob2, 3, siPersistentOperation, siDeleteGenOpInputs
end if
end if