Fill color does not work - gray

Hello

I'm using Flash CS5 and I had no problem with the program before. But now when I open a new document - the fill color is grayed out in the toolbar - it almost looks like a grid. I did a rectangle and tried to fill - color picker registered the color, but will not fill the object and the fill color box remains with this gray grid looking thing. I can't fill anything. The text color will change either.

Anyone know why or what I can do about it?

Thank you!

The alpha is set to 0%. It happened to me before.

Tags: Adobe Animate

Similar Questions

  • CSS text color does not work online

    Hello

    I just put a color in my css file (it's: color: #AE0508;). It works very well in the direct vision of Dreamweaver, works fine in the preview of the web browser, but it does not work on my hosting server: text remains black. Any idea?

    Thank you!

    Download the CSS?

    If you have, and it still does not work, please provide the URL of your site.

  • Header background color does not work

    Hello

    I'd do it stay change the color background of the header element, , but it does not work as I have thought


    First of all, here's the HTML code:


    <body>
    <div id="wraper">
      <header>
        <h1><span>Pacific</span> Coastal Highway</h1>
        <nav>
          <ul>
            <li>Home</li>
            <li>Big Sur</li>
            <li>Pfeiffer Beach</li>
            <li>Elephant Seals</li>
            <li>Morro Bay</li>
          </ul>
        </nav>
      </header>
      // ... some other HTML elements & content ...
    </body>
    
    
    
    
    

    , Within the < header > element we have < h1 > and < nav > elements, and in this < nav > element there is a list that is actually menu.


    Here it CSS code referring to these elements:

    #wraper {
        width: 1200px;
        background-color: #FFFFFF;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        border-right: 1px solid #000000;
        border-left: 1px solid #000000;
    }
    body {
        margin: 0;
        background-color: #CBD2FB;
        font-family: "OpenSans Regular", "Gill Sans MT", Arial, "Times New Roman", sans-serif;
        color: #202020;
        background-image: -webkit-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: -moz-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: -o-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: linear-gradient(180deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
    }
    h1 {
        margin-top: 0px;
        font-size: 48px;
        text-shadow: 1px 1px 2px #969696;
        padding-top: 32px;
    }
    
    h1, h2, h3 {
        font-family: "Prociono Regular", "OpenSans Regular", "Gill Sans MT", "Times New Roman", Arial;
        color: #507AAD;
        text-align: center;
    }
    
    h1 span {
        position: relative;
        top: -37px;
        left: 35px;
        font-family: GoodDog, Arial, "Times New Roman", "Gill Sans MT", sans-serif;
        font-size: 47px;
    }
    
    header nav ul {
        margin-right: auto;
        margin-left: auto;
        list-style-type: none;
        padding-left: 0px;
        width: 705px;
        /* [disabled]margin-bottom: 10px; */
    }
    
    nav ul li {
        float: left;
        padding: 10px;
        display: block;
        width: 110px;
        text-align: center;
        background-color: #A9A3FF;
        border-right: 1px solid #FFFFFF;
        border-radius: 23px;
        background-image: -webkit-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        background-image: -moz-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
    
    
    
    
    background-image: -o-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
    
    
    
        background-image: linear-gradient(180deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        margin: 18px 5px;
    }
    
    
    
    
    
    

    And, finally, this is what it looks like:


    Pacific Coastal Highway - Mozilla Firefox 2014-09-10 15.02.38.png



    Now, I would change the background of the < header > element (to display than whites behind this < h1 > menu in a different color) and so I just added the background of the < header > element in CSS:


    header {
        background-color: #FF2D31;
    
    }
    
    
    
    
    



    But here's what it looks like now:

    Pacific Coastal Highway - Mozilla Firefox 2014-09-10 15.09.11.png

    As you can see, Although the element < nav > list (menu) is IN the < header > element - the background color of the header of <>is right behind the element < h1 >.


    You know why This is the case and what would be the best way of fix ce problem?


    Thank you in advance.

    Try

    header {
        background-color: #FF2D31;
        overflow: hidden;
    }
    
  • Why by default fonts and color does not work after the upgrade to version 31?

    As mentioned on, my default fonts does not work. Any type of police that I've changed, he always showed the times I think that a new font Roman.
    pls help me thanks

    Problem solved. The character encoding for the outgoing is false, I change to the West. Then its ok now

  • The syntax coloring does not work on Windows high contrast Theme

    -On Windows 10, if I use the default theme, coloring syntax works fine.

    -If I switch to my custom high-contrast dark theme Windows (black window background, white text), the text in Code view or the Code Inspector is a single color (white on black), and "Color Syntaxing" option is grayed out. So, it seems that Windows themes replace Dreamweaver.

    -If I switch to the default theme Windows 10, then turn on syntax coloring, then switch back to my high contrast theme, a few syntax colors stay, as tags HTML object, but most of the text turns white.

    - So I think that it is a bug fix / feature request: Please make Dreamweaver code replace Windows themes like the other apps do (Notepad ++ for example).

    My specs:

    Dreamweaver 2015.1 release, Build 7851

    10, 64-bit Windows Home

    In fact, not really a bug, but more than one function of wondering who I'll introduce.  Is not sound as there is no current workaround solution other that temporarily switching Windows to a theme non-haut contrast.

    I look forward to the update Dreamweaver CC 2016 which I've heard will bring a dark theme in the user interface.  Now, it would be just great if Windows 10 allowed customization of it of regular hardware accelerated theme and not relying on high contrast mode, which should legitimately outweigh everything else since this is a feature of "accessibility".

  • Fill color does not have the correct form

    Color is not in the form... I did a color pencil pentool. And the forms filled with color, but it does not seem to have filled the entire shape. As the outline of my tracking does not match the form that Illustrator is filling up. The shape and colour are a bit off.

    Here is exactly what I mean:

    Is this version CC 2015? You have successfully updated to 19.1?

    Also: is "Snap to grid of pixels" active in conjunction with effects or "shot of Align for inside and outside?

  • Selecting with the range of colors does not work correctly

    Well, at least for me it does not correctly.  If I have items on separate levels, and I use the color range option to select the area, it works at all levels, not just the level I selected.  This isn't what I want!  I want only to choose the range of color at a level.  The work-around needs to manually turn the other levels, but on a file with a lot of levels, which can be tedious.  Can this be avoided?  Either way, magic wand works only on the selected level, but not color range (or the range of colors, if you're American).

    The work-around needs to manually turn the other levels, but on a file with a lot of levels, which can be tedious.

    Hide all other layers can be done by alt-click on the visibility icon in the layers panel.

  • Fill &amp; sign does not work after last update Windows10

    Windows 10 did an automatic update and now fill & sign doesn't work on PDF Forms.  Do you know how to fix this?

    Hi caroleem85475882,

    I would like to inform you that Acrobat 7 is not compatible with Windows 10.

    It may or may not work properly.

    You can try to install it from this link: Download Adobe Acrobat 7 and Adobe Creative Suite 2 products

    Kind regards

    Meenakshi

  • Change the colors does not work at all

    Hello

    I recently posted this edition colors were funny and was an auto assign to the existing colors.

    Now, change the colors doesn't do ANYTHING. I select a color to be changed... change the color in the color Edition dialogue... nothing.

    Any suggestions on a workaround solution that does not take forever?

    Redefine the colors down to the left is checked?

  • Effect of water color does not work with solid fills?

    I have a solid color and apply water color effect, if it does nothing for the Uni filling? I apply the effect which is under Photoshop filters.  What is meant only to apply to the bitmap images?

    Thank you.

    It works relly bvut you can't understand because it has no tonal range is most obvious en with an image, but if the image is like everything what we color and tone, he will not look like you he painted by hand.

    You can certainly see it much as it is intended to work on an image.

    It is a filled rectangle degraded with a feather and the drop shadow and the watercolor effect.

    Here, it's not pixelated and with the watercolor effect.

    Here it is withopt the watercolor effect and without rasterize you can see little in the way of what you doubt the effect is less obvious than a solid filled closed path.

    But on an image with a wider tonal range, you can see much better.

  • Color does not work in Photoshop CC

    I downloaded Photoshop from the creative cloud but when I opened it all the colors were black and white. I tried looking to see if it was on shades of gray or not, but it is clearly set to RGB. Any help would be appreciated, thanks.

    Reset the preference settings

    Go to edit-> preferences-> General

    Reset on quit preference

    restart photoshop.

  • On windows xp profesional no axcess my programs to remove one of them. In the control panel everything he says is list is filled and does not work.

    I can't axcess my programs via the Control Panel, which said that the programs being filled.  They appear donnot.  Operating system is Windows XP Professional service pack 3.  Thanks to any one that can help.

    Hello

    Were there any changes (hardware or software) to the computer before the show?

    Make the SFC (System File Checker) scan and see if the problem occurs.

    Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe)

    Hope this information helps.

  • PSE "Inner Glow" does not work for dark colors?

    Hello

    I had a question for users of PES. I use Photoshop CS3 at work, at home, I have PSE 9 and my question is:

    PS CS3 when I do an inner glow, I can use any color, and it works very well, however, I noticed when I do the same thing with the layer in PSE Styles, I can only choose bright colors. If I try to choose anything, like for example black, the effect does not appear again. No particular reason, why this happens?

    There is another thread on this subject here, but the answer does not exactly answer my quesiton.

    Another thread: http://forums.adobe.com/message/2482587#545257

    Everything seems strange, as trying to apply this effect to a shape I am limited to bright colors, which does not give me the effect that I would watch.

    Also, I tried to create the same form of basis, the same colors, all in PS CS3, and then I recorded, it opened to post-secondary studies and went to layer-> glow Styles / inner glow and it works very well! How does make any sense? I can handle at this moment with the dark color and change it to everything I like and copy the style layer between Forms, works very well. As soon as I try to do the same thing with another new form and just directly go to layer-> glow Styles and make the effect that, even once, dark color does not work. Which does not much sense to me, since clearly can be judge by copy layer style, as it's just a color, no other effect on it.

    Any ideas? To be, so far, this seems to be a small problem with the software that I can't really understand how do I manipulate and copy the style with the dark, once I bring him in the PS CS5 PSD, but as soon as I try to re-create it manually with the same exact conditions, that it fails.

    Thanks for reading, forward responses.

    (I enclose below a picture of what I mean, this picture is the thread listed above, but rather illustrate the 'problem').Select inner glow color.jpg

    Kind regards

    Adam

    In photoshop using the inner glow, you should change

    the blending mode of the inner glow of the screen to normal for dark colors show.

    Of course, this varies according to the colors of text and the background and the effect you want.

    Photoshop elements by default does not allow to change the blend modes inner a glow.

    Here is an example of a workaround using red text on a white background to a black inner glow:

    Departure:

    1. prior to applying the inner glow duplicate your text layer and turn off the

    the lower text layer visibility.

    2. go in layer > layer style > settings of Style or Alt-double click

    the thumbnail of the layer of text in the layers panel to display the Style settings.

    3. go in the effect controls panel and the layer styles > visibility

    and choose hide. (the text disappears)  This is the same as the definition of the fill of the layer

    0% in photoshop.

    4 make a new white layer under the text on the top layer.

    5. click on the text layer at the top and choose merge down from the context menu

    6. turn on the visibility of the layer of remaining text.

    Result:

    There are other means and if you use one of the internal light predefined in the elements, you

    can get varied results.

    MTSTUNER

  • Why do code grayscaler site image Web does not work with Mozilla Firefox, but it does to another browser?

    I just noticed that my code (in my blog site), which is a regular code that allows the image to transform into its form in grayscale and cast its original color, does not work with the Mozilla Firefox browser. But with other browsers, it works. I hope you can help me with this little problem. Thank you!

    Should I use a CSS rule that is similar to:

    filter: grayscale(100%)
    

    This property is not yet implemented in Firefox. It is supposed to be implemented in Firefox 34, according to https://developer.mozilla.org/en-US/docs/Web/CSS/filter

  • MS Paint "fill with color" tool does not work. :(

    In the painting, my "fill with color" tool (the pouring paint can) does not work. I click on the box, I click on a different color, the icon changes to the can, but when I click on a space as say an empty circle, it doesn't do anything. Right click, nothing, left click, nothing.

    I noticed that the only thing he is able to do is to change a solid color that I did (as a solid black rectangle) in a different color, but only once. If I rectangle black color green, I can't change it to any other color after. I don't know what is happening.

    I am not edit a photo or anything btw, I start a new painting from scratch file. I'm trying just to circles of color and enclosed spaces. I've done this dozens of times with no problems. I tried restarting the computer and paint without effect.

    Thanks for any help!

    In the painting, my "fill with color" tool (the pouring paint can) does not work. I click on the box, I click on a different color, the icon changes to the can, but when I click on a space as say an empty circle, it doesn't do anything. Right click, nothing, left click, nothing.

    I noticed that the only thing he is able to do is to change a solid color that I did (as a solid black rectangle) in a different color, but only once. If I rectangle black color green, I can't change it to any other color after. I don't know what is happening.

    I am not edit a photo or anything btw, I start a new painting from scratch file. I'm trying just to circles of color and enclosed spaces. I've done this dozens of times with no problems. I tried restarting the computer and paint without effect.

    Thanks for any help!

    salés

    try to run the sfc/scannow command. to repair the corrupted system files

    http://support.Microsoft.com/kb/929833

    Use the (SFC.exe) System File Checker tool to determine which file is causing the problem and then replace the file. To do this, follow these steps:

    1. Open an elevated command prompt. To do this, click Start, click principally madeprograms, Accessories, right-click guest, and then click run as administrator. If you are prompted for an administrator password or a confirmation, type the password, or clickallow.
    2. Type the following command and press ENTER:
      sfc/scannow

      The sfc/scannow command analyzes all protected system files and replaces incorrect versions with appropriate Microsoft versions.

    Walter, the time zone traveller

Maybe you are looking for