Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default changing colors

    Anyone have any idea how to change the colors on our site? The theme editor
    apparently has info missing on it - and doesn't seem to be able to let us
    change color


    Chris Shoulet Guest

  2. Similar Questions and Discussions

    1. Please help! Colors keep changing on me
      I am using Illustrator CS and when I select a black and then reopen the file, the black is no longer pure black and is a combination of CMYK. The...
    2. changing colors, maintaining shadows
      Hi there - I'm building a tool that will allow users to visually change colors on a garment i.e. right sleeve is red, left sleeve is blue, etc. ...
    3. Changing Colors in PE 2...??
      I have been using PE-2 for several month. Mainly to scan and "correct" old pictures of mine. As a previosu user of Corel Draw and Paint, and MS-...
    4. changing colors to match...?
      combine several techniques... first and foremost masking and or selections are important. then use any or all of the following. hue/saturation,...
    5. changing colors and models
      hi, iam a novice user of director. the code u mentioned in your message. where should i put it. on a mouse click event on a 3d object or how please...
  3. #2

    Default Re: changing colors

    "Chris Shoulet" <chris@topdog-inc.com> wrote in message
    news:oTDjb.28266$Ks5.7966@nwrddc02.gnilink.net...
    > Anyone have any idea how to change the colors on our site? The theme
    editor
    > apparently has info missing on it - and doesn't seem to be able to let us
    > change color
    Erm... this newsgroup is for PHP, the language, not a product written with
    it. You may want to look at their support site for details as we're mostly
    techy, geeky, developer types in here.

    Paulus


    Paulus Magnus Guest

  4. #3

    Default Changing Colors

    I wanna know how you can change colors of certain items like the combo box and the progress bar. I don't want them to be the default colors. Can anyone help me with this?

    Thanks for your time...


    smorgen webforumsuser@macromedia.com Guest

  5. #4

    Default Re: Changing Colors

    Hi,

    Global Customization

    U can use the globalStyleFormat object, and this can customize the look of all your components at once. An example that changes the text color of all text in all components to blue:

    globalStyleFormat.textColor = 0X0000FF;
    globalStyleFormat.applyChanges();

    The applyChanges command causes the change to occur.......Here's a more detailed change:

    globalStyleFormat.textColor = 0 x 0000FF;
    globalStyleFormat.textFont = "Arial";
    globalStyleFormat.textSize = 18;
    globalStyleFormat.textBold = true;
    globalStyleFormat.applyChanges();

    For single component Customization

    checkbox1.setStyleProperty("textColor", 0XFF0000);

    By the way I don't consider myself a FLASH GURU, I gave u this example using a book by the name of

    FLASH MX ACTIONSCRIPT IN 24 HOURS.........

    I hope I helped u.........

    Take care and God Bless...
    [url]www.ymisitio.com[/url]






    MINGUITO webforumsuser@macromedia.com 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