Paste a shape as a mask when there are several layers?

I have a couple of layers that I applied the auto vector command in order to hide. I want to now draw a rectangle rounded on part of my canvas, cut this rectangle with corners rounded and right-click on the drawing area and choose Edition > paste as mask, so the picture will be revealed due to the rounded rectangle shape. It works with a single layer, but now that I have several layers and masks vector auto I don't know which image/layer for click straight on and do with?

Thanks for any help.1.png2.png

Instead of cutting the rounded rectangle, leave it at the top of the stack of items, select all three objects, then select Modify > mask > Group as mask (or you can right click to select the group in the mask). This command will apply the object higher in the selection as a mask for the items below.

Tags: Fireworks

Similar Questions

  • outer join when there are several tables are involved

    Could not put up the question correctly to the last channel, my problem is with the join when there are several tables are involved, this is just one example of the task that I have to carry.

    Tab1 aura model id retailer_id information for all the weeks (from the first Monday) of the month of JUNE with cost and Helen

    Tab1

    model_id

    retailer_id

    sell_date

    cost

    Helene

    1

    12

    June 3, 13

    100

    40

    1

    12

    June 10, 13

    200

    20

    1

    12

    17 June 13

    300

    20

    1

    12

    24 June 13

    400

    20

    2

    12

    June 3, 13

    300

    10

    2

    12

    June 10, 13

    200

    20

    2

    12

    17 June 13

    300

    20

    2

    12

    24 June 13

    400

    20

    Tab2:

    each retailer belongs to a dealer, under the table has the same information

    retailer_id

    Dealer_id

    12

    100

    13

    100

    14

    101

    15

    101

    16

    101

    Tab 3

    There is a third layer where each dealership is having a garage band

    Dealer_id

    Dealer_group

    100

    1001

    101

    1001

    102

    2001

    103

    2001

    104

    3001

    105

    3001

    Tab4:

    Of this table for each model and dealer discount information for the month of June (every week)

    model_id

    Dealer_group

    discount_date

    discount

    1

    1001

    June 3, 13

    10

    1

    1001

    June 10, 13

    20

    1

    1001

    17 June 13

    10

    1

    1001

    24 June 13

    30

    2

    1001

    June 3, 13

    10

    2

    1001

    June 10, 13

    20

    2

    1001

    17 June 13

    10

    2

    1001

    24 June 13

    30

    3

    2001

    June 3, 13

    10

    3

    2001

    June 10, 13

    20

    3

    2001

    17 June 13

    10

    3

    2001

    24 June 13

    30

    Master_info:

    It's the main table which is the master table for model /retailer information

    Model_id

    retailer_id

    1

    12

    2

    12

    3

    12

    4

    12

    1

    13

    2

    13

    Output

    model_id

    retailer_id

    sell_date

    cost

    Helene

    Final (cost-helene-discount)

    1

    12

    June 3, 13

    100

    40

    50

    1

    12

    June 10, 13

    200

    20

    160

    1

    12

    17 June 13

    300

    20

    270

    1

    12

    24 June 13

    400

    20

    350

    2

    12

    June 3, 13

    300

    10

    280

    2

    12

    June 10, 13

    200

    20

    160

    2

    12

    17 June 13

    300

    20

    270

    2

    12

    24 June 13

    400

    20

    350

    3

    12

    June 3, 13

    0

    0

    0

    3

    12

    June 10, 13

    0

    0

    0

    3

    12

    17 June 13

    0

    0

    0

    3

    12

    24 June 13

    0

    0

    0

    4

    12

    June 3, 13

    0

    0

    0

    4

    12

    June 10, 13

    0

    0

    0

    4

    12

    17 June 13

    0

    0

    0

    4

    12

    24 June 13

    0

    0

    0

    1

    13

    June 3, 13

    0

    0

    0

    1

    13

    June 10, 13

    0

    0

    0

    1

    13

    17 June 13

    0

    0

    0

    1

    13

    24 June 13

    0

    0

    0

    2

    13

    June 3, 13

    0

    0

    0

    2

    13

    June 10, 13

    0

    0

    0

    2

    13

    17 June 13

    0

    0

    0

    1

    13

    24 June 13

    0

    0

    0

    For highted above records (model_id / retailer_id combination) there is no record in tab1 but they have entered in master_info then the recordings should come for all model_id/retailer_id with all the 0 values

    Hello

    Thanks for posting the sample data.

    It is unclear what dates you want to include in the output.  The following query shows how you can generate every Monday in a given range.  If you only want to include the dates that are actually present in tabl1 and/or tab4, you can simplify this a bit.

    WITH date_range AS

    (

    SELECT TRUNC (TO_DATE (' 3 June 2013', 'DD-Mon-YYYY'))

    , 'IW '.

    ) AS first_monday

    , TRUNC (TO_DATE (24 June 2013 ', 'DD-Mon-YYYY') + 6)

    , 'IW '.

    ) AS last_monday

    OF the double

    )

    all_mondays AS

    (

    First_monday SELECT + (7 * (LEVEL - 1)) AS sell_date

    OF date_range

    CONNECT BY LEVEL<= 1="" +="" (="" (last_monday="" -="">

    / 7

    )

    )

    SELECT mi.model_id

    mi.retailer_id

    am.sell_date

    , Cost of NVL (t1.cost, 0) AS

    , NVL (t1.rebat, 0) IN the refund

    , NVL (t1.cost, 0)

    -(NVL (t1.rebat, 0))

    + NVL (t4.discount, 0)

    ) AS final

    E master_info

    CROSS JOIN all_mondays am

    LEFT OUTER JOIN tab1 t1 ON t1.model_id = mi.model_id

    AND t1.retailer_id = mi.retailer_id

    AND t1.sell_date = am.sell_date

    LEFT OUTER JOIN tab2 t2 ON t2.retailer_id = mi.retailer_id

    LEFT OUTER JOIN tab 3 t3 ON t3.dealer_id = t2.dealer_id

    LEFT OUTER JOIN tab4 t4 ON t4.model_id = t1.model_id

    AND t4.dealer_group = t3.dealer_group

    AND t4.discount_date = t1.sell_date

    ORDER BY mi.retailer_id

    mi.model_id

    am.sell_date

    ;

    The results are not exactly what said you you wanted.  I suspect it's because of typos in that you posted.

  • When there are several tabs open, why the search always take place on the 2nd tab (first tab seems never to change the homepage) despite my selection of a different tab where to do a search on google?

    I have Mozilla Firefox 10.0. When I open it, it opens properly on the homepage in the first tab. Once I have another, or several, tabs opened, any tab is active, your google searches, I immediately takes place at the No. 2. Do not count how many times I go to the tab for example 4 to search (because I would compare with the page Web open in a tab 2), but it does still today the Search tab 2. It's very irritating. It must be a setting that went pear-shaped, but where / who? Any suggestions? Thank you.

    Try Firefox SafeMode to see how it works there.

    A way of solving problems, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open the mode without failure of Firefox 4.0 + by pressing the SHIFT key when you use the desktop Firefox or shortcut in the start menu.
    • Or use the Help menu option, click restart with the disabled... modules while Firefox is running.

    Do not choose anything at the moment, just use 'continue in safe mode.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before using the shortcut of Firefox (without the Shift key) to open it again.

    If it's good in Firefox Safe mode, your problem is probably caused by an extension, and you need to understand that one.

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+themes

    When find you what is causing that, please let us know. It might help others who have this problem.

  • You cannot change the chart value axis when there are several types of graphics in a single diagram

    Illustrator can do graphics with bars and lines / columns, for example in the docs:

    http://help.adobe.com/en_US/illustrator/cs/using/images/gr_15.png

    http://help.Adobe.com/en_US/Illustrator/CS/using/WS3f28b00cc50711d9fc86fa8133b3ce158e-8000 .html

    However, when I create a chart like this, I seem to lose the ability to manually set the y-axis using 'override calculated values.

    To reproduce this problem:

    1. Create a chart as in the example, with bars and an axis on the left, lines and an axis on the right. Unlike the example, don't fix the numbers as well as the lines align perfectly - have a go until just less than 20, a up to a little less than 250, therefore it do not markers and the number of divisions on each side.
    2. Try to make the markers and numbers of divisions to the height, so in fact, the side that is going up 20 going up to 25 and has the same number of divisions on the other side.

    Everything I have tried does not work:

    • If I select the entire chart and go to the "Chart Type", I can not set the options for the value axis. In earlier versions, it's gray, in CS6 I can access, but clicking on 'OK' does nothing.
    • If I select the entire chart and chose the type of a chart, I can set options for the axis value, but that the selected chart type, and then applies the entire table.
    • If I use the direct Selection tool to select one of the series and open the "Chart Type" options, changing the options of the y-axis has no effect
    • If I use the direct Selection tool to select all series that share an axis and open the "Chart Type" options, changing the options of the y-axis always has no effect
    • If I use the direct Selection tool to select the Group of ticks axis itself, or the axis line and groups of ticks axis themselves, of axis labels, axis and graduations of the axis line, or axis labels, axis line, graduations of the axis and series of related data, etc., by changing the options of the axis also has no effect

    It seems that this feature is broken and it seems that the example in the manual has been carefully chosen to use a rare combination of numbers where it would actually look right.

    I thought about it. Like everything to do with the horrible ancient neglected graphic Illustrator tool, it is ridiculously clumsy and involves the caution around what is shamefully bad programming for a professional expensive product.

    It is timing - to do things in a sequence of rigid counterintuitive that seems not to work then meets at the end:

    1. Create the chart but, for now, keep all the same chart type. If you've already set to have different graphics types, put the same thing for now.
    2. Select the entire chart and in the main window of Chart Types, set the value to "Both sides" axis
    3. In the drop-down menu, there should be a left and right axis (or top and bottom...). Set the parameters of the value axis for these now. It will look like it does for a single axis, because it will not change the other axis - naked with her...
    4. Select the data series you want to use the other axis using group selection. Go to graph Type and the value of the y-axis to the other and set the chart type that you want. All of a sudden all be put in place.
    5. If you need to change the settings for the value axis, select the entire chart, set the whole chart type to a chart, change the appropriate value axis by choosing it from the menu drop down and the re - apply types of graph as above.

    (the bug is - it should not necessary to set the graphic object to only have only one chart of type in order to access the axis options of value for two different y-axis)

  • Why the start window does not decrease when there are several results, and I want to check each?

    Is there anyway of peacekeeping beginning box upward?   By doing a search, 8 elements came, I right click the first to 'open', the start box breaks down the jpg couldn't be displayed (God knows why or where it is!) so I have to click on start and type in the search had once AGAIN, do it with all 8 icons... come on Microsoft all new fandangled stuff you've added and you assume if 35 things go up the first I click is the one I am you are looking for?

    Faster we go, the behinder we get.   Seems the more glitzy junk that is added, 'user-friendly' things common sense falls through the cracks of geek.

    Windows 7 and Office 2010 have made me really want to do not use a computer... I have a business online (successfully) and uses a computer for 18 years.    This "not compatible" nonsense, "is no longer supported" is just this absurdity.   It's as if they're building a new road in your area, well you have to buy a new car!   If they come out with new TV shows, you will need to buy a new TV.   That Microsoft is not?  The upgrade is good but forcing me to give up what I love and know you is crazy, boring and very discouraging.

    Ruth Niles

    Hi Ruth Niles.

    I suggest you run search and convenience store Index and see if that helps.

    Open the troubleshooter for search and indexing
    http://Windows.Microsoft.com/en-us/Windows7/open-the-search-and-indexing-Troubleshooter

    Hope it will be useful. Incase if you still have any other queries please respond with more details and we will be happy to help you.

  • Question about starting EM when there are several homes

    (Oracle 11 GR 1 material, Windows XP SP2)

    Hello

    As an exercise, I have two databases in separate, houses called db_1, and db_2.

    When I try to start the EM console, I get the following message:
    emctl start dbconsole
    OC4J Configuration issue. E:\Oracle\app\Private\product\11.1.0\db_2/oc4j/j2ee/OC4J_DBConsole_OrahostB.john.local_dbcasid not found.
    I set the ORACLE_SID correctly to DBCASID, but he is looking in the wrong directory. I set ORACLE_HOME, but that has not solved the problem.

    I can start the service using the Windows Services Console successfully, but I would like to know if it can be done using EMCTL and if so, how.

    Question: How can I tell emctl how I want it to look at?

    Thank you for your help,

    John.

    Published by: 440bx - 11 GR 2 on 8 Sep, 2010 11:04 - deleted some jive "junk" in the text of the code

    By setting variable named PATH.

    It must contain the path of the correct ORACLE_HOME in the place of leader bin directory into the PATH variable.

    Concerning
    Anurag

  • The last time I used identifier apple of my father to the appstore on my macbook pro. (Now, I have my own apple ID). Sometimes, when there are apps that I want to update, a window would jump out to ask me to sign identifying apple of my father, but I want

    The last time I used my id to a friend for the appstore apple on my macbook pro. (Now, I have my own apple ID). Sometimes, when there are apps that I want to update, a window would jump out to ask me to connect to my apple to a friend id, but I want to update the application using my own apple ID. Is that what I have to use my apple ID to update the applications? Please help me!

    The last time I used my id to a friend for the appstore apple on my macbook pro. (Now, I have my own apple ID). Sometimes, when there are apps that I want to update, a window would jump out to ask me to connect to my apple to a friend id, but I want to update the application using my own apple ID. Is that what I have to use my apple ID to update the applications? Please help me!

  • Why update when there are known bugs

    I wonder constantly up-to-date when there are bugs in it, it's not logical to me at all, this 9.0 will crash after a while because it has bugs you admitted that

    Another reason for updating, it is that each new version contains security updates that are not in the other. If you can help protect your computer with Firefox (and other software like Windows) in day.

  • Previous/next buttons in Windows 7 Media Player 12 disabled when there are videos in the playlist

    original title: Windows 7 Media Player 12 previous/next buttons disabled when there are videos in playlist works well with music files

    I have 3 computers to windows 7 that all exhibit this same problem.

    I have playlists since older versions of media center and when I play a video playlist with the previous buttons and next player will be disabled. If the playlist has audio files it next and previous buttons work fine.

    It has always worked in other versions I know that it is a feature I use all the time so I would have noticed

    Hi keith278,

    You can use Windows Media Center to play your videos.
    1. Click Start
    2. In the Search box , type Media Center
    3. Click on Media Center
    4. Select the photos + videos (you should see the library of images, Favorites, play and video library)
    5. Select the video library
    6. Cross the guests to add your video to this library folders
    7. Double-click the video file you want to play
    8. You should see the possibility of play all the
    Let us know if that helps.
  • vRA: identity device or vSphere SSO when there are multiple vCenters (each with their own SSO) in the environment?

    The installer: We have multiple vCenters each with their own SSO. We must build a minimum install vRA lab 6.1 and used the SSO to the vCenter which is the endpoint lab (and ended up having problems when this vCenter SSO had to be rebuilt and in turn liquid reconstruction vRA). Building on a vRA 6.2 Distributed Lab (based on deployment in the 6.1 reference architecture) to validate our production plan and decided to use the identity.

    Question: For a production buildout there is no reason not to use the device of the identity (scalability, performance, lack of HA)? If you are using vSphere SSO, when there are multiple vCenters one that should be used for SSO of vRA? If that vSphere SSO is never removed (say on the whole things are replaced by a central SSO for all vCenters rather than each on their own, or some issue needs to be rebuilt) is there a clean way to repoint SSO vRA without a reconstruction?

    Post edited by: RebeccaW (removed unrelated to Postgres question)

    What I did in this case is to build a fresh cluster SSO using vCenter SSO and pointing vCAC on this one. It becomes my main source of SSO and I slowly vCenters point and other components to it overtime. You usually put vCAC SSO signed certificates and generally I find people vCenter SSO deployment in this way. To remedy this trying to modify an existing SSO vCenters and risk having to reinstall your VC because you missed the CERT, simply create a new. This also alleviates a changing overtime vCenter and spoil the vCAC SSO. The unit of identity cannot be clustered or joining existing areas of SSO. So if you are looking for HA and scale which probably does not cut it.

  • My computer has Windows and Acrobat Reader DC.  When I open a PDF file sent there are several fonts instead of one.  The only difference I can find is properties - font - Arial - Type of real fonts: Type 1 instead of TrueType. If this is the problem how t

    My computer has Windows 7 and Acrobat Reader DC.  When I open a PDF sent there are several fonts instead of one.  The only difference I can find is 'Properties - font - Arial - Type of the actual is of Type 1 fonts' instead of 'TrueType '.  If this is the problem, how can I change the Type 1 for TrueType, and if not, what could be the problem and the fix?

    It cannot be resolved with Reader. Sounds like an issue that will be attached to the end of the creation of embedding fonts.

  • Can I create an action to move the last page to the first?  I can only find how to manually drag the pages, and I need to make it simpler when there are a lot of pages.

    Can I create an action to move the last page to the first?  I can only find how to manually drag the pages, and I need to make it simpler when there are a lot of pages.

    Yes, you can do it using a script. This code should do the trick:

    this.movePage (this.numPages - 1, -1);

  • How to hide a column in the report when there are only zeros.

    Hi Experts.,.

    Is it possible to hide a column in the report when there are only zeros.

    Thanks in advance
    Vincent

    Vincent Krishna wrote:
    Hi Experts.,.

    Is it possible to hide a column in the report when there are only zeros.

    Thanks in advance
    Vincent

    No out-of-the-box, but there are several workaround solutions if you want to continue an any of them:

    (1) use a view selector. A single report will be a pivot table with the column, the other will have the same report less column. Users can switch reports.

    (2) use a column selector. The two choices would be this column or an empty space. If white is chosen (because the user has no values), the column "will disappear" according to the report.

    (3) guided use NAV. This method involves the intervention of the user. Build a small report using the single column and put a filter "is not equal to" 0. Because there is only a single column, so all lines are 0, the report returns no rows.

    Use this report in the properties of guided navigation from one section of the dashboard. Assign to this "If the report returns lines" and put the report that contains the column in this section. Now add another article on your table edge and in the properties of guided navigation of this section, set on "If the report will return no rows" and it points to the small report as well. In this section, put a second version of your report without the column in it.

    When the column contains all zeros, the second section with column will not display in it; the first section is not displayed. When at least a line contains a value not zero, the first section is displayed with the column, and the second part will not be.

  • Is it possible to have a slide advances on its own when there are buttons on the screen?

    I wonder if there is a way to have a slide advance automatically when there are buttons on the slide, I want the eLearning course I've created for just the AutoPlay through all the slides.

    Thanks in advance!

    What do the buttons do? Just delete their point of pause and when they reach the end of the slide, and the exit action is set to continue, or go to the next slide, everything will play.

    Lilybiri

  • When there are multiple users e-mail of files that are on the left of the screen can be hidden by other users?

    There are several people who might want to use Thunderbird on a work computer, but I don't like how all the e-mail files are open to the public view. It looks like anyone can see the emails without having to log on the account of others.

    It is regrettable indeed, and I don't think it's a good idea.
    You can opt for individual profiles, but this doesn't quite work for multiple users.

Maybe you are looking for

  • download is corrupted, bad certificate too.

    guy with the same problem using AOL?I use Chrome. Run the downloaded product install"Publisher could not be verified...". »by running any product "failed to extract" file is corrupted.5.4 &.5 Firefox worked fine. Updated at 6 & had all sorts of probl

  • HP G72 AC adapter - which?

    I have many laptops and have confused my adapters and cords power. What cord adapter and power should I use for my G72 please?

  • Files disappear / delete automatically without deleting me

    This a problem of commom these days. Files disapper without deleting me. Recently found a MP3 file of my file disppaer. I don't know since I have not deleted. I don't know if it could be a virus. I use Microsoft Security Essentials and recently had a

  • Why have I not question marks on my folders in the navigation pane?

    Many of my folders have blue circles with a white question marks.  First of all, what does this mean? Second, how to fix?

  • Several groups of ACS/announcements in NDG

    Hello I've been racking my brain on this for a few days, and it's just not coming to me.  I'll try and also be suscinct as possible. I am in the process of transition of my users of IPSEC to SSL VPN client/web.  During this process, I want to limit u