jessew1987
New Member
Hi, I just got a job at Stellar Signs in Estevan, Saskatchewan doing graphic design and operating the printer. My dad owns a sign shop (SignRite, he's a member here) and so I worked for him through my teens. I learnt alot about graphic design and the sign industry from him. I've been working here for about two weeks and loving it. I hope to learn more from the pros here and contribute what I can. I've made some simple macros in corel that someone might find useful. Here's one simple one. It's a one button toggle between Enhanced with overprints and Wireframe mode:
Sub view_E_W()
If ActiveWindow.ActiveView.Type = cdrEnhancedViewWithOverprints Then
ActiveWindow.ActiveView.Type = cdrSimpleWireframeView
Else
ActiveWindow.ActiveView.Type = cdrEnhancedViewWithOverprints
End If
End Sub
I found myself switching back and forth so much that it became annoying, so I made this macro to make things a bit easier.
Hope someone can use it!
Jesse
Sub view_E_W()
If ActiveWindow.ActiveView.Type = cdrEnhancedViewWithOverprints Then
ActiveWindow.ActiveView.Type = cdrSimpleWireframeView
Else
ActiveWindow.ActiveView.Type = cdrEnhancedViewWithOverprints
End If
End Sub
I found myself switching back and forth so much that it became annoying, so I made this macro to make things a bit easier.
Hope someone can use it!
Jesse
Last edited by a moderator: