![]() |
#1
|
|||
|
|||
![]()
Hi.
I'm using CorelDraw 12. The tool wx.PClipPick from wx_Tools allow to select object inside powerclip. Is it possible to extract only selected object from the powerclip without entering into this? Regards. GrzJanik |
#3
|
|||
|
|||
![]()
Hi Shelby, thanks for your reply.
The tool wx.PClipPick from wx_Tools allow to select object inside powerclip without entering inside. I need a macro which will extract the selected object (in this way) without entering the powerclip. Object selected by the wx.PClipPick tool can be moved, you can reduce or enlarge. Once the object is selected, I would like to extract it without entering the PowerClip. I think that this is only possible, only I cannot deal with it. Can you help me? Regards GrzJanik |
#4
|
||||
|
||||
![]()
I can't promise this will work for CorelDRAW 12, but all you need to do is move the shape infront of the PowerClip to extract it. So select the shape with wx.PClipPick or use the Object Mangager and then do something like:
Code:
Sub ExtractSelectedFromPowerClip() Dim sObj As Shape Dim sPowerClip As Shape Set sObj = ActiveShape If sObj Is Nothing Then MsgBox "Nothing selected", vbCritical Exit Sub End If Set sPowerClip = sObj.PowerClipParent If sPowerClip Is Nothing Then MsgBox "Selected object is not part of a PowerClip.", vbCritical Exit Sub End If sObj.OrderFrontOf sPowerClip sObj.CreateSelection End Sub -Shelby |
#5
|
|||
|
|||
![]()
Thank you Shelby.
"sObj.OrderFrontOf sPowerClip" - this is it. You are always helpful. Esteem. ![]() Thanks again. GrzJanik |
![]() |
Tags |
extract, powerclip, select |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Extract Info from Before CDR X3 File | ljesus7 | CorelDRAW/Corel DESIGNER VBA | 0 | 23-10-2009 21:52 |
extract text and image | BoomBoom | New product ideas | 5 | 27-03-2009 07:58 |
Extract object from the group | dear | CorelDRAW/Corel DESIGNER VBA | 9 | 05-02-2009 12:03 |
Extract Multiple Powerclips | dungbtl | CorelDRAW/Corel DESIGNER VBA | 2 | 15-04-2007 11:06 |
powerclip extract | zaum | CorelDRAW/Corel DESIGNER VBA | 2 | 26-10-2005 08:26 |