Hide the 'Text Input Port' of the text frames

Hi guys,.

I have this small problem where I use a path as a block of text. Naturally, this block of text automatically gets the small squares in the corners which are used for blocks of text string set (I think they are called input and output ports). However, now I want to change the path using the direct Selection tool, but I can't move the top left node because it is covered by the port of entry of text.

Here is a picture to help understand my problem: http://imgur.com/i4aTiiP

As you can see, the top left node of the path is covered by a small blue square. When I click on that tool Direct Selection, I get the cursor text appended to the end and could now link this text block to another. But I want to switch the node instead.

Is it possible to hide these places of port of entry of text or otherwise circumvent this problem?

Thanks in advance!

See you soon

HappyTetrahedron

First thing I would try is zoom way on this point, and you might be able to see and enter it.

If this does not work, turn off the path, then go over it with the direct Selection tool and you should be able to select the point and move it without releasing the mouse.

If all else fails, move one of the points on each side of this one to change the geometry and the inport must move the starting point.

Tags: InDesign

Similar Questions

  • hide the front frame

    Hello

    How to hide the frame of the front? I want is that the area of the front, but not the frame included.

    Hi wilburwu,

    the attached example works for me.

    Mike

  • Hide the text output of Web app

    I have a web application that is released to two lists in numerical order.  A list of the 10 works very well. The others, I want to show only the largest number in this list. It displays the highest number in this list, but it also generates the following:

    • 1
    • 2
    • Next

    I want to hide the text from view. The module I use is {module_webapps, 19851, c., 77844, 1, 1} . Now what input CSS or Java can use to hide the text above?

    Thank you

    Why do? You can do this with pure CSS >

    Wrap the list in a container with ID and you can hide the paginaiton as it has class fairly easy. The rest and how BC outputs paging is also easy.

    First element of a list of li thus is also done in pure CSS.

  • hide the text label in the section report IR under certain conditions

    Hello
    We have a textlabel and a calculated field in a section of report to the IR 11.1.2.1. Is it possible (in a script) to hide the textlabel and field based on certain conditions, like for example, if the field computes to 'zero '?
    Thank you.

    Use a field instead of the text label. In the Expression Editor you can use the function if() {} else {}

    HTH

    Wayne

  • How to show/hide conditional text on the text selected with the FDK API

    Hello!

    Do you know how to show/hide conditional text in a selected text using the FDK API? I managed to do it on the whole document, but I need to do on specific selected text...

    Thanks in advance,

    Stefano

    Hi Stefano,

    This is not possible, the conditions are the properties of the document and cannot be changed from visible to hidden or v.v. for the full document.

    If you really need a more detailed method, you must create a separate condition for the selected text.

    -Michael

  • Disable/hide the message text element image of a field of text in javascript

    Hi friends,

    I added a text of element position for one of the textfield object in my page as
    <img src="#IMAGE_PREFIX#ws/small_page.gif" onclick="javascript:popUp2('f?p=&APP_ID.:99:&SESSION.::NO::P89_select:2', 500, 500);" />
    Which will display a page when click the image

    I want to disable the textfield depending on certain conditions. I do it in javascript. The text field is disabled
    but the message text image is present and is clickable. I want to hide or disable the image displayed in the message as well item. Is it possible to do so. Help, please

    Thank you
    TJ

    Hello

    If you try to hide the entire line where the point is?
    http://download.Oracle.com/docs/CD/E14373_01/apirefs.32/e13369/javascript_api.htm#CHDIIJHG

    Or it works if you wrap your article to the div tag and try to hide
    Add to the text of item pre

    end post text element

    
    

and change your javascript to hide id Px_ITEM_CONTAINER

BR, Jari

