Search found 3 matches
- Mon Jul 12, 2021 9:53 am
- Forum: API
- Topic: How to select the planes by name
- Replies: 3
- Views: 623
Re: How to select the planes by name
Hi, in the line PlaneName = "Plane" & "i" (results in Planei) change it to PlaneName = "Plane" & i (results in Plane1, Plane2,...) Also in the line boolstatus = Part.Extension.SelectByID2(PlaneName, "Plane", 0, 0, 0, True, 0, Nothing, 0) Plane should ...
- Mon Jul 12, 2021 9:17 am
- Forum: API
- Topic: How to select the planes by name
- Replies: 3
- Views: 623
How to select the planes by name
Hello there, I apologize if this question is easy. UU I want to build a macro in SW 20 to select planes e.g. "Plane 1","Plane 2","Plane 3" and so on... to sketch a circle in each plane. I used the following code to do that, but it turned out that only the first plane in...
- Tue Jun 22, 2021 2:46 pm
- Forum: How To Questions
- Topic: How to build a macro to automatically array teeth
- Replies: 1
- Views: 359
How to build a macro to automatically array teeth
Hello there, I'm trying to use Macros to automatically array teeth of the same size on a closed body surface which is already given. How can I do this in SW 2020? My current ideas are: Idea 1. Using slicing tool to get many reference planes and intersecting lines with the basic body, then sketch the...