Forum: CorelDRAW/Corel DESIGNER VBA
15-11-2012, 16:26
|
Replies: 1
Views: 2,407
Keeping track of nodes
When using VBA to manipulate nodes, what is Corel Draw's internal logic wrt the nodes in a curve, and what is the "best practice" for keeping track of the nodes one is interested in?
I've already...
|
Forum: CorelDRAW/Corel DESIGNER VBA
11-06-2012, 21:13
|
Replies: 2
Views: 2,284
removing userforms from projects
I ended up with an extra, unwanted userform in a couple of my projects, and now I can't get rid of them. When I right-click on the form "userform1" the "remove userform1" entry is grayed out.
Is...
|
Forum: CorelDRAW/Corel DESIGNER VBA
12-05-2012, 13:27
|
Replies: 9
Views: 8,180
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-01-2012, 02:03
|
Replies: 2
Views: 2,220
I have an old, much-used macro that creates a...
I have an old, much-used macro that creates a duplicate shape equal to the outline of the selected shape. A little tweaking of that code gives me this:
Sub shrink_by_outline()
Dim OrigSelection...
|
Forum: CorelDRAW/Corel DESIGNER VBA
10-12-2011, 08:12
|
Replies: 22
Views: 8,060
|
Forum: New product ideas
16-04-2011, 15:31
|
Replies: 2
Views: 6,235
You're awfully quick on the draw wrt declaring...
You're awfully quick on the draw wrt declaring "lack of interest" and removing your code after only two or three days. I would have left it up for at least a week or two, so that those who check the...
|
Forum: Macros/Add-ons
25-01-2010, 21:24
|
Replies: 10
Views: 8,078
|
Forum: Macros/Add-ons
23-01-2010, 16:23
|
Replies: 10
Views: 8,078
You should be able to.
In the 'loop through...
You should be able to.
In the 'loop through each shape' section, instead of trimming each shape and seeing if there is anything left, you need to find the center point of each shape sh (I think...
|
Forum: Macros/Add-ons
10-01-2010, 11:30
|
Replies: 10
Views: 8,078
WOxxOm has a macro in his tools (from...
WOxxOm has a macro in his tools (from Macromonster) that basically lets you deselect those selected objects that are not within a given large shape. I borrowed an idea from this, along with Shelby's...
|
Forum: CorelDRAW/Corel DESIGNER VBA
01-03-2009, 13:41
|
Replies: 2
Views: 2,690
|
Forum: CorelDRAW/Corel DESIGNER VBA
27-02-2009, 16:26
|
Replies: 2
Views: 2,690
|
Forum: CorelDRAW/Corel DESIGNER VBA
28-09-2008, 00:41
|
Replies: 2
Views: 3,216
|
Forum: CorelDRAW/Corel DESIGNER VBA
26-09-2008, 16:10
|
Replies: 2
Views: 3,216
|
Forum: CorelDRAW/Corel DESIGNER VBA
21-09-2008, 13:32
|
Replies: 1
Views: 6,580
VBA Nodes Tutorial
Is there a good tutorial anywhere for working with nodes in Coreldraw VBA?
The "record a macro" trick gives me a good starting point for many uses of VBA, but not for creating, deleting, &...
|
Forum: General
22-09-2007, 19:53
|
Replies: 4
Views: 4,323
Speaking of the delete segment macro, it's...
Speaking of the delete segment macro, it's something that looks useful, but it frustrates me because it doesn't quite work right.
I'm currently running Coreldraw X3 with the cursor set to...
|
Forum: General
12-02-2007, 02:02
|
Replies: 2
Views: 3,083
|
Forum: General
03-02-2007, 14:23
|
Replies: 2
Views: 3,083
Circular tiling
I was looking through my copy of the old "Coreldraw Wow!" book and saw a reference to a Circular Tiling script. Unfortunately, the website referred to (www.tfts.i-us.com) is defunct, and googling...
|
Forum: Other Oberon Commercial Products
07-01-2007, 20:28
|
Replies: 0
Views: 7,293
Delete Segment
I use the crosshair cursor in X3, so the delete segment macro doesn't give me a new cursor-shape when I run it. Is there any way to tweak the macro so that it does give a new cursor?
Or, what...
|
Forum: General
19-09-2006, 10:06
|
Replies: 3
Views: 3,081
|
Forum: CorelDRAW/Corel DESIGNER VBA
20-08-2006, 13:23
|
Replies: 3
Views: 4,534
You can do that by...
You can do that by ActiveDocument.BeginCommandGroup e.g.
ActiveDocument.BeginCommandGroup "my crunchy macro"
[stuff in the macro you want to undo in one swell foop here]
...
|