![]() |
|
#1
|
||||
|
||||
![]()
Is there a way to select all within a single Layer
to go transparent? maybe at a fixed %, i.e. 50% Or maybe input a % dialog? I've come across a few times where I had to manually do a Trans Lens on objects with other layers open. In object manager there's too many objects to select and if the list is long it takes forever to catch up selecting. Thanks all This would be for Corel X4 |
#2
|
||||
|
||||
![]()
If you are working with a lot of shapes grouping makes things go move faster. So you could do something like this:
Code:
Sub MakeLayerTransparent() Dim s As Shape Set s = ActiveLayer.Shapes.All.Group s.Transparency.ApplyUniformTransparency 50 End Sub -Shelby |
#3
|
||||
|
||||
![]()
Cool...
I've added the Ungroup. This helps alot on certain layers. Then if I need to get back to 0% no transparency, Made a 2nd instance: s.Transparency.ApplyUniformTransparency 0 Code:
Sub MakeLayerTransparent() Dim s As Shape Set s = ActiveLayer.Shapes.All.Group s.Transparency.ApplyUniformTransparency 50 s.Ungroup End Sub Thanks Shel |
#4
|
||||
|
||||
![]()
Well, it was nice.
Try and export an object. By accident I managed to bring an object(s) to another layer without the transparency. No luck, you cannot remove the Lens. Look in Object Manager Things get ugly. Craps out shortcut keys. So this blows, oh well went without it. ================================ Wait.... im just messing around here: trying anything to see what works/what doesnt Code:
Sub MakeLayerTransparent() Dim s As Shape Set s = ActiveLayer.Shapes.All.Group s.Transparency.ApplyNoTransparency s.Ungroup End Sub Basic stuff right? Last edited by dungbtl; 08-03-2017 at 11:24. |
#5
|
||||
|
||||
![]()
Apparently rendered CTRL+L useless
but still is assigned to Combine Since I am here: .AI SPLITS OBJECT / TEXT !?!?!?!??! What gives with .AI export. When I choose to export an object, better yet text it splits the A,B,D,O etc. Other times its fine and doesnt do anything and exports as a regular object. Then one day decides to split again. Is it the angle rotation of the earth? Quite annoying and yo-yoey I use .AI for its low real estate in filesize.
__________________
Using X4 & 2019 2020... yikes 2021 |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
how to convert all lenses in document to no lens | gorgo | CorelDRAW/Corel DESIGNER VBA | 2 | 12-01-2012 09:44 |
update all external linked bitmaps in entire document | Jeff Harrison | Code Critique | 7 | 17-06-2007 08:54 |
Problem with shortcut key and macro | knowbodynow | Macros/Add-ons | 3 | 10-03-2006 05:15 |
Change styles throughout entire document | Ruffus | General | 0 | 12-12-2005 19:58 |
BUG - Lens Effect inside a Powerclip.jpg | Hernán | General | 3 | 08-04-2005 23:06 |