Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all, I've created this little rule that hide the lines or circles I want in a view with mouse selection.
But I can't set the selection to be multiple.
After the first selection the rule ends instead it should continue until the ESC key is pressed
Sorry but I'm new to ilogic
Here is the code:
Sub Main ()
Dim oDrawDoc As DrawingDocument
oDrawDoc = ThisApplication.ActiveDocument
Dim obj As DrawingCurveSegment
obj = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingCurveSegmentFilter, "Select")
obj.Visible = False
End Sub
Solved! Go to Solution.