Join Nodes Macro - Connect two selected nodes of two curves

Hi Folks,

Is there a way or a macro to connect two nodes of two curves with one keystroke?

There is a docking window Join Curves, but I always have to confirm the action with a click.

Thanks in advance

Corel Mutt

Parents
No Data
Reply
  • The Apply button of Join Curves can be executed with this macro. The Docker Join Curves must be loaded for the macro to work. The macro works with Coreldraw 2021 Update 1. Maybe someone can test if it works with the newer versions.1

    1
    2
    3
    4
    5
    6
    Sub JoinC_Apply()
        Dim g As String ' GUID
        
        g = "1ec6f3a8-566d-6dbf-40c1-35e6402e4bd3"
        Application.FrameWork.Automation.InvokeItem g
    End Sub
    


    For the Docker Corner (must be loaded too), this macro can be used to control the Apply button directly:

    1
    2
    3
    4
    5
    6
    Sub Edges_Apply()
        Dim g As String ' GUID
        
        g = "508d4101-5cb3-6581-4fa5-fcc4f1ca6b9d"
        Application.FrameWork.Automation.InvokeItem g
    End Sub
    



    Greetings Corel Mutt

Children
No Data