Skins Question

I have worked in flex 3 for a while and I am trying to wrap my head around skins. I see how they work but my question is, how do you configure the skin in the mxml component that is using it? For example:
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/halo"
    skinClass="com.company.components.skins.GradientSkin">
How do i pass params to that skin to tell it what color the gradient should be? Also my skin defines the content area group which from what I can tell replaces teh padLeft,padRight etc. How would I specify in the application what the padding is? I don't want to put that in the skin class as hard coded because I cannot reuse it then.
Any thoughts on how I am looking at this incorrectly or what I can do to paramatize my skin cleanly? Thanks.

This was what I was looking for. I am 98% of the way there now. I implemented as you suggested but I still am not getting it right.
I removed almost all the code to make this as simple as possible. I just wanted to get a gradient on the applications background. Here is what I have.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    skinClass="com.ericsson.components.skins.GradientSkin"
    width="100%" height="100%">
    <fx:Style>
        @namespace s "library://ns.adobe.com/flex/spark";
        s:Application
            skinGradientRotation:90;
            skinGradientStartColor:#000000;
            skinGradientEndColor:#FFFFFF;
    </fx:Style>
</s:Application>
And the skin
<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/halo">
    <fx:Metadata>
        <![CDATA[
            [HostComponent("spark.components.Application")]
        ]]>
    </fx:Metadata>
    <s:states>
        <s:State name="normal" />
        <s:State name="disabled" />
    </s:states>
    <!-- fill -->
    <s:Rect id="backgroundRect" left="0" right="0" top="0" bottom="0">
        <s:fill>
            <s:LinearGradient rotation="{hostComponent.getStyle('skinGradientRotation')}">
                <s:GradientEntry color="{hostComponent.getStyle('skinGradientStartColor')}" />
                <s:GradientEntry color="{hostComponent.getStyle('skinGradientEndColor')}" />
            </s:LinearGradient>
        </s:fill>
    </s:Rect>
    <s:Group id="contentGroup"/>
</s:Skin>
I even added a trace of the rotation value and its comming back as undefined. So I think I'm not quite linking the css right.
Any ideas? Also I plan to use HostComponent("mx.core.UIComponent") so its reusable for other classes. Is that legitamite to use the baseclass?
Thanks for all your help.

