Jump to content

Magic Wand/Class Selection Tool?


Recommended Posts

Does anyone know of a magic wand/class selection tool out there for Version 12? I saw the magic wand on Vectorbits, and it looks great. I'm willing to pay for it, but I also want to see if anyone knows if it will work with V12. I tried to load the enhanced tape measure tool from the same site, and couldn't find it in the workspace editor.

As another route, I'm looking for a script that will simply select all the available items with a matching class to an item I would click on.

Thanks for any help or suggestions.

Link to comment

Try this....

Procedure PickClassSelect;

VAR

h :HANDLE;

ClSel, SelCrit :STRING;

px, py :REAL;

i :INTEGER;

Begin

repeat

GetPt(pX,pY);

h := PickObject(pX,pY);

ClSel := GetClass(h);

{message (concat('Class selected := ',ClSel));}

SelCrit := concat('C=',chr(39),Clsel,chr(39));

selectObj (SelCrit);

Until H=nil

END;

Run(PickClassSelect);

G-Pang

Link to comment

Thanks for the tips. I look again for the tape measure and follow up with the magic wand. Thanks also for the script. I'll give that a shot too.

I also came up with a bit of a workaround in the meantime. I set my class selection settings to 'show/snap' and used the 'force select' and a select all. It was a couple extra steps, but got the job done.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...