Fill color of shapes in layer

How can i fill the color (solid) of shapes within an layer? For now I got:
function getLayer(name)
    return app.activeDocument.layers.getByName(name);
function fillSelection(hex)
    var layer = getLayer('Background');
    app.activeDocument.activeLayer = layer;
  app.activeDocument.selection.selectAll();
    var selection = app.activeDocument.selection;
  var sColor =  new SolidColor;
  sColor.rgb.hexValue = hex;
  app.activeDocument.selection.fill(sColor);
  app.activeDocument.selection.deselect();
But this is not working if i create a rectangle in the "Background"-Layer. (even not if its converted to smart object or rasterized...).
Thank you!

A rectangle in the background layer OK:
// A Script by JJMack's
// enable double-clicking from Mac Finder or Windows Explorer
#target photoshop // this command only works in Photoshop CS2 and higher
// bring application forward for double-click events
app.bringToFront();
// ensure at least one document open
if (!documents.length) {
  alert('There are no documents open.', 'No Document');
// if at least one document exists, then proceed
else {
  main();
// main - main function
function main() {
  try {
  var startRulerUnits = app.preferences.rulerUnits;
  app.preferences.rulerUnits = Units.PIXELS; // tell ps to work with pixels
  var Width = activeDocument.width.value;
  var Height = activeDocument.height.value;
  // declare local variables
  var layers = activeDocument.layers;
  activeDocument.activeLayer = layers[layers.length-1] // Target Bottom Layer
  if ( !activeDocument.activeLayer.isBackgroundLayer ) {
  app.activeDocument.artLayers.add()
  // declare local variables
  var newlayers = app.activeDocument.layers;
  // arrange layers so new layer added is at bottom
  newlayers[0].move(newlayers[newlayers.length-1], ElementPlacement.PLACEAFTER);
  // Make it a Background Layer
  activeDocument.activeLayer.isBackgroundLayer=1
  fillColor = new SolidColor;
  fillColor.rgb.red = Math.random() * 255
  fillColor.rgb.green = Math.random() * 255
  fillColor.rgb.blue = Math.random() * 255
  app.activeDocument.selection.selectAll();
  app.activeDocument.selection.fill(fillColor);
  app.activeDocument.selection.deselect();
  fillColor.rgb.red = Math.random() * 255
  fillColor.rgb.green = Math.random() * 255
  fillColor.rgb.blue = Math.random() * 255
  var selectedRegion = Array(Array(.1 * Width, .1 * Height), Array(.9 * Width, .1 * Height), Array(.9 * Width, .9 * Height), Array(.1 * Width, .9 * Height));
  app.activeDocument.selection.select(selectedRegion);
  app.activeDocument.selection.fill(fillColor);
  app.activeDocument.selection.deselect();
  app.preferences.rulerUnits = startRulerUnits;
  // display error message if something goes wrong
  catch(e) { alert(e + ': on line ' + e.line, 'Script Error', true); }

Similar Messages

  • Removing fill colors from shapes?

    I drew some squares using shape layers and filled them with white and added a stroke using layer styles.
    How can I remove the white fill color and make them transparent so they reveal the layer underneath?
    Thanks.

    Doing this gets rid of the stroke I applied through Layer Styles. How can I keep a stroke around the shape?

  • Cannot fill a rectangular shape with Color

    HI,
    I cannot fill a rectangular shape with color. I know it was working at some point. I checked the ID help, and did a search here with no results.
    I have the tool bar set correctly I think (see below). The object isn't behind other objects either, - that I can see. I do see it when I use the scroll bar so it's there somewhere. (see Pink box below).
    Any ideas profound or otherwise?
    Thenk Yew.

    You haven't got 100% transparency applied to it?  Then it might appear while scrolling because of a slightly delayed display.  That's all I can think of at the moment...
    The other thing to try if you suspect an individual document is playing up is to export it to inx or idml and open that.  Then another thing is to try replacing your preferences.

  • Fill Color Changes When I Paste a Shape, Flash CS6

    Whenever I paste, or paste in place, a shape (this does not happen with strokes), the fill color I currently have selected will change to match the color of what I've just pasted. If I paste something with multiple colors, it randomly chooses one of those colors to switch to. I've tried running searches online for what this phenomenon is, or how to change it, but I've come up with nothing. I'm using a mac, but a friend uses Flash CS6 on her windows machine, and it does the same thing. This doesn't happen in CS4.
    Is there a workaround? Or is this an annoying new feature I just have to live with?

    I can only verify what you see and explain the behavior but I do not believe there is any way to alter that behavior. When the new object is added to the stage (via paste) Flash makes sure to select it and it's unavoidable (and desired behavior) that it would trigger the contextual (color) panels with the correct information for the current selection. This appears to be a bug in that regard.
    You can always report it in a bug submission, I think the behavior is a clear bug and it should be easy to fix. It affects CS6 which is still a current product (due to AS2.0 support mostly), and CC, so it's important. Good find!
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Randomly choose color for shape

    I am working on a project for fun in which I need to have 144 squares choose a random color out of a pool (array) of predetermined colors and I need these shapes to do so every 1 second in the project. I was thinking the only way would be to write an after effects script, but I also thought it'll be cool if I could per object place a script which I do not know if it's possible.
    The only thing I am familiar with in after effects is creating time lapse. I have not played with it much more than that, however I am familiar with coding and have written some advanced scripts for Photoshop.
    Any help in pointing me into the right direction will be appreciated.
    Thanks

    So, played around with what you mentioned, and nether of them will do what I needed. I ended up playing with scripting and finally finished getting what I wanted.
    #target aftereffects
    var colors = [[1,0.95294117647059,0.4,1],[1,1,0.6,1],[1,0.91764705882353,0.21960784313725,1],[1,1,0.054901960784314,1],[1,0.96470588235294,0.36470588235294,1],[1,0.8156862745098,0.26274509803922,1],[1,0.92156862745098,0.26274509803922,1],[1,0.88235294117647,0.26274509803922,1],[1,0.90980392156863,0.43529411764706,1],[1,0.97254901960784,0.49803921568627,1]];
    app.beginUndoGroup("Color Change");
    var comp1 = app.project.item(1); //Comp 1
    var duration = comp1.workAreaDuration;
    var squares = comp1.layer(2).property("ADBE Root Vectors Group"); //Squares
    for (var i=1; i<=squares.numProperties; i++) {
        var square = squares.property(i);
        var fillColor = square.property("ADBE Vectors Group").property("ADBE Vector Graphic - Fill").property("ADBE Vector Fill Color");
        while (fillColor.numKeys!=0) {
            fillColor.removeKey(1);
        var previousColor = 0;
        for (var t=0; t<duration; t+=0.5) {
            var choosenColor  = 0;
            while (true) {
                var choosenColor = Math.floor(Math.random()*colors.length);
                if (t==0 || choosenColor!=previousColor) {
                    break;
            previousColor = choosenColor;
            var color = colors[choosenColor];
            fillColor.setValueAtTime(t, color);
        for (var k=1; k<=fillColor.numKeys; k++) {
            fillColor.setInterpolationTypeAtKey(k, KeyframeInterpolationType.HOLD, KeyframeInterpolationType.HOLD);
    app.endUndoGroup();

  • How can I apply a current fill color to a stroke, then adjust that stroke color's build?

    Hi all, I'm trying to figure out a way to automate a simple, yet repetative process I do countless times a day. Ideally, I'd like to tie it to a keystroke to speed up my workflow.
    I work on line art and colorways for footwear, so the way I'm coloring these shapes and strokes helps to break apart the different materials and pieces of the shoe.
    While coloring line art, I work with Pantone spot colors as fills for closed path objects. I then have to manually apply that same color to the stroke, set the stroke to 0.5px weight, convert that spot stroke color to CMYK, and add 15% to the K value.
    I found some code in an older post for applying the actively selected object's fill color to the stroke, but I'm having but I'm having trouble with the next step of figuring out how to take that spot stroke color and convert it to a CMYK build that I can then add 15% black to. Is this something that's even possible? I've spent about an hour playing with the script and have only had luck matching the fill color or turning the stroke white. Thanks for the help!

    ok try this one, I added the spot color option
    // make stroke color same as fill color + 15% black increase
    if ( app.documents.length > 0 && app.activeDocument.pathItems.length > 0) {
        for (var a=0; a<app.selection.length; a++) {
            try {
                    var sel = app.selection[a];
                    var fillcolor = sel.fillColor;
                    if (fillcolor.typename == "CMYKColor")
                        var cmkycolor = fillcolor;
                    else if (fillcolor.typename == "SpotColor")
                        var cmkycolor = fillcolor.spot.color;
                    var col = new CMYKColor;
                    col.cyan = cmkycolor.cyan;
                    col.magenta = cmkycolor.magenta;
                    col.yellow = cmkycolor.yellow;
                    var black = cmkycolor.black + cmkycolor.black +15;
                    col.black = black>100 ? 100 : black;
                    sel.strokeColor = col;
                    sel.strokeWidth = 0.5;
            catch (e){alert(e)

  • Graphic styles that use current fill color instead of stomping them?

    Sorry if this is a really stupid, newbie question; I am a stupid newbie.
    If I make a graphic style/appearance, it stores the colors of the fill and stroke and will then stamp that down on whatever else I apply it to (obviously). e.g. if I make a graphic style of a pale yellow fill and a bright orange dropshadow screen to make a glowing neon kind of look, and then drop that style onto a bright blue star, it will make the star pale yellow.
    Is there a way to do a graphic style that _modifies_ the existing appearance instead of stomping it - e.g. dropping that graphic style on my blue star would make a pale blue fill with a bright green dropshadow screen.
    e.g. A graphic style that said "make the new fill 110% value, 85% saturation, same hue as the existing fill color, add a 25 pt dropshadow that has the color of 90% value, 110% saturation, -3 hue of the existing fill color." And then that style dropped on a yellow star and a blue star would result in a glowing neon yellow star and a glowing neon blue star.
    The reason I ask: I have a bunch of geometric shapes of various shades of red, orange, yellow and brown, and would like to see what they would all look like with dropshadows of dark, very desaturated complementary colors (the orange shape gets a dark blue/gray dropshadow, the yellow shape gets a dark purple/gray dropshadow, etc.). Do I have to go in and modify each appearance by hand, or is there some way I can automate that?
    Thanks, and apologies if this is a really obvious question.
    Ken

    You won't get as much control as you describe (specific HSV values), but try putting a negative value in the Drop Shadow dialog's Darkness field.
    To create a Graphic Style that can apply an Effect without disturbing the existing fill/stroke of the object(s), first group the object(s), then apply the Effect (Drop Shadow, etc.) to the Group, and then drag the Group to the Graphic Styles palette.

  • Can't fill Color's in the Traced Image

    I have this image, of julie, what I did was that I copy and paste the image, then I made a new layer 2, I locked the first layer 1, and on the second layer where there is eye I pressed the ctrl+click on it to go to outline mode. I used the pen tool to trace it, when I successfully traced the image, I then can't paint it, I don't know how to fill color with outline mode on, Please help me here, please tell me how to fill in the trace step by step I will be very thankful to you. I am using CS5. Here is the picture http://flic.kr/p/a3AZTh

    Hi, Praveen mds, I was able to pick up the color using the eyedropper, now when I select the object fill it, nothing happens here is the latest picture. CS5

  • Get stroke color of shape

    Hi,
    I need get stroke color of shape in photoshop, but I only find how to get fill color, any suggestion?
    function getFillColor() {
       var ref = new ActionReference();
       ref.putEnumerated( stringIDToTypeID( "contentLayer" ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ));
       var ref1= executeActionGet( ref );
       var list =  ref1.getList( charIDToTypeID( "Adjs" ) ) ;
       var solidColorLayer = list.getObjectValue(0);      
       var color = solidColorLayer.getObjectValue(charIDToTypeID('Clr '));
       var fillcolor = new SolidColor();
       fillcolor.rgb.red = color.getDouble(charIDToTypeID('Rd  '));
       fillcolor.rgb.green = color.getDouble(charIDToTypeID('Grn '));
       fillcolor.rgb.blue = color.getDouble(charIDToTypeID('Bl  '));
       return fillcolor;
    Thank you

    Does this work in Photoshop CC? (edited)
    // 2014, use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var ref = new ActionReference();
    ref.putEnumerated( stringIDToTypeID("contentLayer"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    var layerDesc = executeActionGet(ref);
    var strokeSt = layerDesc.getObjectValue(stringIDToTypeID("AGMStrokeStyleInfo"));
    var strokeStyleColor = strokeSt.getObjectValue(stringIDToTypeID("strokeStyleContent")).getObjectValue(stringIDToTypeID("color"));
    alert (strokeStyleColor.getDouble(stringIDToTypeID("red"))+"\n"+strokeStyleColor.getDouble(stringIDToTypeID("grain"))+"\n"+strokeStyleColor.getDouble(stringIDToTypeID("blue")));

  • Events Click Set Property Fill Color does not work.

    Setting Stroke Color does work.  Setting Fill Color is accepted by the user interface, but nothing happens.  I was applying this to a Basic Circle Shape.
    Until this is fixed, my alternative is to define a "custom event".  I have assigned a name to a "custom event" but can find no way to define it's action.  Can anyone help me with this or point me to the documentation on this?
    Thanks.

    You also need to register the fields which you want F4 event to become active for.
    DATA: it_f4 TYPE lvc_t_f4,
            wa_f4 TYPE lvc_s_f4.
      wa_f4-fieldname = 'CONNID'.
      wa_f4-register = 'X'.
    *     wa_f4-GETBEFORE = 'X'.   "if you want to trigger before F4
    *      wa_f4-CHNGEAFTER = 'X'. "or just after it
      APPEND wa_f4 TO it_f4.
      CALL METHOD g_alv_grid_ref->register_f4_for_fields
        EXPORTING
          it_f4 = it_f4.
    Regards
    Marcin

  • New shape from layer - crash CS5

    XP 32 CS5 OpenGL or not
    3D New shape from layer - cone or whatever
    crashes CS5.
    1st time I use 3D - just trying.
    Could have done something wrong
    but should have got a warning instead
    of a crash.

    Regrds New Layer from 3d File
    http://http://picasaweb.google.co.uk/stephen.riche/Errors#5474358274068896850
    http://picasaweb.google.co.uk/stephen.riche/Errors#5474358276664750162
    Also twice I left my work rendering only to come back to find just my desktop, no photoshop
    heres my event log
    http://picasaweb.google.co.uk/stephen.riche/Errors#5474371881472758818
    It will post error regards New shape from layer ASAP
    Hope this helps, proving to be very frustrating
    My Info
    Adobe Photoshop Version: 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch]) x32
    Operating System: Windows XP 32-bit
    Version: 5.1 Service Pack 3
    System architecture: Intel CPU Family:6, Model:15, Stepping:11 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 4
    Processor speed: 2666 MHz
    Built-in memory: 3327 MB
    Free memory: 2376 MB
    Memory available to Photoshop: 1670 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Card Number: 1
    Video Card: NVIDIA GeForce 8800 GTX
    Driver Version: 6.14.11.9745
    Driver Date: 20100403225531.000000-000
    Video Card Driver: nv4_disp.dll
    Video Mode: 1920 x 1200 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce 8800 GTX
    Video Card Memory: 768 MB
    Serial number: <removed>
    Application folder: D:\Program Files\Adobe\Adobe Photoshop CS5\
    Temporary file path: C:\DOCUME~1\STEPHE~1\LOCALS~1\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 460.9G, 371.4G free
    Primary Plug-ins folder: D:\Program Files\Adobe\Adobe Photoshop CS5\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112
       ACE.dll   ACE 2010/03/10-08:31:04   61.423599   61.423599
       adbeape.dll   Adobe APE 2010/02/23-12:40:58   61.421986   61.421986
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0
       AdobeOwl.dll   Adobe Owl 2010/03/29-17:44:28   3.0.91   61.425789
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/03/04-10:02:26   61.281542   61.281542
       AdobePIP.dll   Adobe Product Improvement Program   5.0.0.2021
       AdobeXMP.dll   Adobe XMP Core   5.0   61.134777
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       AdobeXMPScript.dll   Adobe XMP Script   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   3,0,116,0
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00)   1.000000
       AFlame.dll   AFlame 2010/02/23-17:27:33   61.421976   61.421976
       AFlamingo.dll   AFlamingo 2010/02/23-17:27:33   61.421978   61.421978
       AGM.dll   AGM 2010/03/10-08:31:04   61.423599   61.423599
       ahclient.dll    AdobeHelp Dynamic Link Library   1,5,0,30
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       amtservices.dll   AMTServices   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       ARE.dll   ARE 2010/03/10-08:31:04   61.423599   61.423599
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1
       AXE8SharedExpat.dll   AXE8SharedExpat 2010/02/23-17:27:33   61.421978   61.421978
       AXEDOMCore.dll   AXEDOMCore 2010/02/23-17:27:33   61.421978   61.421978
       Bib.dll   BIB 2010/03/10-08:31:04   61.423599   61.423599
       BIBUtils.dll   BIBUtils 2010/03/10-08:31:04   61.423599   61.423599
       boost_threads.dll   DVA Product   5.0.0
       cg.dll   NVIDIA Cg Runtime   2.0.0015
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015
       CoolType.dll   CoolType 2010/03/10-08:31:04   61.423599   61.423599
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0
       dvacore.dll   DVA Product   5.0.0
       dvaui.dll   DVA Product   5.0.0
       ExtendScript.dll   ExtendScript 2010/03/05-08:21:15   61.423205   61.423205
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/02/24-17:43:58   61.131544   61.131544
       libeay32.dll   The OpenSSL Toolkit   0.9.8g
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0
       LogSession.dll   LogSession   2, 0, 1, 11
       MPS.dll   MPS 2010/02/24-17:43:58   61.421978   61.421978
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4053
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4137
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4053
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4137
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4053
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4137
       pdfsettings.dll   Adobe PDFSettings   1.04
       Photoshop.dll   Adobe Photoshop CS5   CS5
       Plugin.dll   Adobe Photoshop CS5   CS5
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   2.0.0.746
       PSArt.dll   Adobe Photoshop CS5   CS5
       PSViews.dll   Adobe Photoshop CS5   CS5
       SCCore.dll   ScCore 2010/03/05-08:21:15   61.423205   61.423205
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201
       TfFontMgr.dll   FontMgr   9.3.0.113
       TfKernel.dll   Kernel   9.3.0.113
       TFKGEOM.dll   Kernel Geom   9.3.0.113
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113
       updaternotifications.dll   Adobe Updater Notifications Library   1.0.0.64 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   1.0.0.64
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113
    Installed plug-ins:
       3D Studio 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Average 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0
       Camera Raw 6.0
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Clouds 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Collada 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Color Halftone 12.0
       Colored Pencil 12.0
       CompuServe GIF 12.0
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0
       Crosshatch 12.0
       Crystallize 12.0
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0
       Dicom 12.0
       Difference Clouds 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0
       Dry Brush 12.0
       Embed Watermark 4.0
       Entropy 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Extrude 12.0
       FastCore Routines 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Fibers 12.0
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Google Earth 4 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0
       Ink Outlines 12.0
       JPEG 2000 2.0
       Kurtosis 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Lens Blur 12.0
       Lens Correction 12.0
       Lens Flare 12.0
       Lighting Effects 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Liquify 12.0
       Matlab Operation 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Maximum 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Mean 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Measurement Core 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Median 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Mezzotint 12.0
       Minimum 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       MMXCore Routines 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0
       PCX 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Photocopy 12.0
       Photoshop 3D Engine 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Picture Package Filter 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Pinch 12.0
       Pixar 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0
       Pointillize 12.0
       Polar Coordinates 12.0
       Portable Bit Map 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0
       Radiance 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Range 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0
       Send Video Preview to Device 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Shear 12.0
       Skewness 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Smart Blur 12.0
       Smudge Stick 12.0
       Solarize 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Standard Deviation 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Sumi-e 12.0
       Summation 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Targa 12.0
       Texturizer 12.0
       Tiles 12.0
       Torn Edges 12.0
       Twirl 12.0
       U3D 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Underpainting 12.0
       Vanishing Point 12.0
       Variance 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Variations 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Video Preview 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0
       Wavefront|OBJ 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       WIA Support 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       Wind 12.0
       Wireless Bitmap 12.0 (12.0x20100407 [20100407.r.1103 2010/04/07:14:00:00 cutoff; r branch])
       ZigZag 12.0
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Access CS Live
       CS Review
       CS News and Resources
    Installed TWAIN devices: NONE

  • Changing color of shapes

    I have a lot of vector shapes which I need to modify the
    color of. I need to change the same colors to a different set of
    colors, is there a fast way to do this?

    there is! :) called 'edit multiple frames' here some info:
    http://forums.flashgods.org/editing-multiple-frames-t447.html
    however this writing doesn't include the concept that once
    you have 'selected' all of the needed frames, you can 'click' on
    one of the shapes within any frame (while they are all still
    selected) and then change them as a group. but this will only work
    with vector shapes, not graphics or MCs (which should work out for
    you just fine) but be careful that you only selected the shapes or
    layer(s) that have similar shapes you wish to change or it will
    change them all.

  • Remove 3D New Shape From Layer

    I've applied the 3D > New Shape From Layer command to an image. Now I'd like to remove the 3D shape and apply a different shape. Is there a way to remove the first 3D shape? I've searched, but haven't found a way to do it.

    Hi,
    From post #8 onward should be a new topic.
    To answer most basically, in order to not have part of a 3D mesh display you need to use opacity maps. This is supported in CS4. There also is a way to hide geometry (or make it invisible) but that won't accomplish what is being asked. It hides whole mesh groups, not just parts of mesh groups.
    If you just want to display the text mapped on a sphere, then you need to setup a matching opacity map. The steps to get this setup is pretty quick, if not discoverable (yes the UI has room for improvement). It can also be made so that the text is live and a single file controls both opacity mapping and text color. Finally, once created, a material can be saved out that can be used in the future to cut out some steps.
    Below are steps, but I haven't confirmed most gotchas. There is one known problem that shows up in the Layers panel (No indication that an opacity map is applied). Another thing is to make sure and save a copy of the final file so you don't overwrite the canned sphere.dae file.
    1) create new 1024 x 512 RGB with transparent background
    2) with Type tool, create a text string to fit middle third of document space
    3) save this file, and close
    4) go to File> Open and browse to Ps application folder> Presets> Meshes> Sphere.dae
    5) expand the 3D panel, select the Sphere_Material, then click the Diffuse map icon and select 'Load Texture...'
    6) select the text file created above to replace the current map file
    7) now click the Opacity map icon and select 'Load Texture...'
    8) again select the text file created above (ok the warning dialog)
    You should now just see text wrapping spherically . At this point you can save out a material preset to apply to any 3D shape without having to build the materail from scratch each time. And make sure to Save As..., closing the original Sphere.dae file without saving to keep that preset clean.
    To change the text again, just open the Diffuse map file in the 3D layer and edit the text layer. Saving the file will update on the model and affect the Opacity map as well (ie. change text string or size).
    Regards,
    steve

  • Can I change the fill color of an entire row based on what's selected in a pop-up menu in the first cell?

    I have a pop-up menu in the first cell of every row with three choices (and I may add more at a later date).  I want the fill color of the row to change depending on which thing is selected.  Is this hard to do?

    Hi,
    In essence the same as Wayne's answer, but with a slight modification to fit  to duplicate your 'color the whole row' specification. The final result, with Table 2 slid behind Table 1, is shown.
    Table 2 is a single column table with the same number of rows as Table 1. The table is resized to match the full width of Table 1.
    In A2, use the formula =Table 1::A2 to copy the value from that cell in Table 2. Fill the formula down through the rest of the column.
    Select all the cells in Table 2 (except the header row), and apply conditional formatting rules such as those below.
    Note that the Conditional Format rules are set to apply the same colour to text and fill in the cell, so that the text disappears.
    When Table 2 is ready, select it, then go Arrange > Send to Back.
    Before sliding Table 2 behind Table 1, Select Table 1 and use the Table Inspector to set the Cell Background to None (see red arrow in illustration). If This table has a Header column, you need to select the header cells independently and again set the Cell Background to None.
    Now select Table 2 and drag it to a position partially under Table 1. When you see the blue alignment guides on both sides, or at the top and bottom, of Table 1, release the mouse button and use the arrow keys to nudge Table 2 into its final position.
    Regards,
    Barry

  • Three Numbers questions:how do you change the auto default background or fill color from white to another color to use in multiple succeeding operations?  what is the formula to express the ratio of two numbers as a percent?

    Numbers questioons:
    -how do I change the automatic default background fill color so it stays a non white color?
    -what is the formula to express the ratio of two numbers as a percentage?
    -how do I create a signal formula to be sue against an entire column of data (for example, if I wanted to multiply the each cell in the column by the number 10)?
    -I have created a spreadsheet in Numbers with header and rows labelled and it contains formulas as well.  I now want to create a new 'blank' of this template with same header and row names and formulas, but without the cell entries from my earlier exerciser so I can use again in the future. How do I do this?

    Hi Matt,
    For short columns, the easiest method is to select the cell containing the formula, then grab the fill handle (small circle at the botom right of the selected cell) and drag down.
    For long columns, use either Jerry's suggestion (copy/paste) or Insert > Fill > Fill Down.
    Copy/Paste:
    Select the cell containing the formula. Copy
    Select from the cell containing teh formula to the end of the column. Paste.
    Fill Down:
    After entering the formula, and pressing enter...
    Click on the column reference tab to select the whole column.
    Command click on each cell above the one containing the formula to remove it from the selection.
    When cell with the formula is the top cell in the selection, go Insert > Fill > Fill Down.
    Pick whichever is easiest.
    Regards,
    Barry

Maybe you are looking for

  • How do I edit a PDF file that was created with Acrobat 6

    I was given a PDF catalog file from one of my manufactures to use on my web  site, I was told that I need to edit the file and take out the last page which  is for my eyes only not the public, but the way they instructed me to do so has  not worked,

  • Problem with CS5 patch tool

    Hi, I have this annoying problem with the patch tool that whenever I use it, i.e., drag the selected area to a new location it pastes the selected area as if it were smudged, such as feathered, and I practically can't use it. I have checked the selec

  • Buying from wish list?

    I don't seem to have the option to buy my wish list anymore - the icon "disappeared".  What am I doing wrong?

  • Unable to launch the Database Configuration Assistant

    I have installed Oracle 10g Database Release 1 and I can’t launch the Database Configuration Assistant (DBCA). The file c:\oracle\product\10.1.0\Db_1\bin\launch.exe does not exist on my computer. My intent is to design a simple database in Oracle for

  • Filtering Analog Signals

    I am currently using a PXI 6025E board to read an analog signal from a weigh station. The items that are being weighed are in motion so the signal contains some vibration from the item being in motion as it crosses the scale. I would like to be able