Flash Color Picker HELP

Im using Flash Pro 8. I've got a delima.. I need to take a
pic of a t-shirt and allow users to click on the collar, select a
color from the color picker, and then it will change the collar to
that color. The same idea will be put forth to the t-shirt itself
and the trim on the sleves.
Any help would be greatly appreciated.

People here like to help, but help us helping you:
Haver you allready started with something we can help with?
Do you want us to tell You if it is doable? (yes it is)
Do you want us to take you by the hand for ever step from noe
on?(just kidding, I don't mean to sound harsh, but it happes
sometimes)
Ust one or two quetions to point you int a direction?
Do you want the to select fron a palett of 10 (or whatever
number) or you want them to mix the colors themself?
Will you have to send the colors (and other data to as server
/ email) in the end?

Similar Messages

  • Color picker help

    I am in need of some help.  I've noticed that the color picker is different since using AE CC14.  Im sure its user error and I just don't know how to get it back to the normal color picker.  When I pick a color (doesn't matter if its a text layer, solid or a shape layer) I get this.  Its unhelpful because I like to be able to type in the color values to be precise.  Any ideas?
    Thanks,
    Joel

    I believe it's in preferences.  Something like "use system color picker"..

  • Color Picker - help needed..maybe for Barb B.

    I was using the color picker this afternoon and, all of a sudden, I noticed the ‘not safe for web’ cube alert.. and I have never noticed it before.   Any color I select from any image (including ones already posted on the internet) give me that warning… What did I do to bring this about?  I must have inadvertently clicked on something…
    Secondly, I also note that when I click on a color in the color picker I get a little circle that stays there…again.. what on earth did I do?
    Help???  Thank you!

    That "unsafe for Web" alert is an outdated relic from the ancient past of personal computing.  Just ignore it.
    The so-called "Web safe" colours never were of any use, just a misguided attempt at standardization.  Again, don't bother with it.
    Ken

  • Color Picker in Flash CS6 Changing My Picked Color

    Program: Flash CS6
    OS: Mountain Lion
    Hardware: Intel MacBook Pro 2012
    Steps to recreate issue:
    1. Paint a color on the stage (brown seems to have the most dramatic results)
    2. Use the color picker to sample the (brown) color from the stage
    3. Use the paint bucket to apply the selected color to the stage
    Result: the color painted from the sample color is not the color that has been originally sampled.
    If you then sample the new color you have just applied, it again changes the color. Repeating this process over and over again eventually turns the color into the brightest red on the color palette.
    Is anyone else have this issue or know how to correct it?
    UPDATED: Attached is a link to the video of the issue in progress. For whatever reason my cursor doesnt show up correctly in the video, but what I am doing is using the color picker to sample the color and then painting the sampled color. As you can see from the video, the color becomes more and more red until it maxs out, even though I am just sampling the same color over and over again. The color on the left is the control color (the one that I originally sample) and the color on the right illustrates the bug.
    video link:
    http://vid.ly/5x8u6d

    I'm updating this thread mainly because it's the only thread I could find that describes my exact issue. I am having this problem. When I select a color using the color picker, it settles on a different, lighter color. THIS HAPPENS EVEN WHEN I ENTER THE HEX CODE VALUE. It's like Flash is auto-correcting a problem that doesn't exist. Help? This is becoming a serious problem for me!
    Also Flash CS6, Mac OS X (10.8.2). The monitor I'm using shouldn't be relevant; Flash is literally changing the hex code value after I type it in or select it.
    EDIT: Just did some research, found out that Flash isn't 10.8 compatible. When is that going to be fixed?

  • Help making a panel w/ ability to use color picker/eyedrop

    First off I have no programing skills what so ever.
    I'm a tradition artist. And I'm trying to bring a little of that in to my work flow. I like working with a minimal color pallet. So I made a jpeg of one of my many color wheels that I made with watercolors based off of Michael Wilcox book "Blue and Yellow don't make Green" Great book.
    I also know you can get the color picker panel from http://www.anastasiy.com/
    But like I mentioned. I like working with minimal color pallet.
    O.K So I put the jpeg into a swf/image loader. With a couple of buttons.  I use a wacom. So I was going to hook that panel up to a button on my wacom pen. so I could pop it open and close it with a push of the button. I was hoping to be able to go to the color in the panel. Click and that be my for ground color. But that didn't work. I then tried the alt. button in brush mode and clicking in the panel. that doesn't work either. I know you can click in the image and drag to the panel to select  a color. But thats just not a good work flow. I want to pop the panel open and closed when I want it.
    I just want to be able to pop it open the panel. float over to the  color I want.  Pick it. Close the panel and keep painting. Like the swatch panel. But I like working with a color wheel. and I have way to many color wheels to make custom swatch pallets in a circular format.
    Any help would be very much appreciated.
    Thanks,
    scott g
    Heres a snap shot of what the panel looks like.

    Way cool!!!!
    Thanks so much!
    Attached is the non-embedded version.
    It takes the picture from Colors.png, in the same folder as the flash.
    If permissions are not set, it will show an error message.
    Wow! I get excited just thinking of the possibilities!
    PS: Modified source code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init();">
       <mx:Script>
          <![CDATA[
             import com.adobe.csxs.core.CSXSInterface;
             import com.adobe.csxs.types.*;
             public var bitmapData:BitmapData;
             // Set bitmap from image MyPic
             public function setBitmap():void
                 bitmapData=new BitmapData(MyPic.width,MyPic.height);
                 var matrix:Matrix = new Matrix();
                 try{
                 bitmapData.draw(MyPic,matrix);
                 catch(error:Error)
                     Text.opaqueBackground = 0xffffff;
                     Text.text = error.message;
             public function init():void{
                CSXSInterface.instance.evalScript("PhotoshopRegisterEvent", charToInteger("setd").toString());
                CSXSInterface.instance.evalScript("PhotoshopRegisterEvent", charToInteger("Rset").toString());
                setBitmap();
             public function charToInteger(keyword:String):Number{
                var value:Number;
                value  = keyword.charCodeAt(0) * 256 * 256 * 256;
                value += keyword.charCodeAt(1) * 256 * 256;
                value += keyword.charCodeAt(2) * 256;
                value += keyword.charCodeAt(3);
                return value;
             public function updateColor():void
                 CSXSInterface.instance.evalScript("setForeground",
                                bitmapData.getPixel(MyPic.contentMouseX,MyPic.contentMouseY).toString());
          ]]>
       </mx:Script>
       <mx:Image x="0" y="0" id="MyPic" source="Colors.png" click="updateColor()"/>
       <mx:Text id="Text"/>
    </mx:Application>

  • My Adobe Flash CS6 Color Picker has ODD colors. I'm using Mac Mini OSX 10.8.1. Is there a fix?

    My Adobe Flash CS6 Color Picker has ODD colors. I'm using Mac Mini OSX 10.8.1. Is there a fix?
    I click on the color picker and where I have seen the normal #0000ff blue color on my windows computer, this mac Mountain lion version shows a purple-ish color. Oddly, If I enter the hex # into the color picker, and use it as a fill, the correct color displays on the stage but when i use the eyedropper on that color, it shows it as the purple color again on the toolbar.
    I've seen a similar thing like this happen when using adobe photoshop. However, the usual solution is to just make the managed color profile set to monitor RGB. The only downside with Flash is there is no preference to set that. The color palette in Adobe Photoshop displays as it should with the correct blue.
    I should also note that I'm using a Samsung 941bw monitor with my mac mini which could also be part of the problem.
    I figured i'd make this post anyway just in case it's the OS & Adobe Flash CS6 and not the monitor.
    I've included a screenshot as well that shows that i've chosen the purple color and then made a rectangle shape on the stage and it comes out blue.
    Thanks ahead for your response(s)
    -Line

    Seems misleading that on the adobe site for Adobe Flash CS6 it says:
    System requirements:
    Mac OS X v10.6.8 or v10.7. Adobe Creative Suite 5, CS5.5, and CS6 applications support Mac OS X Mountain Lion (v10.8) when installed on Intel based systems.**

  • Color Picker scripting or Levels algorithm help

    First question is: Does anyone know of a good explanation of the Levels algorithm as in how each setting affects a pixel in an image. If I change the midpoint of the levels, how would a specific pixel change in relation to that? I've been experimenting for hours and can't figure a common factor other than it seems to be a binary type relationship. The reason I ask this is because I'm trying to script something that will balance colors.
    If that method isn't practical, I can go to the old fashioned trial and error method but this way also presents a roadblock to me. I set a color picker point and the script can obtain the values from that point exactly as it is in the Info panel. If I put a levels adjustment layer over top and adjust it, I now see the original color value and the adjusted color value in the Info panel, but I can't figure out how to obtain the adjusted value with a script. It still returns the original value. Does anyone know a way to obtain the adjusted value?
    I hope I explained this right.

    Thanks, Michael.
    I'll have to look through that post on ps-scripts.com in more detail. That might be what I need.
    This little snippet you wrote:
    Michael L Hale wrote:
    This thread may help with the levels part. http://ps-scripts.com/bb/viewtopic.php?t=2498
    As for the adjustment layer you need to get the color twice. Once with the adjustment layer visible then again with it not visible.
    var csColor = activeDocument.colorSamplers[0].color;
    activeDocument.layers.getByName('Levels').visible = false;
    var csColor2 = activeDocument.colorSamplers[0].color;
    alert( csColor2.rgb.red + " : " + csColor.rgb.red );
    doesn't get me the before and after values. Example: The point I selected has a red value of 226. I added a Levels adj layer on top and moved the midpoint so the red value at that point (adjusted) was 234. I ran your code and it came back with 225.591439688716 : 225.591439688716. It isn't showing the adjusted value of that point.

  • Flash CC Color Picker defaults to Red Channel every time opened

    I recently upgraded to Flash CC, and am having an issue when opening the Color Picker to adjust a palette color.
    When the Color Picker opens, the Hue radio button is selected (H), but the visual palette selection on the left is showing the color spectrum as if the Red Channel (R) was selected.  I have to click on the "H" radio button every time the Color Picker is opened to refresh that selectable area on the left to show the correct information instead of the Red spectrum.
    In previous versions (ie Flash Pro CS5) it would remember which palette system you use (Hue, Saturation, etc.) and always use that when you re-opened the color picker.  Now this is forcing me to reselect my preferred palette every time I open the color picker.  This is not just happening when I restart Flash -- this is every single time the picker is opened, within the same session, within the same document, seconds apart.
    All of the computers in the office with CC licenses are also seeing this behavior.  Is this happening for everyone, and is there a solution to have it correctly show the palette system I've selected?
    I'm using Flash CC on Windows 8.1.

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled extensions that are not compatible on the next start in "Tools > Add-ons > Extensions" then click the "Find Updates" button to do a compatibility check.

  • Phototshop Elements ver. 11.0 color picker tool misfiring- help!

    The color picker tool is suddenly not working correctly in photoshop elements editor ver. 11.0. I've reset the tool, reset all tools and closed/ opened the program several times.
    Still not woring correctly- help ?

    What happens when you try to use it? Are you sure that you're targeting a layer with something in it, not an adjustment layer, say?

  • My PS4 opens an Adobe help site in browser when opening Color Picker...!

    Hi guys,
    just as in subject,
    sometimes (there is no rule) when i'm opening a Color Picker window and moving cursor on the palette - my internet browser opens Adobe help site...
    It's horrible! When i try to get back to PS it immidiately starts another tab, and another it takes less than 1 second...
    Did you ever noticed a bug like this or maybe you have a ready solution.
    Thanks for help guys!
    Piotras Poland

    Do you have a wireless keyboard?  I am wondering if you are getting an erronious 'F1' being sent.  If yes to the wireless keyboard, then maybe a driver issue.  Or maybe faulty hardware.  Do you have another keyboard you could swap out?

  • HELP !  why doesn't color picker select specific color ? i make secondary layer and use the tool but no colors are selected and the gray out menu shows nothing !

    HELP !  why doesn't color picker select specific color ? i make secondary layer and use the tool but no colors are selected and the gray out menu shows nothing !
    what am i missing ??!!

    Please add you system info and SpeedGrade version and build number if you actually want help.

  • How to stop the [Annoying] Color Picker box from popping up on Illustrator CS5; Please Help!

    Yes, I'm talking about that box. It can get very annoying to constantly go back and forth to exit it out. I'm sure there should be some preferences option *somewhere* on Illustrator CS5 where you can prevent that annoying box from popping up all the dang time. It's almost like an ad. If the creators can make it automatically pop up, then there should be a way to turn off that feature. Otherwise this should be listed as another aggravating Illustrator feature that needs to get fixed.

    This has to be the most annoying thing in Illustrator and has been for the years I have been using it. I click on that icon to switch between having the stroke and fill selected, and it pops up the color panel in place of my swatches panel which is what I need.
    Let's say I have a swatch in my swatches panel that I want to use as the stroke for an object. I currently have the fill selected to work with, so I go down and click the stroke icon (shortcut for that is X but I prefer not to use the shortcut for that function). I then move back over to where my swatches panel is normally, but the damn color panel is covering it now! So I need to make an extra click back over to the swatches panel so I can use it. Such a minor little thing but so incredibly annoying.
    I usually work with a subset of colors in the swatches panel and when I need to use a color picker, I simply doubleclick on the fill/stroke icon on the toolbar. Thus, the color panel is completely useless to me in most cases.
    If I close a panel, any panel, it should not pop up unless I specifically go to the Window menu to enable it.

  • Help please - color picker is gone in photoshop cs4

    for some reason, when i saved files as gif, i could not reopen them. i would get some error message. so i read somewhere to shut down photoshop and restart it while holding down the ctrl + alt+ shift keys to reset it to all the defaults.
    i did this but now when i click the foreground or background color squares at the bottom of the toolbar, i get some stupid color window with 48 Basic Color squares and a couple likes of blank squares for Custom Colors.
    no matter what i try resetting, i can no longer get the color picker and i have no way of finding hex colors.
    does anyone know where my color picker window has gone!
    thank you!

    thank you chris.
    that windows vs adobe color picker seems like a very well kept secret.
    even if someone knew EXACTLY what to search for: "change color picker"
    -- only the page you mentioned and one other
    (http://www.photoshopgurus.com/forum/photoshop-troubleshooting/4946-color-picker-change.htm l)
    mentions the Windows vs. Adobe option.
    the other 8 results that come up on page 1 of google for "change color
    picker" make no mention of the Windows color picker option.

  • So I need a little help with the Flash Colors

    I always use the Red, Blue and Green gradient Flash colors below for metalic stuff, but how can I get the effect in this red color in different colors like Yellow?

    If you want to use the preset gradients, what you could do is first color whatever area you intend to with one of them, and then select the fill and use the Color panel to change the red to whatever other color you prefer.   If you have never worked with the gradient section of the Color panel, you will probably find it a bettter tool to create and fine-tune transitions.
    You just doubleclick that little red square in the lower left and it opens a color swatch like the one you showed to select another color

  • Color picker bug in photoshop CC

    Hey guys,
    Has anybody seen this bug yet.
    This will pop up on a new document when trying to change colors. It shows with the color picker, the swatch panel, hitting d or x. However alt-backspace and ctrl-backspace work.
    Rebooting photoshop does not help, nor does shift, alt, ctrl on reboot.
    At first I thought it was the document itself, but it also occurs with file>new>web 800x600.
    If it helps, the error does not show with no document open (all documents are closed)
    And now for my specs:
    Adobe Photoshop Version: 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:12, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 6
    Logical processor count: 12
    Processor speed: 3325 MHz
    Built-in memory: 16375 MB
    Free memory: 12455 MB
    Memory available to Photoshop: 14711 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1124.2)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6570
    Display: 1
    Display Bounds: top=0, left=0, bottom=960, right=1280
    Video Card Number: 1
    Video Card: AMD Radeon HD 6570
    Driver Version: 12.104.0.0
    Driver Date: 20130328000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1280 x 960 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 6570
    Video Card Memory: 2048 MB
    Serial number: 90970571475060932452
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\BRUCEO~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 1.81T, 933.9G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/03/19-12:09:02   79.535293   79.535293
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1768  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/03/29-12:09:59   79.536232   79.536232
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/03/19-12:09:02   79.535293   79.535293
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/03/19-12:09:02   79.535293   79.535293
       BIBUtils.dll   BIBUtils 2013/03/19-12:09:02   79.535293   79.535293
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30158   2.1.6.30158
       CITThreading.dll   Adobe CITThreading   2.1.6.30158   2.1.6.30158
       CoolType.dll   CoolType 2013/03/19-12:09:02   79.535293   79.535293
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.37  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       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   12.0  
       LogSession.dll   LogSession   2.1.2.1756  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 0000/00/00-00:00:00   1.   1.
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Accented Edges 14.0
       Adaptive Wide Angle 14.0
       Angled Strokes 14.0
       Average 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bas Relief 14.0
       BMP 14.0
       Camera Raw 8.1
       Camera Raw Filter 8.1
       Chalk & Charcoal 14.0
       Charcoal 14.0
       Chrome 14.0
       Cineon 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Collada 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Color Halftone 14.0
       Colored Pencil 14.0
       CompuServe GIF 14.0
       Conté Crayon 14.0
       Craquelure 14.0
       Crop and Straighten Photos 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Crop and Straighten Photos Filter 14.0
       Crosshatch 14.0
       Crystallize 14.0
       Cutout 14.0
       Dark Strokes 14.0
       De-Interlace 14.0
       Dicom 14.0
       Difference Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Diffuse Glow 14.0
       Displace 14.0
       Dry Brush 14.0
       Eazel Acquire 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Embed Watermark 4.0
       Entropy 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Extrude 14.0
       FastCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fibers 14.0
       Film Grain 14.0
       Filter Gallery 14.0
       Flash 3D 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fresco 14.0
       Glass 14.0
       Glowing Edges 14.0
       Google Earth 4 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Grain 14.0
       Graphic Pen 14.0
       Halftone Pattern 14.0
       HDRMergeUI 14.0
       IFF Format 14.0
       Ink Outlines 14.0
       JPEG 2000 14.0
       Kurtosis 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Lens Blur 14.0
       Lens Correction 14.0
       Lens Flare 14.0
       Liquify 14.0
       Matlab Operation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Maximum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mean 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Measurement Core 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Median 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mezzotint 14.0
       Minimum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       MMXCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mosaic Tiles 14.0
       Multiprocessor Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Neon Glow 14.0
       Note Paper 14.0
       NTSC Colors 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Ocean Ripple 14.0
       Oil Paint 14.0
       OpenEXR 14.0
       Paint Daubs 14.0
       Palette Knife 14.0
       Patchwork 14.0
       Paths to Illustrator 14.0
       PCX 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Photocopy 14.0
       Photoshop 3D Engine 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Picture Package Filter 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Pinch 14.0
       Pixar 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Plaster 14.0
       Plastic Wrap 14.0
       PNG 14.0
       Pointillize 14.0
       Polar Coordinates 14.0
       Portable Bit Map 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Poster Edges 14.0
       Radial Blur 14.0
       Radiance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Range 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Read Watermark 4.0
       Reticulation 14.0
       Ripple 14.0
       Rough Pastels 14.0
       Save for Web 14.0
       ScriptingSupport 14.0
       Shake Reduction 14.0
       Shear 14.0
       Skewness 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Smart Blur 14.0
       Smudge Stick 14.0
       Solarize 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Spatter 14.0
       Spherize 14.0
       Sponge 14.0
       Sprayed Strokes 14.0
       Stained Glass 14.0
       Stamp 14.0
       Standard Deviation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       STL 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Sumi-e 14.0
       Summation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Targa 14.0
       Texturizer 14.0
       Tiles 14.0
       Torn Edges 14.0
       Twirl 14.0
       Underpainting 14.0
       Vanishing Point 14.0
       Variance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Variations 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Water Paper 14.0
       Watercolor 14.0
       Wave 14.0
       Wavefront|OBJ 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       WIA Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Wind 14.0
       Wireless Bitmap 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       ZigZag 14.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE

    Here is the error log file.
    2013:06:24 01:24:21 : tracked key 0000000000000118 of type struct _ADsc * __ptr64 not found : 1 : REQUIRE failed
    2013:06:24 01:24:21 : e:\ps13\ps_14_win_x64_daily_retail\20130423.r.221\photoshop\main\photoshop\interfaces\UTr ackResourceImp.h : 137 : REQUIRE failed
    2013:06:30 01:08:13 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:06:30 01:08:19 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:06:30 01:08:24 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:52:51 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:03 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:06 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:08 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:12 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:14 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:18 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:22 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:27 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:31 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:37 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:44 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:53 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:55 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:57 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:59 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:54:40 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:54:43 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:54:53 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:55:21 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:55:25 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:55:28 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:56:20 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:56:36 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:57:28 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:58:15 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:58:21 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:58:23 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:02 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:29 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:39 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:46 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:00:08 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:07 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:12 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:25 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:30 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:33 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:35 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:48 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:51 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:55 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:07:16 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed

Maybe you are looking for

  • My itunes library does not show up in apple tv

    I am using a Dell computer and my itunes library does not show up in my apple tv under computer.  I am sure I just need to change settings in my computer to allow access to apple tv but I do not know how to do that. Any help?  My apple tv has interne

  • How to connect my laptop to the internet using my iphone?

    Hello, I've just change from my former Nokia N95 to the iphone 4 (on Tmobile Germany) and I'm totally thrilled because this new device is just fantastic! However, I could easily connect my macbook via bluetooth to connect to the internet occasionally

  • Pixelmator vs. Adobe Photoshop Elements 6

    Hello, I didn't find good category for this post so I will write here. I need small help in choosing graphic editing program. Now I work on old version of Photoshop Elements 4. It's quite good because it is compatible with psd (more or less depends o

  • Problem with creating bXML from SAP Business Connector Lookup screen

    I used to be able to use the SAP BC 4.7 SAP Lookup screen to view, cut & paste a bXML representation of a BAPIs inputs and outputs but it doesn't seem to work following a recent support pack installation on R/3 v46c.  After clicking the 'bXML' button

  • QoS Traffic shaping and peak shaping

    Hi, Could somebody tell me what is the difference between traffic shaping and peak shaping? Kind Regards.