![]() |
#1
|
|||
|
|||
![]()
Hi guys.
Please add the possibility of converting this well in the Outline. Quote:
Great thanks. ~GrzJanik |
#3
|
|||
|
|||
![]()
Hi. This code working only fills.
Please change this code to white-overprint changes not only fills but also the outlines. I would also like to do this entire the document. Thank you in advance for your help. ~GrzJanik |
#4
|
||||
|
||||
![]()
If you are using X4 or above, you can use a little CQL to find the shapes with OverPrintFill and OverPrintOutline. Something like this:
Code:
Sub AllOverPrints() Dim s As Shape Dim p As Page Dim srOutlines As ShapeRange, srFills As ShapeRange For Each p In ActiveDocument.Pages p.Activate Set srOutlines = p.Shapes.FindShapes(Query:="@com.OverPrintOutline = 'True' and @outline.color.IsWhite = 'True'") Set srFills = p.Shapes.FindShapes(Query:="@com.OverPrintFill = 'True' and @fill.color.IsWhite = 'True'") For Each s In srOutlines.Shapes s.OverprintOutline = False Next s For Each s In srFills.Shapes s.OverprintFill = False Next s Next p End Sub -Shelby |
#5
|
|||
|
|||
![]()
Hi. Thanks Shelby for your reply. I'm sorry I forgot to write that I work in Corel 12 and I can not use the CQL. This is what I wrote only works with fills in the Corel 12. I do not know how the syntax should look in the outlines. : ( Please help.
Sorry for my English. ![]() Last edited by grzjanik; 21-11-2011 at 03:17. |
#6
|
|||
|
|||
![]()
OK. Working code below:
Quote:
Regards. ~GrzJanik Last edited by grzjanik; 12-03-2012 at 04:30. |
![]() |
Tags |
overprint, remove, white |
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 |
Convert All fills except black to white - how? | knowbodynow | CorelDRAW/Corel DESIGNER VBA | 3 | 08-06-2011 06:32 |
overprint fill not work... why? | Jeff Harrison | CorelDRAW/Corel DESIGNER VBA | 2 | 04-08-2010 01:11 |
white overprint | robert | Macros/Add-ons | 1 | 21-11-2008 13:00 |
Fade from white to transparent | DalePurdon | General | 1 | 23-10-2006 06:08 |
Color to Black & White | Mark | CorelDRAW/Corel DESIGNER VBA | 3 | 20-07-2004 14:57 |