How? Cut the rectangle object

First of all, sorry for my English, I'm from Holland.

I don't have a lot of experience using Indesign, but for my work, I have to do 1 small business using Indesign.

Have a look at the photos, I have to make circles, with a transparent background (not this one purple) of the png. The size of these png were the same as the purple rectangle (640 * 88).

I want to cut out the parts of the circles that are outside the rectangle, so that I can copy directly in photoshop (after all completely transparent purple rectangles).

I hope you guys can help me

voorvertoning.pngnormaal.png

If you group objects circle you cut and 'paste' in the rectangle that will act as a mask, but not actually cut the circles.

Tags: InDesign

Similar Questions

  • How cut the length of the string IE channel name here, if it exceeds 20 characters or letters. The channel name is dynamically analyzed the spreadsheet/xml file.

    How cut the length of the string IE channel name here, if it exceeds 20 characters or letters. The channel name is dynamically analyzed the spreadsheet/xml file.

    My Council of Europe in the .js file is

    function generateHTMLMarkup (i, channel) {}
    Alert ("this is lang" + str);
    var str ="";
    "Str += '.

    ";
    "Str += '.
    "+ ""+""+"
    ";
    Alert ("this is lang" + str);
    return str;

    }

    nerateHTMLMarkup: function (i, channel) {}
    Alert ("this is lang" + str);
    var str ="";
    "Str += '.

    ";
    str += "" +
    "" +
    "" + channel ['name'] + "" +.
    "" + "
    ";
    "Str += '.
    "+ "" + "
    ";
    Alert ("this is lang" + str);
    return str;

    etc.

    Give mthe rhythm and the exact code where Ihave tio get implemented.

    in the code, replace change

    channelName var = channel ['name'];

    TO

    channelName var = channel ['name'];

  • Solved: How use the display objects in several projects?

    I have an object of common view that I need to use in several projects. How to import a view object pre-created in a project to re - use?

    Thank you
    Kurz

    Published by: Kurzweil4 on July 14, 2010 12:15

    In the package where the VO is defined, there should be a file server.xml file that contains all the BC4J objects. You can then add this file to your project in JDeveloper and it will add all the your defined in the file.

    Kind regards
    LC

  • Cut the group object model

    Hello

    I hope there, can someone help me.

    I have a vector of a flower, which is a group of smaller forms, and I would like to cut out a floral pattern to it. I placed the floral pattern on the flower and have tried to use the tools of pathfinder to subtract the floral pattern of the flower, but that doesn't seem to work.

    If someone can provide some help on this would be great! I've attached a picture to show what I got.

    Thanks again for your time!

    Screen Shot 2016-05-08 at 10.44.48.png

    The Group of all black parties.

    Choose the flower and floral pattern.

    Click on the button make mask in the transparency Panel.

    Uncheck the option to hide if necessary.

    Please also see the documentation for any other question.

    How to change the work using transparency and the mix of patterns in Illustrator

  • Added a note to the (rectangle) object in JS

    Is it possible to add a (part of the attributes) of an object selected from a JS script?

    I need to 'tag' a rectangle.

    Thank you franK

    Ensure that:

    App.Selection [0] .note = "your score."

  • How cut the sections above the bookmarks (subscribe to this page, Pocket display list, etc.) in the bookmark tab

    I tried the solution here https://support.mozilla.org/en-US/questions/1065081 but no luck. It's the background image of trash, I want to go (especially the Pocket one!): http://i.imgur.com/k65QeQU.png

    Thank you.

    See my response here:

  • How to change the Rectangles with buttons

    I'm working on this example that does not work correctly:

    public class test extends Application
    {
    
        private void init(Stage primaryStage)
        {
    
            Group root = new Group();
            primaryStage.setScene(new Scene(root));
    
            String pillButtonCss = DX57DC.class.getResource("PillButton.css").toExternalForm();
    
            // create 3 toggle buttons and a toogle group for them
            ToggleButton tb1 = new ToggleButton("Left Button");
            tb1.setId("pill-left");
            ToggleButton tb2 = new ToggleButton("Center Button");
            tb2.setId("pill-center");
            ToggleButton tb3 = new ToggleButton("Right Button");
            tb3.setId("pill-right");
    
            final ToggleGroup group = new ToggleGroup();
            tb1.setToggleGroup(group);
            tb2.setToggleGroup(group);
            tb3.setToggleGroup(group);
            // select the first button to start with
            group.selectToggle(tb1);
    
            //////////////////////////////////////////
    
            final VBox vbox = new VBox();
    
            final Rectangle rect1 = new Rectangle(300, 300);
            rect1.setFill(Color.ALICEBLUE);
            final Rectangle rect2 = new Rectangle(300, 300);
            rect2.setFill(Color.AQUA);
            final Rectangle rect3 = new Rectangle(300, 300);
            rect3.setFill(Color.AZURE);
    
            tb1.setUserData(rect1);
            tb2.setUserData(rect2);
            tb3.setUserData(rect3);
    
            group.selectedToggleProperty().addListener(new ChangeListener<Toggle>()
            {
                @Override
                public void changed(ObservableValue<? extends Toggle> ov, Toggle toggle, Toggle new_toggle)
                {
                    if (new_toggle == null)
                    {
                        //rect.setFill(Color.WHITE);
                    }
                    else
                    {
                        vbox.getChildren().addAll((Node[]) group.getSelectedToggle().getUserData());
                        //rect.setFill((Color) group.getSelectedToggle().getUserData());
                    }
                }
            });
    
    
            ///////////////////////////////////////////
    
    
            HBox hBox = new HBox();
            hBox.getChildren().addAll(tb1, tb2, tb3);
            hBox.setPadding(new Insets(20, 20, 260, 20));
            hBox.getStylesheets().add(pillButtonCss);
    
    
    
            vbox.getChildren().add(hBox);
            //vbox.getChildren().add(rect);
    
            root.getChildren().add(vbox);
        }
    
        @Override
        public void start(Stage primaryStage) throws Exception
        {
            init(primaryStage);
            primaryStage.show();
        }
    
        public static void main(String[] args)
        {
            launch(args);
        }
    }
    
    
    

    I want to create several Rectangles (or in which object or object) in which I want to store data. I want to spend the Rectangles (objects) that appear in front of the user by using the buttons. The example that I put in place does not work correctly. Can you tell me what is the right way to implement this?

    REF javafx 2 - How to change the Rectangles with buttons - stack overflow

    You have two problems:

    User data that assign you to each button switches are a node, not a [Node]. Thus, the cast will fail on line 43.

    When the selected toggle changes, you add another Rectangle to the vbox. You want to replace the rectangle that is in the vbox.

    Try

    vbox.getChildren () .setAll ((Node) group.getSelectedToggle () .getUserData ());

  • Invert the background object

    Guy

    I am new user to HAVE.

    I have a red circle, then a green square.

    the green square goes beyond the red circle, but I would like the invert that.

    Should I please?

    Thnak you

    If you speak of the stacking order, select the Green object and choose: object > Arrange > move back.

    Or cut the Green object, select the Red object and choose: Edition > glue to the back.

  • How can I stop the rectangle borders to cut?

    I have a rectanlgle of the same size as the artboard. I added a border of 2px around the rectangle. It is centered vertically and horizontally to the artboard. When I save it as a PNG (except for the web) the border gets cut.

    How can I avoid this?

    I use illustrator CC (64)

    But make sure that use Preview Bounds is checked in the preferences.

  • How to create a rectangle of fixed ratio and move without cutting the image?

    I know it's a simple question with a simple answer, but I did not yet find that answer. Usually, I crop my photos in a size 2 to 1 fixed ratio for Twitter. I used to extend the fixed ratio to the size I wanted and then move the tool of selection of ants marching to the area I wanted to reframe. However, in the last few months I'm not able to move the selection without cutting the photo. I used to create my selection and move the cursor over the moving dotted line and then move the selection. This is never a problem. All the answers as to what I might hurt?

    Thanks in advance.

    Sandra

    If there is no selection and you move the selection with the "MOVE TOOL" it will reduce the image

    To move the selection without cutting image, use any 'Sélection' tool instead of the move tool.

  • How to cut the shape of a rectangle to create the support in Photoshop?

    I want a layer like this:

    Untitled.png

    I drew the rectangle, and then I made a selection with the text selection tool scrolling to remove part of the rectangle, but it has removed any form. Can someone please help me with this.

    Thanks in advance.

    As says the station.  Add a layer mask to the rectangle and paint with black where you need breaks to show through the background layer

    http://TV.Adobe.com/watch/learn-Photoshop-CC/mask-part-of-an-image/

  • How the binary objects are sorted

    Live treatment image "IMAQ particle analysis" and "IMAQ MaskToROI.vi" returns the characteristics of binary objects detected in a specific order. My question is how objects are sorted before results are returned.

    Look at the following example. I'm totally confused why two screws returned the second object in the first row first?

    I was trying to get the centers of each object (and their contours) and assuming that they were sorted by their positions on the y-axis first and then positions itself on X. It is most of the time, until you see here on the first line. What happened here? Why the second object is sorted as the first object? HOW the binary objects are sorted anyway?

    I got it. It has to be sorted by the corner up and left of the rectangle of the object.

  • How can I change the thickness of the line on the Rectangle tool in Adobe Illustrator 12?

    How can I change the thickness of the line on the Rectangle tool in Adobe Illustrator 12?

    The object selected, use the dash Panel to increase the size of the stroke.

  • Object &gt; transform &gt; reset the rectangle enclosing do not work.

    Hi, I make a biconical mark, I'm doing a square with M, turn 45 degrees and then I did "object > transform > reset Bounding Box" and nothing happens. How can I solve this problem? I have the latest version of Illustrator 19.2.0

    Thank you

    You must use object > shape > expand shape to develop the direct form before resetting the rectangle encompassing work. Yes, Illustrator must be smart enough to perform this intermediate step for you, but it doesn't.

  • How to do 1 object appears behind and in front of the different parts of a letter?

    Hi, I use Illustrator CC, there are 4 orange objects and the letter A in the image below. The blue arrow is at the point where I want the orange object appears in front of this part of the black letter A. The green arrow indicates where I want to be orange to stay behind this part of the letter was. Can anyone suggest how to do only the orange part (blue arrow) appear in front of the letter A, while maintaining the orange gradient? I tried to use the scissors tool to cut out the object in half and then re - organize, but this tool seems to 'reset' the gradient.

    letter-a-shape-arrange2.png

    Thank you all. I was struggling for a while with masks and then got the result desired with the Eraser tool. I duplicated the orange object, there in front of the letter and then use Eraser tool to remove unwanted orange object parts. It is the best way to remedy this situation, I think.

    Thanks again for your help.

Maybe you are looking for

  • Satellite U920t-102 touchpad click right question

    Hello I have a new U920t-102, which I am very happy with, but I have a problem with a right-click of the mouse pad (which means the 'button', the user is able to support on the lower side of the mouse pad): sometimes it actually works like a right cl

  • Equium A60: PC2700 and PC2100 compatibility

    Hello again... Based on the MANUAL of USE Equium A60 I incorrectly ordered a SO-DIMM PC2100 200 PIN, I understand turns to the DDR266.Based on your good advice, I realize, I should have ordered DDR333 PC2700-SO-DIMM 200 PIN.In the store where the ram

  • Analysis without the printer cartridges

    How can I scan an image to a .pdf file if the color cartridge is empty. Cannot get replacement cartridge message. I need to print only the scan to a file.

  • EtherCAT com between 9025 cRIO

    Hello I'm going to put in place a system of control in which I wish to communicate between two controllers 9025 cRIO via shared variables.  EtherCAT can be used for this?  Would the controllers connected directly (with crossover cable?) or is there a

  • Webcam HD3100

    A mate of mine just brought a webcam HD3100 of Hewlett Packard. He has installed on his computer that is running windows XP. For some reason any nic "under construction" turns off after about 10 seconds. This happens every time. Any ideas?