Similar Messages

  • Two Skins Questions

    I have two questions which I've seen asked elsewhere on this
    forum but not answered. I'll try them again :-D
    Fist, I can create a custom skin and apply it to my project
    at time of generation, but it does not appear in my Project Set-up
    pod for further customization. How can I get it to appear? Or, how
    can I get it zipped and added to my gallery so that I can simply
    create from gallery?
    Second, I'm having trouble predicting the behavior of my
    custom image buttons in the generated help project. How can I find
    out the dimensions I should use for the Contents, Glossary, Index,
    Search buttons and some tips for getting them to render as desired?
    For example, if I background image with a gradient and transparent
    images for buttons, some of them display at or near the specified
    height, but others do not. Any idea how RoboHelp deals with the
    images? What sizes I can use?
    Thanks in advance.

    So for the second issue, I've determined that Firefox and IE
    render my images differently position-wise. Anybody know if there's
    a document for designing cross-browser compatible skins?

  • ADF SelectInputDate skin questions

    Hi everyone,
    i'm creating a skin for my adf project and i have some questions about the selectinputdate component:
    - Can i change the navigation icons in calendar with the af|selectInputDate::nav-link selector (and how)?
    - How can i changed de background color for the window tha display the calendar component, i play with selectInputDate selectors without success.
    - How can i changed days numbers colors, i play with af|selectInputDate::content selector without success (i can change only inactives days colors).
    Thanks, Eduardo.

    Hello, Here's the answers to your questions:
    - Can i change the navigation icons in calendar with the af|selectInputDate::nav-link selector (and how)?
    The best way to change the navigation icons is with the 'icon' keys: next-icon and prev-icon. You can use an <img> or text. The default in the simple skin is text : "<" and ">". If you want to use an img instead, then you'd skin it like this:
    af|selectInputDate::next-icon {
    content: url("...");
    You could use background-image on the ::nav-link, but it is a CSS problem with making enough visual space to show up the image. For example, we have created aliases in our 11g ADF Faces components for clickable images and to make them visible, we had to add padding, etc.
    .AFClickableImageAnchor:alias {
    font-size: 14px;
    padding-right: 16px;
    margin-left: 1px;
    margin-right: 1px;
    background-repeat: no-repeat;
    background-position: bottom left;
    @agent ie {
    .AFClickableImageAnchor:alias {
    display: inline-block;
    - How can i changed de background color for the window tha display the calendar component, i play with selectInputDate selectors without success.
    You can't style a popup's background color dependent of what component is in it.
    - How can i changed days numbers colors, i play with af|selectInputDate::content selector without success (i can change only inactives days colors).
    You c an use af|sID::content A {color: aqua}.
    We don't have a hook in place that you can use that doesn't expose HTML. We'd rather you not use HTML in the selectors, but if that's all you have, then there's no way around it.
    Also, you can use Firebug and disable the content compression to help you with skinning.
    Content compression compresses the styleclasses from their full name to short names, like x10. Viewing the full name makes skinning easier, but it should only be done during skinning development because of performance reasons -- the rendered pages will be larger with content compression turned out.
    For turn off content compression in 10.1.3, you set in web.xml the
    oracle.adfinternal.view.faces.DISABLE_CONTENT_COMPRESSION to true
    - Jeanne

  • FLVPlayback custom skin question

    Hi all,
    Does anyone know if there is a way to achieve a spread of the
    video control elements from relative to one of the elements being
    centred horizontally (e.g. the play/pause button) and the others
    spread to the left or right either side of it.
    I can get my head around the anchorLeft and anchorRight
    properties, but I can't see how to achieve the above (I have a new
    circular play/Pause button that I want to stay in the center, with
    mute and volume bar on the left and stop and seekbar on the right).
    Does anyone know how to do this? After loads of experimenting, I'm
    almost ready to dig inside the FLVPlaybacks UIManager (almost, but
    not quite - hence this plea).
    I have the new skin working at a fixed width by switching off
    all the anchoring/resizing and setting everything at a fixed size.
    But its only suitable for one width of player if that's the case -
    far from ideal. Just wondered if I was missing something simple....
    please let me know if you've worked through something like this
    before. Thanks, GWD

    I just figured out how to do it. Actually digging around in
    the UIManager was what I needed to do...I shouldn't have been so
    reluctant to do that because that's where the instructions for how
    to do it were hidden away from plain sight as comments at the
    beginning of the class file...lol.
    Each element in the skin can have its own layoutSelf 'method'
    which gets called after the UIManager does its work. So you can
    write the code to do it in the skin swf itself.
    Hope that saves someone else some time. This is for the as2
    version of FLVPlayback...don't know if its the same for as3. I'll
    get there soon.

  • Quick skinning question...

    Hi,
    I am using VBox and HBox as a container for a dynamic Website. Users can change the colors of these containers dynamically to match their design. However, because they can select the color, the container is very basic; it contains a solid background color and a solid border color.
    This is all good and well, but I would prefer to jazz up the basic solid color container so it does not look so plain and cheesy. What I would like to do is use the solid background and border, but ADD a semi-transparent skin ON TOP of the background/border. For example, if I wanted to add some glare to the container, I could create a semi-transparent white PNG file with an image of the glare shape. If I could then load it is a Skin that would lay ON TOP of the background/border, the semi-transparent white would make the background lighter, looking like it has a glare.
    I tried adding the glare image to 'skin' 'background-skin' and 'background-image' in my css style declarations for '.box'. The 'skin' and 'background-skin' had no effect, whereas the 'background-image' just covered the background color/border, but did not 'stretch' to match the container size, and the background color would not bleed through.
    I am not sure if there is a practical way to do this. I am more of a developer, so any front-end Flex Designers that know how to do this I would appreciate your help very much.
    Thank you,
    Jesse

    For targetted skinning use the styleClass attribute. So you would have a style definition using that class. For e.g.
    af|inputNumberSlider.STYLE1::plus-icon
    visibility: show;
    }Then use the styleClass attribute in your component
    <af:inputNumberSlider label="rwtt" id="ins1" styleClass="STYLE1"/>

  • A few skinning questions

    Im new with Flex and I have a few questions.
    1. How do I set a background image for a DateChoose
    component?
    2. How do I remove the ugly border when I focus a TextInput
    component?
    3. How do I set a Button component's icon to be positioned
    under the label, rather than to the left of it?
    4. Is there any way to set positions (or left, right, top and
    bottom styles) inside the css file rather than as a tag attribute?
    5. How do I set a DataGrid's row to a background image
    6. How do change a DataGrid's border colors?

    Anyone?

  • Skin question

    Hi,
    I move my code from SDK 3.5 to 4.5, they look different and more clear but we want to keep the same generic colors at the halo colors.
    It is a skin that match sdk 3.5 component somewhere?
    In Flex themes I see the halo as a template, if i use this theme, do I have some performance price?
    Please advice.
    Thanks

    The Halo theme is the same skins from 3.x, but there aren’t equivalents for the Spark components.

  • Flex 4 skin question

    I am looking into Flex SDK skins and see a reference to hostComponent. What is it exactly for?

    The hostComponent attribute is a reference to the component instance that the skin is currently attached to. It is a convenient way to access properties or methods from the component.
    In general, you want to push data from the component to the skin. However, on occasion, you need to pull information from the component to the skin and hostComponent provides a way to do that.

  • Jdev11g R1: af:inputDate readonly mode and skinning question

    Hi,
    I have an af:inputDate with readonly mode activated. This hides the border of the component, reduces its width and hides the icon. I need to show a field where the user can't modify the date manually but can select the date with icon. Using css I can solve all except the icon. I can't show it with readonly mode activated (and I need readonly because the user cannot modify the date manually).
    Any suggestion?
    Thanks,
    JVN

    Frank,
    I try with this code:
    <script type="text/javascript">
    function toReadOnlyMode (event) {
      var comp = event.getSource();
      var popup = comp.getPeer()._getPopup(event.getSource());
      popup.show();
      //popup.focus();
      var glyph = component.getPeer()._getGlyph(event.getSource());
      glyph.focus();
    </script>
    <af:inputDate id="testDate" clientComponent="true">
         <af:clientListener method="toReadOnlyMode" type="focus"/>
    </af:inputDate>Without luck. Please, could you help me?
    Thanks,
    JVN

  • Questions about using skins in online and local help

    Caveat: I'm a very new RoboHelp users, somewhat self-taught, so my questions may be very rudamentary, but I can't quite find them in the (very meager) Adobe help.
    In a previous version of the Help (created by my predecessor), the local Help (.chm) looked like this, i.e., no skins:
    The online Help looked like this--i.e., it had the skin:
    First question: why doesn't the local help have the skin? Is this a setting?
    Second question: In a newer version of the help that I created, both versions of help look like the local Help above--no skins.  How do I make the skins display?
    Third question: We localized to French. When I open FR online Help and right-click a help topic (to open in a new tab) the page displays as below, with the "Montrer" standing in for what is "< Show Contents" in English (see below). This content is incorrect in French, and should be "Afficher le sommaire" ("Show Summary"). 
    Where do I find the source for this piece of content, so that I can correct it?  I've looked in the skins file, but didn't see anything that would qualify.

    Okay, so I read through the second bit you sent, Rick (after a few deep breathing exercises!) and understand that somehow, we need to change how the developer calls the URL ... yes?
    Oh, and the default file I select is the one that is automatically opened, yes?  So at least that's going right. 
    Inside your help, you have a few folders with topics inside each folder. So if you just issue the basic http://www.somesite.com URL, all you get is the default topic. But you want Topic13.htm which happens to be inside folder C. Now you could link directly as inhttp://www.somesite.com/Help/FolderC/Topic13.htm and that would present Topic13.htm but it would not have the frameset (skin) surrounding it. Instead, it would likely have a "Show" link. And when the user clicked the Show link, the full frameset would appear and Topic13.htm would then be loaded in the topic pane.
    To make this happen with a basic link, the URL would look like this:
    http://www.somesite.com/Help/Index.htm#Folder C/Topic13.htm
    And this refers to the remote help, not the local CHM, yes?
    Historically, I just give them the location of the files, i.e, they're at: http/onlinehelp.companysite.com/help/productname/version/language/mjwin_help.htm (which is the name we've been using, though I will someday want to change that as it references an older version of the brand ... but first things first). 
    I ran a test in which I  I generated and posted the files to the correct location on the server (and identified the default topic I wanted in the SSL).  I sent this exact URL to the developer to include in this morning's build.  According to what you have indicated, since I'm not asking the Help to do anything but open up to the default topic, I should get a) the default topic and b) the skins.
    I did not get this result. 
    Could there be something going on on the developer end?  I ask this because I had problems with Map IDs, which turned out to be that they weren't telling me that some UI elements called context-sensitive help and therefore those pages needed to be linked to the correct map ID. (Like me, some of the members of that department are new to their positions ...)
    Kasey (still tearing hair out ...)

  • Question on the new Skin Editor

    Dear All,
    I have a question regarding the Skin Editor that comes with the new JDev version. I was able to see a demo of the skin editor wherein you could
    change the background color etc of all components.
    My question is, is there a feature in it that can turn off those rounded corners in some of the components?
    My clients doesnt want rounded corners on accordions and tabs and they prefer it straight edges.
    Does anybody have an idea on this?
    Thanks!

    Hi,
    yes. The rounded corners are images that you can change through skinning. Have a look at the skinning documentation
    http://download.oracle.com/docs/cd/E21764_01/apirefs.1111/e15862/toc.htm
    and look for af|panelTabbed
    Frank

  • InputNumberSlider component skin - quick question

    Hi All
    We have in our jsff
    <af:inputNumberSlider label="" id="ins1"
    disabled="true"
    value="#{row.ei}"
    inlineStyle="font-size:xx-small;text-decoration:line-through;height:30px"
    simple="true"/>
    We want to modify the look of the inputnumberSlider component using our qe.css as follows:
    af|inputNumberSlider::plus-icon
    visibility: hidden;
    display: none;
    af|inputNumberSlider::minus-icon
    visibility: hidden;
    display: none;
    But we're not seeing the changes, the + and - symbols are still there. Also the max and min markers are there. how can we removed them ?
    We have another selector in our qe.css and it works to modify the train component, so its not an issue with skin configuration.
    Thanks

    Hi,
    Have you tried with
    af|inputNumberSlider::plus-icon {
    content: '';
    af|inputNumberSlider::minus-icon {
    content: '';
    }-Arun

  • Question about 3-in-1 Skin pack for Creative Zen 4GB/8GB/1

    Do the skins included in this pack protect the screen as well? or just the player and the controls?

    No, they do not protect the screen, you will need to pair it with the screen protector for it. The Skin just protects everything apart from the screen.

  • Basic Flash question: add skin and still keep hyper link

    Using CS4 Creative Suite. I little or no action script skills.
    I created a 2 minute flash .fla file. At the end I added a button that when clicked, opens a window to another site. When I exported as an .swf file, the button worked fine. When I added the .swf file to an html page it worked fine too. The problem came when I wanted to add a skin with video controls.
    I went through the tutorial which says I need to import the my video as a FLV or F4V file. The ony way I could do that was to export my FLA file as a MOV file and convert it to a FLV file in Adobe Media Encoder CS4. But when I did that I lost my link at the end.The video controls work great but how do I add the hyper link back in?
    And why the heck can't one export a FLV file from Flash?
    Thanks!

    (this message is so old the responses were lost during an adobe conversion a few years ago.)
    the answer to the op's issue, is that you can't create an flv that executes actionscript.  however, you can create an flv that contains cuepoints and the cuepoints can trigger actionscript to execute.
    so, the op should add a cuepoint to the end of the flv (or, if using as3, just use an Event.COMPLETE event listener for the flvplayback component) to detect the end of the flv and trigger the navigateToURL code.

  • CS6 Beta questions: skin tones, camera calibration in Camera RAW

    While this is supposed to be a fully functional version, I am missing the Patch and Move content aware tools, the Skin Tones function does not work, there is no camera calibration except for Adobe Standard available under Camera RAW 7.0 and none of the links uder "Help" work.  When I try to look for updates I am assured that I have the latest version.  Does this sound right to you?  Am I just not looking in the right places for these features or are they indeed not available in Beta, in which case it is of course impossible to try them out.

    Thanks very much, Pattie.  I was not holding down the Healing brush.  That all works fine now.  However, what about camera profiles for camera calibration in Camera Raw 7.0 and why don't the skin tones work?  I am using a reasonably new HP laptop with plenty of horsepower and Windows 7.  Here is my system info.  Can you help further?
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 1995 MHz
    Built-in memory: 4044 MB
    Free memory: 853 MB
    Memory available to Photoshop: 3447 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    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.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: Radeon (TM) HD 6770M       
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1024, right: 1280
    Video Card Number: 2
    Video Card: Radeon (TM) HD 6770M       
    OpenCL Unavailable
    Driver Version: 8.830.6.2000
    Driver Date: 20110412000000.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:
    Video Card Caption: Radeon (TM) HD 6770M       
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Video Card Number: 1
    Video Card: Mobile Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.830.6.2000
    Driver Date: 20110412000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumdx32,igd10umd32,igd10umd32
    Video Mode: 1280 x 1024 x 4294967296 colors
    Video Card Caption: Mobile Intel(R) HD Graphics
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Michael\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 682.5G, 559.7G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: C:\Program Files (x86)\AKVIS\
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       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 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       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  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       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.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       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  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       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   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       ArtWork 6.0.1491.8030
       Sketch 13.0.2473.8439
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

Maybe you are looking for

  • I can't save documents in Pages.

    I can't save documents in Pages. I get a "file does not exist" error message. I've tried changing the file name, length, and location. To no avail. This is only sporadic.

  • Muse vs Wordpress for Real Estate site?

    I need to make a fairly complex site for a real estate developer who has several subdivisions and offers extensive services.  I would love to use Muse for the design flexibility, but I can't find how I can make a searchable database of properties tha

  • Store procedure help please

    Oracle Stored procedure query.. I have 1 table with below schema. ID empID clsID Year Cuser CDatetime Sample Data: ID     EMPID     ClsID     Year     Cuser     CDateTime 1     100     2     2000     John     1/1/2000 2     100     3     2000     Joh

  • Creative Suite Production Premium - *NO* Manuals

    I unfortunately mis-posted this issue on a thread on another creative suite product. I have Creative Suite 3 Production Premium and a nice large box of manuals. I LOVE the hard copy manuals. They are a nice reference when you need to find something o

  • Volume changes on it's own

    I have a 20gb iPod that is about 2 years old. When I play my iPod using the iTrip in my office or car and even on ear phones, the volume goes way down on it's own. I do not have a cell phone near the iPod, and I'm not touching the volume wheel and ca