TextArea, remove border

I would like to make my textarea´s border invisible.
Unfortunately, I suck on Flash :(). This should be rather easy
shouldn´t it?

Christian
I dont have this option. I use Flash Cs3, maybe it is
something in an older version?
How do I place a TextField? When I look in the components
window, I only find TextArea and TextInput. I could of course
create one using ActionScript, but how do I then make it appear on
the screen??
Edit I guess TextField is the simple tool in the toolbox. I
have started to try it out and I hope I will solve my problem. Many
thanks to you.

Similar Messages

  • Spark TextArea remove border (borderVisible) in Flex 4.5 Hero

    When dealing with the TextArea for Mobile development in Flex Hero 4.5 I cannot find a way to remove the border.
    <s:TextArea id="lblPOC" left="10" right="10" top="10" bottom="10"
    borderColor="#FFFFFF" borderVisible="false" color="#000000"
    contentBackgroundColor="#FFFFFF" editable="false" skinClass="{null}"/>
    setStyle is not working on spark components I have come to find out.
    Even to get htmlTexh I had to:
         MobileTextField(lblPOC.textDisplay).htmlText =
    Can anyone help me remove the boarder from a spark TextArea in Flex 4.5?
         Thank you,
              Eric

    Looks like you were using the preview release of Flex 4.5.  Setting borderVisible to false works for me in the 4.5 release build:
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark">
        <s:TextArea left="10" right="10" top="10" bottom="10" borderVisible="false" />
    </s:View>

  • Remove border on page

    remove border on page

    Hi Suzi,
    Is your document based on a Page Layout Template, or a Word Processing Template?
    I am not sure what border is showing. Try Menu > View > Hide Layout.
    Regards,
    Ian.

  • Text Box Tool - remove border?

    Working on an online-application. Have downloaded it to my hard drive and am filling in blanks using Adobe Acrobat 9 Pro. Typewriter typically but for a large area of lots of typing I want to use a text box. How do I remove the bold red border?

    You can show the Properties Bar by pressing Ctrl+E. Then select the text box and you should see where you can change the border color and/or remove it by setting the border to nothing.

  • HTML Textarea removing Carriage Returns

    Hi,
    Hoping someone can assist, I am retrieving some data from a table that currently consists of carriage returns but when I try and retrieve this information via Ajax and pass it back into the HTML page textarea field within ApEx, the value returned is one continuous string.
    All my carriage returns are removed.
    Can someone please assist, possibly using a javascript solution or some other type as to how I can preserve the carriage returns.
    Thanks.
    Tony.

    Hi Tony,
    I suspect the problem is simply due to the way HTML handles line breaks, which is to say, it generally ignores them. For example, this html:
    <p>To be or not to be, that is the question;
    Whether 'tis nobler in the mind to suffer
    The slings and arrows of outrageous fortune,
    Or to take arms against a sea of troubles,
    And by opposing, end them. To die, to sleep;
    No more; </p>would be displayed in a browser as:
    To be or not to be, that is the question; Whether 'tis nobler in the mind to suffer The slings and arrows of outrageous fortune, Or to take arms against a sea of troubles, And by opposing, end them. To die, to sleep; No more;
    One way to get around this is to wrap the string in {font:Courier}&lt;pre&gt;&lt;/pre&gt;{font} tags; another would be to replace the carriage returns with {font:Courier}&lt;br&gt;{font}
    Hope this helps.
    tx, --Jen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Remove Border on Link

    I made an image into a link. But the image now has a purple border around it. I used to be able to remove that in Properties-Border-0. How do I do it in CS6?

    Simpler than copying and pasting one line of CSS into your HTML page? Actually, no.
    Open HTML page in code view,
    Scroll down to the <style> tags.
    Paste code I gave you earlier between the <style> and </style> tags.  Almost anywhere will do.
    Save. Done.
    Have a beer!
    Nancy O.

  • Removing border from JButton

    * This is a crosspost, hope you don't mind. The earlier post I made was in the wrong forum and in the wrong thread.. *
    I'm trying to remove the border from a bunch of JButtons.
    My code adds custom actions to a custom JToolbar. The code responsible for this looks like this:    JButton button = this.add(action);
        //button.setBorder(new EmptyBorder(1, 2, 1, 2));
        button.setBorder(null);I've tried both lines, and both work and don't work at the same time. In one panel it works but in five others it doesn't. The only difference I see between these two groups is that the panel that works uses a GroupLayout and the other panels use a BorderLayout.
    Also, I'm trying to create an onMouseOver effect similar (well, exactely the same actually) as is used in Eclipse. When the users mouse hover over the button the button should be given a border, when it is not the border should be gone.
    Any help on these issues would be appreciated,
    Jurgen

    This might also help if you want to make a button out of a Componet
    package tjacobs.ui.drag;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.FlowLayout;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.AbstractAction;
    import javax.swing.Action;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import tjacobs.ui.swing_ex.JLabel;
    import tjacobs.ui.util.RandomColor;
    public class Buttonize extends MouseAdapter {
         private Component c;
         private Action a;
         private static int sNumClicks = 2;
         private int numClicks;
         private boolean showClicks = false;
         private Buttonize(Component c, Action a) {
              this.c = c;
              this.a = a;
              numClicks = sNumClicks;
              c.addMouseListener(this);
          * Main interface to Buttonize. Makes a component double-clickable
          * @param c Component to listen for clicks on. Not null
          * @param a Action to be run when the click count is hit. Not null
          * @return
         public static Buttonize MakeButton(Component c, Action a) {
              if (c == null || a == null) throw new IllegalArgumentException("Invalid Parameters");
              Buttonize b = new Buttonize(c, a);
              return b;
         public void mouseClicked(MouseEvent me) {
              if (TEST) System.out.println("clicked");
              if (me.getClickCount() % numClicks == 0) {
                   int modifiers = me.getModifiers() | me.getModifiersEx();
                   //if (ev == null) {
                        //Object source, int id, String command, long when, int modifiers
                   Component src = (me.getSource() instanceof Component) ? (Component)me.getSource() : c;
                   ActionEvent ev = new ActionEvent(me.getSource(), me.getID(), src.getName(), me.getWhen(), modifiers);
                   a.actionPerformed(ev);
         private static final boolean TEST = false;
         public void mousePressed(MouseEvent me) {
              if (TEST)
              System.out.println("pressed" + me.getPoint());
              if (showClicks) {
                   Component c = me.getSource() instanceof Component ? (Component) me.getSource() : this.c;
                   Graphics g = c.getGraphics();
                   g.setXORMode(Color.BLACK);
                   c.paint(g);
         public void mouseReleased(MouseEvent me) {
              if (TEST) System.out.println("released" + me.getPoint());
              if (showClicks) {
                   Component c = me.getSource() instanceof Component ? (Component) me.getSource() : this.c;
                   c.repaint();
         public void setClicks(int clicks) {
              numClicks = clicks;
         public int getClicks() {
              return numClicks;
         public static void setDefaultClicks(int clicks) {
              sNumClicks = clicks;
         public static int getDefaultClicks() {
              return sNumClicks;
         public void setShowClicks(boolean b) {
              showClicks = b;
         public boolean getShowClicks() {
              return showClicks;
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              JLabel hic = new JLabel("Hic"), haec = new JLabel("Haec"), hoc = new JLabel("Hoc");
              Action a = new AbstractAction() {
                   public void actionPerformed(ActionEvent ae) {
                        System.out.println(ae.getActionCommand());
                        RandomColor rc = new RandomColor();
                        Color c = rc.getRandomROYGBV();
                        ((JLabel)ae.getSource()).setForeground(c);
              JPanel jp = new JPanel(new FlowLayout());
              hic.setName("Hic");
              haec.setName("Haec");
              hoc.setName("Hoc");
              jp.add(hic);
              jp.add(haec);
              jp.add(hoc);
              MakeButton(hic, a);
              Buttonize b = MakeButton(haec, a);
              b.setShowClicks(true);
              //MakeButton(hoc, a);
              hoc.addMouseListener(b);
              JFrame jf = new JFrame("Buttonize Test");
              jf.setContentPane(jp);
              jf.setBounds(100,100,200,100);
              jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              jf.setVisible(true);
    }

  • Remove border from last item in ul, li?

    Hello! I am using this css style for a list.
    ul.listright { border-left:1px solid #EDEDED; padding-top:4px; }
    ul.listright li { border-bottom:1px solid #D9D9D9; margin:0 0 -1px; padding:1.1em 0; }
    I am trying to remove the border from the li on the bottom. I tried:
    ul.listright li last { border-bottom:medium none; }
    ..but that didn't do anything. What am I doing wrong?

    nemci7v wrote:
    Hello! I am using this css style for a list.
    ul.listright { border-left:1px solid #EDEDED; padding-top:4px; }
    ul.listright li { border-bottom:1px solid #D9D9D9; margin:0 0 -1px; padding:1.1em 0; }
    I am trying to remove the border from the li on the bottom. I tried:
    ul.listright li last { border-bottom:medium none; }
    ..but that didn't do anything. What am I doing wrong?
    In cases where you need to remove the border on one element its faster and simpler to just go into code view and use some inline css styling as below:
    <ul class="listright">
    <li>Some text</li>
    <li>Some text</li>
    <li style="border: none;">Some text</li>
    </ul>

  • HOW TO REMOVE BORDER LINE IN ALV LIST

    Hi Abapers,
    I am using blockded list  I don't need the border line of list as per my requirement.
    ho to remove the border line for the list output.
    I hope some body will help me.
    Regards,
    Chandra Shaker.

    If you use the OO way to do alv, (class CL_GUI_ALV_GRID), in table GS_LAYOUT you have fields NO_HGRIDLN & NO_VGRIDLN to remove verticals and horizontal lines.
    GS_LAYOUT-NO_HGRIDLN = 'X'.
      CALL METHOD GRID1->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          IS_LAYOUT                      = GS_LAYOUT
          IT_TOOLBAR_EXCLUDING = LT_EXCLUDE
        CHANGING
          IT_OUTTAB                       = WT_MD[]
          IT_FIELDCATALOG           = GT_FIELDCAT.

  • How do I remove border surrounding image?

    I am old as dirt and very new to Photoshop CS3. Don't ask me why (I just like to learn), I want to try making animations. I have found several online tutorials and just completed my first animation (a rocket being launched). I am working on another one, but couldn't find the  walkman gif used in the tutorial. I Googled and found this image, but don't know how to remove the border surrounding him?  Lucie

    Click on the animated frames panel to make it active. This is going to be needed.
    For frame animation the easiest way is to create a new layer for each frame. So you can copy/paste to the next frame for any repetitive pixels needed.
    When you are finished with all of your layers in the animations panel is a small icon in the upper right hand corner.
    Click that icon to bring up the menu
    Clear all frames
    convert layers to frames
    Once you see each layer in their perspective frame, you are ready to generate an animated gif.
    Before you do make sure repeat frame is not enabled as it will create a funky animation.
    To create an animate gif use File>Save For Web
    Preview the gif in a browser to verify it is animating correctly.
    Once of things that can be repeated on each layer is the color of your background\
    To copy a layer to a new layer use ctrl-j on windows or cmd-j on mac.
    At any time you can clear the frames do your work on the layer then convert the layers to frames and repeat this process as many times as needed.
    If your canvas is not large enough , expand it - Image>Canvas Size

  • Removing Border from a JtextField

    Hi all
    how do i remove the border surrounding the JTExtfield in my applet (using jdk1.3)
    Thank You

    A brief browsing of the Java documentation (which I always keep close at hand) indicates that JComponent has the setBorder() method. A website mentioned in the setBorder part gives this example (I haven't tested it):
    nameOfTextField.setBorder(BorderFactory.createEmptyBorder());Here is the site I extracted it from:
    http://java.sun.com/docs/books/tutorial/uiswing/misc/border.html

  • Remove border from HTML portlet

    Hii,
    When i am adding HTML portlet then a border is coming automatically. How to remove this border.

    Hi,
    The Rendering of the Portlet depends on the Region too - you can have a look at the "Edit Defaults" ( the Pencil Icon ) link for the Region where the Portlet is located. You can uncheck the " Show Portlet Borders " ( or, even " Show Portlet Headers " ).
    Regards,
    Sandeep

  • Remove border in list box

    Hi,
    Is there any way to remove the frame around the active row of list box in  CVI 5?
    J
    Attachments:
    lstbxctl.gif ‏3 KB

    SetCtrlAttribute (..., ..., ATTR_HILITE_CURRENT_ITEM, 0);
    I normally use this option for indicator listboxes: I have no idea about what happens on hot controls. Keep in mind that the dotted highlighting is a visual reminder of the active item when the control is not the active one, so putting it away can lead to confusion.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Removing border around Flash content

    I really cant stand what adobe has done to the flash player.
    They totally messed it up.
    My question is how do I remove the box/boarder that the new
    flash player puts around flash content.
    Go to a site with flash content, once there hover your mouse
    over the content, you will notice a box/boarder around the content
    now.
    HOW DO I REMOVE THIS, so freaking annoying!
    Just leave Flash how it was Adobe.
    Good to see how you come and take over macromedia, and then
    you jack with thier software making it a total annoyance.
    Tell me how to turn this boarder crap off.

    You really are shooting off obviously without having read any
    of the
    hundreds of news reports on this in the last couple of months
    .. nor the
    hundreds of forum posts here. Do a little research before you
    start
    mouthing off about what adobe has done .. otherwise you are
    just looking
    very foolish.
    Adobe has done nothing here. Microsoft have been forced as a
    result of
    EOLAS suing them to change how IE works with all embedded
    ActiveX controls
    (including Flash).
    It is up to web site authors to change their HTML so the
    flash content
    doesn't need to be activated.
    There is nothing you can do about it, nor adobe, nor
    Microsoft.
    You can temporarily do something about it be going to MS site
    and
    downloading a patch that turns off this new behaviour for a
    month or two
    (its only a temporary fix).
    If you are a web site author, then see the many posts in the
    flash general
    discussion about what you should do .. in particular look at
    http://activecontent.blogspot.com
    Jeckyl

  • Removing border around image with link

    I know this is really basic but I can't find anywhere how to
    avoid having a purple border around a linked image. Help
    please!

    Nope. Not if you want valid XHTML.
    CSS does the trick -
    a img { border:none; }
    *and* you don't have to add it to each individual <img>
    tag.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Dan.Smith" <[email protected]> wrote in
    message
    news:gn22if$i6k$[email protected]..
    > border="0"
    >
    > <img src="myImage.jpg" alt="a" width="22" height="22"
    border="0" />
    >
    > --
    > Dan Smith > adobe community expert
    > Flash Helps >
    http://www.smithmediafusion.com/blog/?cat=11
    > twitter:
    http://twitter.com/dmode
    >

Maybe you are looking for

  • Voice memo sync with iphone4 IOS 5.1

    Dear all, I cannot sync my iphone 4 voice memos to itunes 10.6,  older voice memos, before FEB 2012, do  appear in voicememoms playlist in itunes but the newer ones do not. i am using ihone4 with IOS5.1 Can you help? ZAM

  • MSI CR640 Black Screen of Death in Windows 8.1

    I get a black screen after the Windows logo every time I boot up my MSI CR640. Is there a fix for this?

  • How do i put photoshop elements 10 on both pc and mac

    if i purchase the downladable version of photoshop elements 10 for my mac, do i have the option of also downloading it to my pc without purchasing it again?

  • Printing from XP to shared printer

    Hi I am trying to print from pc laptop running XP Home to shared printer on iMac. I can not get it to work. When I run the Bonjour wizard it finds the printer, Epson R300, no problem. Set up seems fine. I print and it certainly gets sent somewhere -

  • HT201250 running 32bit programs in 64bit windows 7

    My Panasonic camcorder's (SDR-H280) video editing software's (Videocam suite 1.0) upgrade for Winow 7 does not run on Window 7 64bit. I have recently installed WOW64 but cannot run and also the problem is not solved. Please help.