noob question but,
activepage.shapes.all.createselection selects everyting on that page even I am inside a symbol. so, what is the way to select (all) shapes inside a symbol?
Hi, this may help :-)If ActiveLayer.Name = "Symbol Contents" Then ActiveLayer.Shapes.All.CreateSelectionEnd IfIf you do not have the English version of Corel, you can find out the name of the symbol layer as follows:
Sub ActiveLayerName()
Dim obj As New DataObject
obj.SetText ActiveLayer.Nameobj.PutInClipboard
MsgBox "Name of active layer: " & ActiveLayer.Name
End Sub
for backwards combability getting layer name is logical(for older versions maybe). thank you for your solutions
Not to older but related to region language version for example:German = "Symbol-Inhalte"Czech = "Obsah symbolu"etc...