Hi guys,
Trying to make a macro that selects similar objects when im in subobject 0.
And when im in a subobject other than 0, it will select the apropriate similar elements.
i have this
macroScript PedroSelectSimilar
category:"Pedro Scripts"
toolTip:"Selects similar objects or subobjects"
(
try
(
if (subobjectlevel = 0) then
(
actionMan.executeAction 0 "40099"
)
if (subobjectlevel >= 1) then
(
PolyBoost.SimilarSelect()
)
if ( $ != undefined) then
(
-- does nothing
)
)
catch()
)
Any help is appreciated!
Cheers!
barigazy · 2014-02-08