Published by: jarola February 2, 2010 08:58

  • How to hide the border of text entry?

    Hello

    I want to hide the border of my TextInput component.

    I tried the following actionscript examples:

    textBoxInstanceName.border = true;
    textBoxInstanceName.borderColor = 0xFF0000;

    AND

    textBoxInstanceName.setStyle ("bordercolor", 0xffffff);

    But this does not work for me. Is it possible to do?

    Please help me, if anyone has an idea.

    Thank you

    Vuille

    Hey,.

    the only way to change the way an object TextInput looks in your application modifies its 'skin '. to do this, you must create your own skin class which extends the UISkin class. Here is a sample, you can use a guide pulled the skin of the ASDocs page:

     package
      {
        import qnx.ui.skins.SkinAssets;
        import qnx.ui.skins.UISkin;
        import qnx.ui.skins.SkinStates;
    
        import flash.display.Sprite;
    
        public class CustomButtonSkin extends UISkin
        {
            /**@private**/
            protected var upSkin:Sprite;
            /**@private**/
            protected var selectedSkin:Sprite;
            /**@private**/
            protected var disabledSkin:Sprite;
                 /**@private**/
            protected var downSkin:Sprite;
    
            /**
             *Create a custom button skin
             */
            public function CustomButtonSkin()
            {
                super( );
            }
    
            override protected function initializeStates():void
            {
    
            upSkin = new Sprite();
            upSkin.graphics.beginFill(0xFF6600);
            upSkin.graphics.drawRect(0,0,200,200);
            upSkin.graphics.endFill();
    
            downSkin = new Sprite();
            downSkin.graphics.beginFill(0x333333);
            downSkin.graphics.drawRect(0,0,200,200);
            downSkin.graphics.endFill();
    
                disabledSkin = new Sprite();
            disabledSkin.graphics.beginFill(0xCC0000);
            disabledSkin.graphics.drawRect(0,0,200,200);
            disabledSkin.graphics.endFill();
    
                selectedSkin = new Sprite();
            selectedSkin.graphics.beginFill(0x000000);
            selectedSkin.graphics.drawRect(0,0,200,200);
            selectedSkin.graphics.endFill();
    
            setSkinState(SkinStates.UP, upSkin );
            setSkinState(SkinStates.SELECTED,selectedSkin );
            setSkinState( SkinStates.DISABLED, disabledSkin );
            setSkinState( SkinStates.DOWN, downSkin );
            showSkin( upSkin );
    
            }
        }
      }
    

    The above code changes an appearance a button object, but you can easily manipulate to run with a TextInput object. After you set up your custom skin class you can apply it to your TextInput object, use the setSkin() method in your application on the object itself. It's a little tricky, but once that you have been there, it gets a little easier.

    Here is a link with more details on counting:

    http://www.BlackBerry.com/developers/docs/airapi/1.0.0/QNX/UI/skins/package-detail.html

    There are also a few posts around the forum who have good info. Here's one in particular that I refer to:

    http://supportforums.BlackBerry.com/T5/Tablet-OS-SDK-for-Adobe-Air/how-do-I-skin-a-TextInput-Compone...

    hope that helps. Good luck!

  • How to hide the component date. MinValue (like the secret of entering text attribute)

    Hi Experts ADF,

    Can someone help me to hide the entry date.
    I need to display "DD/MM/YYYY' as a dummy value if the user does not have permission to view the date.

    As the date. MinValue is not a secret as inputText attribute, if anyone can help on how to display the fictitious value based on a condition.

    Thanks in advance.

    Mohan

    Hello

    Why not add the two below in the column?


    With the EL to determine rendering, either one of the two will show

    Frank

  • Show and hide the text in a page of questions / answers

    I need to create a FAQ page in Flex3. The page initially lists all questions with a "Show" button after each question.

    A click of a button 'Show', the answer to this specific question is inserted and displayed below

    the question and the button becomes "hide the answer.

    A click on the button "Hide the answer," despairs the answer to this question, the questions (and answers if there is)

    below moves upward to support the space and the button becomes «See the answer»

    Suggestions or examples? DataGrid with masking of rows? Directly using state transitions?

    I would use visible and includeInLayout properties

    Alex Harui

    Flex SDK Developer

    Adobe Systems Inc..

    Blog: http://blogs.adobe.com/aharui

  • Hide the header of a data grid text

    I would be grateful to anyone who could shed light on how to hide the property HeaderText to a Datagrid. Basically I want the data without the row header.

    Thank you

    -erik

    I also found the showHeaders property and I put it to 'false', which also works.

  • graphic block obscures text frame, even if the text is on a higher layer

    I have a page of photos, each in its own framework and each with its own text block containing the caption for the photo. Behind all this and covering most of the page, I created an image of basic graphics in which I placed a picture as the background. I've done several times before, as recently as last month. This time, for some reason some unfathomable background obscures the text captions, as if the background was on a top layer (but it isn't). But he isn't obscuring the photos, only the legends. Another strange thing: InDesign error text in excess, which is clearly not. I tried to juggle the autour layers to see if that would solve the problem. No dice. The only thing that makes visible captions is to completely remove the graphic block. I tried just using a fill color in the frame, instead of the photo in the background, but the result is the same. I also tried to reduce the opacity of the fill/photo, but all that is to reduce the color in the white frame (the color of the page), it doesn't make transparent. I can make the image smaller, and this makes the text 'behind' it visible. But the color/background < rectangle > is the purpose of down in the layers list. It just does not behave like that. One last thing: I can go to the layers palette and hide the rectangle of <>by clicking the eyeball, but she is hiding it, it does not show the text 'behind' she captions. I suspect that an update shifted to creative cloud can be loaded here.

    You have the text wraps not enabled for your background image, it pushes the text out of the text frame, which, of course, is causing overset text and you you see is not the text more. Select the inage background, choose the skin for Windows and click the more to the left to turn it off.

  • Reading properties on the linked text frames

    Hello

    I need to be able to get the background color and a background image of a textframe help of scripts. I can't find anything in the documentation on the subject. Suggestions?

    Also, I need to test if one or more linked text frames are connected to each other. Suggetions?

    Thanks in advance

    Bo Dudek

    WebDeveloper

    Mediegruppen

    To test if a block of text is linked to another, use the nextTextFrame and previousTextFrame:

    if (myFrame.nextTextFrame === null && myFrame.previousTextFrame === null) {
      // the frame is not linked to another frame
    }
    

    Background color: myFrame.fillColor

    Background image of a block of text: is a picture behind a block of text?

  • Cc2015 INDD: white text frame does not appear in the photos

    InDesign CC 2015:

    A new reason text blocks, I create are white and all new text, I type will not appear on my thumbnail and also disappears when I saw. I still have a block of text that has a blue outline and that it appears on the thumbs and preview.

    What is going on? Why does my white text frames all of a sudden and no display does not correctly?

    Thank you

    I solved it: I placed the text on a layer of print no!  Hope this helps someone else.

  • How mode change and get the coordinates of the text frame?

    Hello.

    There are two questions.

    1. how to change fashion using JavaScript?  writing-> selection

    ->

    2. how to get the text frame coordinates?

    Thank you.

    1 app.toolBoxTools.currentTool = UITools.SELECTION_TOOL;

    2. f.geometricBounds (where f is your block of text).

  • Muse will not allow a hyperlink in a text frame, unless it's rasterized.  The link does not work. ???

    I am a new Subscriber.  I am just placing of text links in a paragraph.  Preview before or after the loading of the site to a Web site, I get an error message that text of the hyperlink in a text frame requires the pixelation and will not work in a browser.  I have read all the manual information and tutorials and there is no mention of pixelation.  Any help will be greatly appreciated.   I use a PC with windows 7.

    John

    d

    Hi Johngjudy,

    Did you use a system font in the text box. If Yes, then try using a web Form or standard font and it works perfectly.

    Kind regards

    Vivek

  • Maybe you are looking for

    • Satellite Pro A60: Recovery disk damaged

      Can someone help me get a new satellite pro A60 recovery disk. My first drive was damaged.Thank youcarol9430

    • Pavilion dv6: my laptop is asking administrator password

      Hi guys,. can you please help me, my computer laptop pavilion dv6 is asking admisnistor password, and I do not know. I can't even get anything without this admisnistrator password... After several attempts of bad, I get this code to display "51388712

    • Sony ILÇE-7R - what is the speed of read/write in the camera

      I have several Sony ILÇE-7R cameras used for a given application where more than 80 panes in a row with 1 second interval occur. When you are taking pictures on a 1 sec shutter time / 1.2 s, then the camera tends to slow when writing the buffer on th

    • Internal memory flash of Smartphones blackBerry 8700

      Hi all I have a question: 8700 internal flash memory is 64Mb.But I was wondering: why, after installation of the operating system and a basic application. the total memory is still 64 MB? If you know, please share with us

    • VPN - cannot subnets behind 2nd router internal access. Help.

      Hi guys,. Looking for a little help after a day of frustration. I'm really new to this and student so I know I'm doing something stupid. In any case, I bought an ASA 5505 and placed it between my cable Modem and router Cisco 3745. The external interf