![]() |
#1
|
|||
|
|||
![]()
Hi Shelby.
Thanks for your reply. I don't know how looks syntax for fountain fills. I tried: Code:
If s.Fill.Type = cdrFountainFill Then If s.Fill.Fountain.StartColor <> cdrColorCMYK And s.Fill.Fountain.EndColor <> cdrColorCMYK Then srNoneCMYK.Add s End If End If ![]() Do you help me? ![]() Thanks a lot. ~GrzJanik Last edited by grzjanik; 06-06-2012 at 02:24. |
#2
|
|||
|
|||
![]()
This code selecting objects with group (and probably should not):
Code:
Sub FountainFillsNotCMYK() 'SH ActiveDocument.ClearSelection Dim s As Shape, srNoneCMYK As New ShapeRange For Each s In ActivePage.FindShapes() If s.Fill.Type = cdrFountainFill Then If s.Fill.Fountain.Type <> cdrColorCMYK Then srNoneCMYK.Add s End If Next s srNoneCMYK.CreateSelection End Sub ~GrzJanik |
#3
|
|||
|
|||
![]()
Hi members.
How do I find all objects that are not CMYK? Vectors and bitmaps on ActivePage. Please help. ![]() Thanks. ~GrzJanik |
#5
|
|||
|
|||
![]()
Hi Shelby.
Sorry, I'm using Corel 12. Thanx ~GrzJanik |
#6
|
|||
|
|||
![]()
Hi.
In CorelDraw 12... ![]() I can select a bitmaps not CMYK, but I can not find the other objects. I need to find (select) on ActivePage each object is not CMYK. Code:
Sub SelectAllBitmapsNotCMYKOnPage() ActiveDocument.ClearSelection Dim s As Shape, sr As ShapeRange ActivePage.Shapes.FindShapes(, cdrBitmapShape).CreateSelection Set s = ActiveShape Set sr = ActiveSelectionRange For Each s In sr If s.Bitmap.Mode = cdrCMYKColorImage Then s.RemoveFromSelection Next s End Sub I greet ~GrzJanik Last edited by grzjanik; 28-05-2012 at 05:06. |
#7
|
||||
|
||||
![]()
Here is a start for you:
Code:
Sub NotCMYK() Dim s As Shape Dim srNoneCMYK As New ShapeRange For Each s In ActivePage.FindShapes() If s.Fill.Type = cdrUniformFill Then If s.Fill.UniformColor.Type <> cdrColorCMYK Then srNoneCMYK.Add s End If End If Next s srNoneCMYK.CreateSelection End Sub -Shelby Last edited by shelbym; 01-06-2012 at 11:57. |
#8
|
|||
|
|||
![]()
I would like to select all the filling is not CMYK yet.
Is it possible? ~GrzJanik |
#9
|
|||
|
|||
![]()
Mixed up the order of posts.
![]() |
![]() |
Tags |
cmyk, objects |
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 |
v11 images opening in CMYK, not RGB as saved | mascotgraphics | General | 6 | 19-11-2009 17:05 |
How to get or setup a shape's RGB /CMYK Values | mitchellhu | CorelDRAW/Corel DESIGNER VBA | 13 | 05-12-2007 10:48 |
Convert CMYK to RGB | jooksingjai | General | 1 | 30-07-2007 23:07 |
CMYK color Palette in CORELDRAW X3 | whitechapel | General | 2 | 20-04-2007 02:29 |
EPS Exports to CMYK... Argh! | ddonnahoe | CorelDRAW/Corel DESIGNER VBA | 3 | 11-06-2004 22:07 |