Removing all Tab borders

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Removing all Tab borders

    I want to invis all tab borders on a TabNavigator control. I have implemented a
    ..css and set about every color property for Tab in it to blend in with my
    background. However, there is still a 'shadow frame' around my tab border. Is
    there a way to disable/invis this frame?

    dzlmbq Guest

  2. Similar Questions and Discussions

    1. Help please with table borders
      My organization's webmaster (and I use that term loosely) designed our site, set me up with Contribute ,and then left me hanging out to dry! I am...
    2. borders and containers
      according to http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/Box.html we can not set the left border to blue and right border to...
    3. Are borders just that?
      Has anyone ever come up with a way to extend an animation beyond the border of a flash document? It's real easy when in the design area to animate...
    4. Borders
      Can anybody help, how do you put borders around cells for example a black border, I can put a border around a image without any problems. Thanks,...
    5. Removing desktop icon from one account is removing from all accounts
      Using XP Professional. I want the Guest account to have only a few icons. The other two accounts should have many more. When I remove the icon...
  3. #2

    Default Re: Removing all Tab borders

    How about using a series of link controls that manipulate a view stack? I
    think that would be a better choice for what you want to accomplish. I
    assume you are trying to do a wizard interface or something similar?

    Ken

    "dzlmbq" <webforumsuser@macromedia.com> wrote in message
    news:d373ba$hc9$1@forums.macromedia.com...
    >I want to invis all tab borders on a TabNavigator control. I have
    >implemented a
    > .css and set about every color property for Tab in it to blend in with my
    > background. However, there is still a 'shadow frame' around my tab border.
    > Is
    > there a way to disable/invis this frame?
    >

    Ken D. Nelson Guest

  4. #3

    Default Re: Removing all Tab borders

    Try this.

    <mx:TabNavigator id='myNav' initialize='myNav.border_mc.visible=false;'>

    ....


    </mx:TabNavigator>
    bdeen Guest

  5. #4

    Default Re: Removing all Tab borders

    I tried the TabNavigator code and it didn't do the trick. I'm trying to do a
    similar layout that is in this example on this website:

    [url]http://www.macromedia.com/devnet/flex/example_apps/ebank/fig02_lg.html[/url]

    Can anyone tell me what controls are used for the top three areas? I am
    working with a LinkBar first, then a TabNavigator second. Neither will give me
    the look that is in the example above.

    dzlmbq Guest

  6. #5

    Default Re: Removing all Tab borders

    The only thing that the code I placed here would do is remove the border on the
    TabNavigator. If you're looking for changing buttons and what not that
    probably goes a little more into the border_mc object then what I've done.

    bdeen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139