CorelDRAW X4 :: Copy File Only Macro?
Jan 2, 2013
I have a macro that saves a file to a temp directory. Is it possible to use a macro to just "copy" that file to the clipboard and stop? I just want it available in the cliboard so I can navigate to where I want it then paste it. I then rename it. The directory will always be different as will the file name.
View 6 Replies
ADVERTISEMENT
Dec 28, 2012
Need a macro to copy a specific file and then promp where to paste the file. Trying to make a macro to Publish to PDF with certain parameters, mainly the security password, then save to as file "X". Then Call macro to copy file "X" so I can navigate to the proper directory,paste it and rename it.
If Corel had a feature that would allow you to set your password once and it would remember it so you didn't have to retype it every time.
I did managed to Record completely the macro but it will only save over the same file every time. It would work great if I could get it to just go back to the "publish To PDF" after inputting the settings then I can name it and put it in the directory I want.
View 2 Replies
View Related
Aug 11, 2012
I need to save an additional copy of a AutoCAD drawing whenever I press the save button.
Simply put, Every time I press save the autocad drawing is saved (Obviously!!!) but
I also need to save an exact copy of the drawing in a folder called (for eample only) "C:TestFolder"
I can do this using DxfOut for dxf files but I need to do this for dwg files.
Can it be done whenever I press the "save" button.
View 1 Replies
View Related
Jul 18, 2013
I'm just trying to put together a macro that will automate saving a selected group of objects to an AI file, however, I need it to be Compatible with version 8.
I've followed code from older posts to the forum and have successfully exported out a PNG file... I'm hoping to just alter that... here is what I have so far:
Set filter = ActiveDocument.ExportBitmap(path & filename, cdrAI, r, cdrPalettedImage, w, h, 96, 96, cdrNormalAntiAliasing, False, False, True, False, cdrCompressionNone)
With filter
.Finish
End With
What would I change to allow it to be compability with AI 8?
View 2 Replies
View Related
Nov 21, 2012
Export each page (maximum object boundary not page boundary) as JPEG to my given path with unique file name. (file name will provided on each page as filename).
See Image Here...
[URL]..........
Uploaded with ImageShack.us
View 5 Replies
View Related
Sep 13, 2012
I use the supplied macro in X5 to convert CDR to EPS which works fine for me, but my only problem is sometimes fonts default since some of those CDR files are not created on the same PC I use the macro.
Is there anyway to get the Font Matching dialog box displayed, so that I subsituute to a font of my choice rather then it use other fonts?
View 4 Replies
View Related
May 18, 2012
a tip for solving the problem of exporting an image as a tif led to another question. One solution to export as tif was to create a macro. See that solution post here: [URL] .......
It says : Step 1Run the built in macro. (Tools > Macros > Run Macro). In CorelDRAW versions prior to X4 (Tools > Visual Basic > Play). Select ‘File Converter’ macro from the ‘Macros in’ list and click ‘Run’
However in my macros drop down there are no macros. how can I get a file converter macro?
View 2 Replies
View Related
Feb 16, 2012
Is it possible to edit this macro so I can convert a bunch of symbol libraries I have created in X5 to X3?
View 3 Replies
View Related
Aug 30, 2012
Is there some Script / Macro to change / convert / apply color modes in all bitmaps of a file? (convert them all to CMYK lets say)
Wx Tools have "set DPI", "downsample", "resize" but not "change color mode".
View 3 Replies
View Related
Mar 29, 2011
How do i program my corel photo paint to compress large jpeg photo file to a smaller size and save into another folder.
View 5 Replies
View Related
Jun 18, 2013
I'm getting this message on a file I've opened 50 times before but now I can't seem to get it open.
I've increased my virtual memory significantly and I've done disk cleanup.
Windows 7 Home Premium (64 bit)
CorelDraw x5 ver 15.2.0.686
View 1 Replies
View Related
Dec 3, 2013
We have recently found the feature of copying the model iProperties to the drawing would be beneficial to searching for files in our ERP database. I am looking for a way to turn on the ability to copy model iProperties and select which properties to copy with a macro. There are several articles showing how to enable the feature and several ways to macro the same process. I have not been able to find a way to turn it on with a macro.
We plan to adjust our templates to enable the feature on all new drawings and add additional custom iProperties to the models that were previously only used in the drawings. I have wrote a macro to add iProperties to existing models that didn't have them when they were created. Now I am looking for a way to enable everything in the drawing. I see a great benefit to clicking a single button to enable the copy model iProperties feature and select several iProperties that will be copied without having to do it manually for every old drawing.
Is there a way to access the check box to enable this and to select properties within the API? If not, would creating a macro to do the copy from the model to the drawing be the best way to create that functionality in an older drawing or not? We have a little program that will give programmatic control over the mouse but creating code to access the feature that way would be more hassle than teaching our users to manually check the boxes.
View 3 Replies
View Related
Apr 29, 2012
I have a macro that i have been using in autocad 2012 for a simple copy & rotate command as follows
^C^C_select;auto;\_copy;p;;0,0;0,0;_move;p;;\_rotate;p;;\redraw
For some reason it now does not work in 2013 the macro exits after the copy part of the macro is finished & fails to let you rotate the copied object.
View 5 Replies
View Related
Jul 10, 2013
In CorelDraw X5, I consistently at times receive an error message stating "File Copy Error. TEMP Drive or Output Drive may be full". My temp drives have all been emptied. How to overcome this error message?
View 1 Replies
View Related
May 3, 2012
Before I run this on Autodesk Inventor 2012, any possible problems that I might have with the following VBA macro code?
Set Doc = ThisApplication.ActiveDocument
Call Doc.SaveAs("C:Test.pdf", True)
All I want to do is to create a PDF file, automatically, from a IDW file without going through a PDF Printer
View 2 Replies
View Related
Jul 4, 2013
How to run a macro through all the pages at a single instance in a malty page document.
View 3 Replies
View Related
Jun 30, 2007
TransformEach.gms
This is a macro I've been working on for a few days, what it does is it applies the selected transformation to each one of the selected objects individually. It rotates, scales and flips in both axes. I think this is a simple but useful workaround to the fact that Corel doesn't have a native command that does this.
[URL]....
View 9 Replies
View Related
Jun 1, 2011
I have a VB script that I created in excel that does a number of things. At some point I want it to open a series of variable Draw documents based on names and paths from columns in an excel document. This part works fine. However, I also want to perform a macro, created in CorelDraw, on said files once opened. This macro also works fine. The issue I am having is getting Excel to tell Draw to run the macro. I wrote the line with the same syntax I would use for telling excel to run a Word macro. IDK.
Set CorelDrawApp = CreateObject("CorelDraw.Application.15")
CorelDrawApp.Visible = True
Dim i As Long
[Code]....
View 8 Replies
View Related
Mar 4, 2011
I work in a trophy shop running laser engravers. I'm looking for a macro that would select everything on a page, flip it vertically, and do so throughout a multi-page document - I just had to do that manually for an order of 236 acrylics (all in one multi-page file!) and it - well - was a bit tedious I can make a macro to select all and flip - but I'm lost when it comes to getting it done throughout a file, I can only get it to do that a page at a time.
View 14 Replies
View Related
Mar 18, 2011
SanM_ExportToJPG.zip
A few days ago I remembered about my old macro Export To JPG, and I updated this one for CorelDRAW X5. This is not perfect macro.
Macros and tools for CorelDRAW @cdrpro_ru
View 4 Replies
View Related
Sep 19, 2013
I have downloaded a Free vector (.cdr) file which was designed using RGB color. This files has 100's of objects that are in color with RGB..
Is there a way to convert the RGB color's to cmyk without having to do each one by hand?
Maybe some kind of "Macro?
I need to do this because I am going to have this design printed on a T-Shirt and the printer uses "CMYK 4-Color Process" for their printing.
View 5 Replies
View Related
Jul 31, 2013
so I've recorded a macro to find all drop shadows and seperate them from whatever they're attached to. Now my problems is how to deselect the objects leaving just the drop shadows selected
Sub Macro173()
ActiveDocument.CreateShapeRangeFromArray(ActiveLayer.Shapes(3), '
ActiveLayer.Shapes(1)).Cut ActiveLayer.Paste Dim Paste1 As ShapeRange
Set Paste1 = ActiveSelectionRange
ActiveDocument.Undo
ActiveDocument.Undo
ActivePage.Shapes.All.CreateSelection
ActiveSelection.Separate
End Sub
View 7 Replies
View Related
Apr 17, 2012
Macro or vba code to change art and frameText in draw x5. Some resoruces to learn beginners coding ?
View 5 Replies
View Related
Nov 15, 2012
I am looking for a macro to export EPS files to a designated folder.
select ability to export a number of pages in one hit.
ability to add the page name, file path as an eps naming convention (saves me renaming).
set the character allowed in in the filename.
View 1 Replies
View Related
Feb 12, 2013
I want to take the current document, convert to PDF using a profile I have saved, then create a new email message in Microsoft Outlook, attach the PDF that saw just created, and use the file name as the subject of the email (minus the file extension).
Bonus points for also selecting a signature that I have in Outlook. I know the PDF creation can happen, and I know I can save the file name to be passed on, but can I access Outlook from CorelDraw?
Current System: i3 3.07ghz, 3gb ram, Windows 7 32 bit with all updates and X6
View 14 Replies
View Related
Jan 7, 2013
Draw a rectangle. Record macro
use the interactive contour to create an inline. Cntrl+k (break apart). It works but leaves both selected. Now what I need it to do is deselect the outer rectangle leaving me with just the inner one still selected.
View 8 Replies
View Related
Apr 22, 2013
I have created a macro that create company logo and file name path to all page.
But when document page is more than about 10-15 or more macro stops responding and coreldraw x6 hangs.
View 1 Replies
View Related
May 17, 2012
I am working on creating a macro we can save with a template to ready the designed art for print. So the designer can create the design, run this macro and export a PDF. The macro needs to:
1. Turn off template layer.2. Select all objects layer 1.3. Group all objects layer 1.4. Rotate -90 degrees.5. Set layout to landscape.I have everything working except the Select all "Objects Part". the macro will only select objects that are there during the creation of the macro, and not select the designed work.
Is there anyway to just add a keystroke of "Ctrl+A" to the macro?
Here is the macro i got:
____________________________________________________________________
Sub Adstand_Rotate() ' Recorded 5/17/2012 ActivePage.Layers("Template").Visible = False Dim s1 As Shape Set s1 = ActiveLayer.CreateRectangle(0#, 70#, 39.75, 0#) s1.Fill.ApplyNoFill s1.Outline.SetProperties 0.006945, OutlineStyles(0), CreateCMYKColor(0, 0, 0, 100), ArrowHeads(0), ArrowHeads(0), cdrFalse, cdrFalse, cdrOutlineButtLineCaps, cdrOutlineMiterLineJoin, 0#, 100, MiterLimit:=45# s1.Outline.SetNoOutline s1.Rotate -90# Windows.FindWindow("C:Documents and SettingsdreesdmDesktopAd Stand Template.cdr").ActiveView.SetViewPoint 35#, 19.875, 100 With ActiveDocument.MasterPage .SetSize 39.75, 70# .Orientation = cdrLandscape .PrintExportBackground = True .Bleed = 0# .Background = cdrPageBackgroundNone End WithEnd Sub
____________________________________________________________________
View 3 Replies
View Related
May 22, 2013
Is this something easy I can do? Have my Macro Auto Open Upon Start Up?
Okay, so the simple macro i have been working on isnt just for personal use. We will use this macro all day long - but the issue is - my coworkers im sharing the macro with would prefer the macro open when program opens.
Now that i had set the macro's position down - how do i got about having the macro auto open upone start up.
View 6 Replies
View Related
Nov 13, 2013
trying to write a macro to open to a specified directory.
SendKeys "^(o)"
SendKeys "\G-SERVERCorel Draw files
SendKeys"{ENTER}"
Problem is that it doesn't type the text exactly as given. Randomly drops off the first few characters.Because hitting open defaults to the libraries instead of my server where the files are located.
When you hit open the cursor is already in the "File name:" field so if I just type the directory there and hit enter it takes me to that directory. Sure would be nice to just have it type that for me and enter. Had it working great for a few times but aftaerr navigating around for a bit it drops off those characters.
View 9 Replies
View Related
Apr 10, 2011
I have tried to use the Macro recorder to record the keystrokes as I get the dimensions from the top of the rectangle to each line of text & from the edge of the triangle to each line of text. Unfortunately the recorder could not record.
Is it possible to design a macro which can be used to get the dimensions as required ?
View 1 Replies
View Related