I would like to make multiple (say 10 of) duplicate pages. Copying layers (or just one flattened layer, but with the contents) I can only see for one instance of a duplate page (insert pages can be blank, this is not what I wish to do) Thanks
Try this: Duplicate the page & contents once (Layout>Duplicate Page or right click on the page tab) and then use the Edit>Repeat command (CTRL+R).
Patti
Nice Patti and Mek! [Y]
Hello Terry; Group or combine your object then Crtl+d will duplicate the item for you,then you can move it to where you want it. Then every time you hit the Ctrl+d it will make another one the same distance as the first one.
George
Try to look at this thread http://community.coreldraw.com/talk/coreldraw_graphics_suite_x4/f/245/p/33719/158483#158483
You can try following macro
Sub DuplicatingPage() Dim sr As ShapeRange, nc As Integer, pNext As Page, sDuplicate As Shape nc = InputBox("enter required number of copies of actual page") For i = 1 To nc Set sr = ActivePage.Shapes.All Set pNext = ActiveDocument.InsertPages(1, False, ActivePage.Index) pNext.SizeHeight = ActivePage.SizeHeight pNext.SizeWidth = ActivePage.SizeWidth For Each s In sr.ReverseRange Set sDuplicate = s.Duplicate sDuplicate.MoveToLayer pNext.Layers(s.Layer.Name) Next s Next i pNext.ActivateEnd Sub
I made same suggestion in my first post, but then original poster clarify (see here http://community.coreldraw.com/talk/coreldraw_graphics_suite_x7/f/813/t/50277) that its reqired to get multiple copies of same page
I know, but not always is the same file [:D] and not only you can duplicate the same page several times, you can select more than one page and duplicate all at the same time. I know you want to create several duplicates of one page with one step, this is just a workaround but it will be useful if you need to duplicate more than one page and you can control where is placed the duplicate