get_little_points.bas 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Sub 一键加点工具()
  2. Dim OrigSelection As ShapeRange
  3. Set OrigSelection = ActiveSelectionRange
  4. OrigSelection.Copy
  5. ' 新建文件粘贴
  6. Dim doc1 As Document
  7. Set doc1 = CreateDocument
  8. ActiveLayer.Paste
  9. ' 转曲线,一键加粗小红点
  10. ActiveSelection.ConvertToCurves
  11. Call get_little_points
  12. End Sub
  13. Private Sub get_little_points()
  14. On Error GoTo ErrorHandler
  15. '// 代码运行时关闭窗口刷新
  16. Application.Optimization = True
  17. ActiveDocument.BeginCommandGroup '一步撤消'
  18. red_point_Size = 0.3
  19. ActiveDocument.Unit = cdrMillimeter
  20. Dim OrigSelection As ShapeRange, grp1 As ShapeRange, sh As Shape
  21. Set OrigSelection = ActiveSelectionRange
  22. Set grp1 = OrigSelection.UngroupAllEx
  23. grp1.ApplyUniformFill CreateCMYKColor(50, 0, 0, 0)
  24. For Each sh In grp1
  25. sh.BreakApartEx
  26. Next sh
  27. ActivePage.Shapes.FindShapes(Query:="@width < {" & red_point_Size & " mm} and @width > {0.1 mm} and @height <{" & red_point_Size & " mm} and @height >{0.1 mm}").CreateSelection
  28. Set sh = ActiveSelection.Group
  29. sh.Outline.SetProperties 0.03, Color:=CreateCMYKColor(0, 100, 100, 0)
  30. Set OrigSelection = ActiveSelectionRange
  31. OrigSelection.ApplyUniformFill CreateCMYKColor(0, 100, 100, 0)
  32. sh.Move 0, 0.015
  33. ActivePage.Shapes.FindShapes(Query:="@colors.find(CMYK(50, 0, 0, 0))").CreateSelection
  34. ActiveSelection.Group
  35. ActiveDocument.EndCommandGroup
  36. Application.Optimization = False
  37. ActiveWindow.Refresh
  38. Application.Refresh
  39. Exit Sub
  40. ErrorHandler:
  41. MsgBox "选择水洗标要加点部分,然后点击【加点工具】按钮!"
  42. Application.Optimization = False
  43. On Error Resume Next
  44. End Sub