Jump to content
Developer Wiki and Function Reference Links ×

Assign Class to Selected Symbol via Custom Script


Recommended Posts

So what Josh is referring to is a structure like this, which is one of the most time saving scripts you can have because it can be adapted to do so many things::

 

Procedure TimeSaver;

 

Procedure DoIt(h1 : HANDLE);

BEGIN

SetClass( h1, ‘Class Name’ );

END;

 

BEGIN

ForEachObject(DoIt, (Sel = True));

END;

Run(TimeSaver);

 

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...