Hello, I am using Corel Draw 9. With a Corel Script I am reading the data of an object using GetObjectData('myfield'). This is okey for Corel Draw 9, but it...
Hello, I have a big problem. I would like to write a text to center of an arc: Set oText = ActiveLayer.CreateArtisticText(nCenterX, nCenterY, cText) Set oPie...
Weisz Tamas
giraffe@...
Jun 10, 2002 8:36 am
881
Tamas, After you fitted the text to path, try plain with TextOnPath effect and its Offset property. It is an offset from the beginning of the path: ...
Hi, I need a macro that can clean up CAD files imported into Corel. I would like it to concatenate the short line segments into a single flowing line. It...
Hello, ... I found it yesterday, too, but it doesn't work :( Tamas...
Weisz Tamas
giraffe@...
Jun 11, 2002 9:34 am
887
Hi all, I like to print cdr-files to a prn file using a post-script capable printerdriver like HP LaserJet Wen I do this from the File - Print Dialog...
Hi all, OK, sounds easy right? I have created an "Artistic Media - Sprayer" that is in the shape of an arrow. I can now draw/spray a path with the arrows...
Hi I know it is not what is best, but you could make your default printer a HP LaserJet. In Window's Printer's goto the printer's properties, ports, and set it...
Rick, Maybe I'm missing something here, but do you need a script? Can't you do that from the docker? Just open the docker after you draw the curve & double...
JOHN! YOU ARE AWESOME! I tried everything (except looking at the Dockers). I'm such an idiot! Thank you, Thank you, Thank you. One thing though, After I...
Hi All Export of EPS is performed now using VBA of CorelDRAW10. Although FileExportCommand is used, there are two kinds of Filters (cdrEPS, cdrEPSPhotoPaint). ...
... There is no direct equivalent, but you can try Shape.SetMatrix 1, 0, 0, 1, 0, 0 Note that SetMatrix doesn't preserve the current position of the shape, so...
Shelby, do you mean something that would reset any rotation/skewing/resizing values assigned to an object to "zero"? ... From: mooreshelby...
Clements, John
jclements@...
Jun 26, 2002 3:18 pm
896
Here is my old script: WITHOBJECT "CorelDraw.Automation.10" .SelectAllObjects .StretchObject 1, 1, 1, 1, TRUE, FALSE, 9 .SelectObjectOfType 4 .ResetTransfo ...
Hello, I'm working in vb and am trying to open a new instance of coreldraw even if coreldraw is already running. My version of coreldraw is 9 Sometimes it...
Mike, That sounds about right -- by design creating a new CorelDRAW object does _not_ create a new instance of CorelDRAW. And, if two instances are running,...
The problem with not opening a new instance is as follows: Whenever I have an open file in CorelDraw and I run the vb script, I get an unexpected error when...
Hello, I would like to change the background page color to an rgb color. I see there is a corelscript called setpapercolor, but I'm not sure how to tell it...
This is one the CorelDraw 10 VBA Recorder did right. Well it use CMYK so I changed it to RGB for you. But here you go: Sub ChangePageColor() With ActivePage ...
Thanks for the reply. Unfortunately I am still using Version 9. Sorry I forgot to mention that. Is there any way to do this in CorelDraw 9? Thanks, Mike ... ...
Hello, I'm new to the group and I'm looking for some help :) Position open for willing beginner/ talented experienced game graphics artist. Preferable skills...
Hi Steven, I was wondering if you were ever able to figure this out. We are trying to accomplish the same thing and are running into problems. Any help would...
Hello all, How do I write a script that opens all of the .CDR files in a specific folder? Thanks, Rick Randall _______________________ Rick Randall Technical...
Maybe i can help... Dear friend.. I have not yet the skill on writing scripts, but here is the tip if you can't find a script that do the work. On corel...
OK I worked up an example of VBA code for CorelDraw 10 or 11 that will do what you ask. This is a pretty rough example will no error handlers of any kind. It...