Changing backgrounds

Ask a Question related to Adobe Photoshop & Illustrator, Design and Development.

  1. #1

    Default Changing backgrounds

    I have been fiddling around with Elements and PhotoDeluxe. I like the ease of use to select an object in Photo Deluxe (v.4) and click remove background, BUT now I am stymied...I cannot figure out how to ADD another background. Is there a fairly simple way to do this in Elements 2.0?

    Linda
    Linda Haas Guest

  2. Similar Questions and Discussions

    1. Web backgrounds
      As a nearly-getting-there Web designer, I like using tables. There. Said it. When I centre a table, the spaces down the right and left sides is...
    2. backgrounds
      "goblot" webforumsuser@macromedia.com wrote: You can only have one background image for the page. I suggest you put a table with two rows for...
    3. pdf gen with backgrounds
      I have a table looped several time with a background image set inside the <table> tag. The tables are placed in a cfdocument tag to generate a...
    4. changing flash backgrounds
      select it and hit the Play button in the properties panel. Thats the best way I know of. cheers -beally- ------------------------- &quot;Senior...
    5. Tiling backgrounds.
      I have sliced up an image in Fireworks and exported it into Dreamweaver to be used as a bakround to a table. What I need to know is how to make it...
  3. #2

    Default Re: Changing backgrounds

    Linda,

    The first time you open a "new" image it's classified as a background layer. Note the bottom box of color squares in tool box and you'll see default color of the background. If you click that background color box and then click any of the color swatches to change that color, you'll get that color when you use the eraser. If you wish to work from a standard layer, where you've double clicked the background layer to make it a standard layer, then make a new layer, move it below the original and fill it with the color you desire for a background.

    Bob
    BobHill Guest

  4. #3

    Default Changing Backgrounds

    Well I'm trying to keep an open mind to solve my many problems.

    I was wondering if there is any action script that can cause a background in
    Dreamweaver to change when a certain frame is reached?

    Is this possible?

    gilberb001 Guest

  5. #4

    Default Re: Changing Backgrounds

    Use a javascript to accomplish this (put it in the head statement of your page):

    <script language="JavaScript">
    function newBG(colorcode){
    document.bgColor = colorcode;
    }
    </script>

    Then use a getUrl to call javascript:newBG(######); in your flash
    movie...where ###### is your new background color. If this doesnt work let me
    know and Ill post an example. g/l


    nez9 Guest

  6. #5

    Default Re: Changing Backgrounds

    Thanks, I'll give it a shot.
    gilberb001 Guest

Posting Permissions

  • You may not post new threads
  • You may not 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