Skin for flvplayback?

im looking for a skin whitout rounded corners and that looks more discreet and square.
does someone have a clue where to find such a skin for the flvplayback with this kind of graphic?
for flash cs4 ac 3.0
thanks for taking time

Here is a $6 skin pack from Flash-Den that you could try:
http://flashden.net/item/flvplayback-skin-pack-v1-as3/20804
One on Flash-Components:
http://www.flashcomponents.net/component/flash_flv_playback_component_black_finish_skin_bl ue.html
A tutorial about customizing the video component skins:
http://www.adobe.com/devnet/flash/articles/custom_flvcomp.html
Hope they help!

Similar Messages

  • Custom skin for FLVPlayback

    Hi ..
    I am trying to create a custom skin for the FLVPlayback componenet... I was wondering if someone could point me in a direction of a comprehensive tutorial..
    Thanks a bunch!!

    Hello,
    I have been attempting to use this code with the FLVPlayback
    component - when tested, the component and placeholder image both
    load, but once the user hits the play button I get an error code:
    ArgumentError: Error #2025: The supplied DisplayObject must
    be a child of the caller.
    at flash.display::DisplayObjectContainer/removeChild()
    at video_fla::MainTimeline/removePF()
    The video still plays, but the placeholder image doesn't get
    removed.
    This is the actionscript I'm using:
    import fl.video.VideoEvent;
    var pfContainer:MovieClip = new MovieClip();
    myPlayer.addChildAt(pfContainer, 1);
    var pf:Loader = new Loader();
    pf.load(new URLRequest('slatepf.png'));
    pfContainer.addChild(pf);
    pfContainer.x = 0;
    pfContainer.y = 0;
    myPlayer.addEventListener(VideoEvent.PLAYING_STATE_ENTERED,
    removePF);
    function removePF(e:Event):void{
    removeChild(pfContainer);
    Any help would be appreciated. Thanks!

  • How do I apply programmatic skins for completely custom drawn components of a Flex library project?

    Hello folks,
    I am looking for best practices advice when (1) creating
    custom components and (2) styling and skinning.
    I already know how to skin a component part of the Flex
    framework. I can make a class extending ProgrammaticSkin and have
    my component skinned using CSS to link the component with the
    reference to my custom class.
    However what about those cases when you are completely
    creating a component from scratch?
    Imagine a "Freehand Drawing Canvas" component that allows the
    user to draw on it and has some buttons to set color styles, line
    styles, etc., or imagine a "Screen Flow Gallery" component that
    displays visual objects in a fashion similar to Cover Flow in the
    Mac.
    In many components I am aware you may reuse other components
    part of the Flex framework but I am trying to picture an scenario
    where you would need to draw everything yourself because there just
    isn't something to base it upon so you will end up drawing it from
    scratch.
    To learn how instead of building one of those components I
    mentioned previously I decided to start with something simple that
    would illustrate this like a LiteButton component that will behave
    just like the Flex mx.controls.Button but will extend UIComponent
    and be completely custom drawn.
    The component will have a default look and will also be
    style-able and skin-able. I will provide styles for users of the
    component to modify and regarding skinning anyone can create a
    custom ProgrammaticSkin adding its own drawing logic and link it to
    the component via CSS with the ClassReference applied to the skin
    selector.
    So far so good and it's clear what I want to achieve. I
    actually know how to do most of the stuff here but I have one
    single problem.
    Here is my question, where should I put my custom drawing
    logic? If I do it in the updateDisplayList inside the class
    extending UIComponent it works, however I thought that it would be
    a better practice to do it using programmatic skins, that way I
    could provide different skin themes for my component set.
    The problem is that I can't make the programmatic work in
    this scenario. I tried instantiating the custom programmatic skin
    during the updateDisplayList of the LiteButton component and adding
    it to my display object via addChild but that didn't do anything. I
    also tried creating a "default.css" stylesheet and tried to use
    ClassReference as I would normally do to skin an already existing
    component (or composite component as well) but that didn't do
    anything either.
    So how do I apply programmatic skins for completely custom
    drawn components of my Flex library project?
    I could do it inside the updateDisplayList of the LiteButton
    class extending UIComponent but again I would like to provide
    different theme sets for my components so it makes sense using
    programmatic skins.

    "jbucaran" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello folks,
    >
    > I am looking for best practices advice when (1) creating
    custom components
    > and
    > (2) styling and skinning.
    >
    > I already know how to skin a component part of the Flex
    framework. I can
    > make
    > a class extending ProgrammaticSkin and have my component
    skinned using CSS
    > to
    > link the component with the reference to my custom
    class.
    >
    > However what about those cases when you are completely
    creating a
    > component
    > from scratch?
    >
    > Imagine a "Freehand Drawing Canvas" component that
    allows the user to draw
    > on
    > it and has some buttons to set color styles, line
    styles, etc., or imagine
    > a
    > "Screen Flow Gallery" component that displays visual
    objects in a fashion
    > similar to Cover Flow in the Mac.
    >
    > In many components I am aware you may reuse other
    components part of the
    > Flex
    > framework but I am trying to picture an scenario where
    you would need to
    > draw
    > everything yourself because there just isn't something
    to base it upon so
    > you
    > will end up drawing it from scratch.
    This may help with that
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html
    > To learn how instead of building one of those components
    I mentioned
    > previously I decided to start with something simple that
    would illustrate
    > this
    > like a LiteButton component that will behave just like
    the Flex
    > mx.controls.Button but will extend UIComponent and be
    completely custom
    > drawn.
    >
    > The component will have a default look and will also be
    style-able and
    > skin-able. I will provide styles for users of the
    component to modify and
    > regarding skinning anyone can create a custom
    ProgrammaticSkin adding its
    > own
    > drawing logic and link it to the component via CSS with
    the ClassReference
    > applied to the skin selector.
    >
    > So far so good and it's clear what I want to achieve.
    Actually after
    > playing
    > with the weekend and today I know how to do most of the
    stuff but I have
    > one
    > single problem. So here is my question, where should I
    provide my custom
    > drawing logic? If I do it in the updateDisplayList
    inside the class
    > extending
    > UIComponent it works, however I thought that it would be
    a better practice
    > to
    > do it using programmatic skins, that way I could provide
    different skin
    > themes
    > for my component set.
    These aren't mutually exclusive. When you provide a skin with
    a
    TypeSelector, you have to add it to the display list
    somewhere, and this is
    typically done in updateDisplayList or addChildren. I prefer
    to do it in
    updateDisplayList, because you can then change it if the
    style changes.
    > The problem is that I can't make the programmatic work
    in this scenario. I
    > tried instantiating the custom programmatic skin during
    the
    > updateDisplayList
    > of the LiteButton component and adding it to my display
    object via
    > addChild but
    > that didn't do anything.
    Exactly what did you do?
    > I also tried creating a "default.css" stylesheet and
    > tried to use ClassReference as I would normally do to
    skin an already
    > existing
    > component (or composite component as well) but that
    didn't do anything
    > either.
    I've never had any problem using an approach similar to
    this...but I will
    say that I couldn't see any advantage in creating a
    default.css style sheet,
    since it's not really default in the way that the one that
    comes with Flex
    is. It's much more obvious to anyone using your component
    what's going on
    there if you create a style sheet where they're likely to
    spot it.
    > So how do I apply programmatic skins with the default
    look for custom
    > drawn
    > components?
    It seems like your approach is fine, but maybe you've made a
    mistake in your
    implementation.
    > I could do it inside the updateDisplayList of the
    LiteButton class
    > extending
    > UIComponent but again I would like to provide different
    theme sets for my
    > components so it makes sense using programmatic skins.
    You might want to consider also adding an instance of
    HaloBorder to your
    component. That brings a lot of functionality with it.
    HTH;
    Amy

  • Problem with skin for server side buttons.

    Hi,
    I have a problem with the skin for server side renderd buttons.
    In my CSS file I have :
    .AFButtonStartIcon:alias
    content:url(/skins/images/btns.JPG);
    .AFButtonEndIcon:alias
    content:url(/skins/images/btne.JPG);
    .AFButtonTopBackgroundIcon:alias
    content:url(/skins/images/btntb.JPG);
    .AFButtonBottomBackgroundIcon:alias
    content:url(/skins/images/btnbb.JPG);
    JPG files in project are in dir "public_html/skins/images".
    In WAR file,the JPG files are in "/skins/images" directory.
    Skin configuration is correct because other settings from CSS
    file are functioning fine after deploying.
    But buttons are standard browser buttons and are not taking the images i have used.
    In document provided by Oracle it says:
    (Note: These icons must be specified using either context-image or
    resource-image icons. Text-based icons are not allowed.)
    I am nt able to understand what this means?

    Perhaps this thread will help.
    JSF Skining Button Images
    The doc should say whether or not the width/height is a requirement. But since it doesn't mention it, try adding a width and height.
    - Jeanne

  • How to add new skins for Adobe Flash Player in DW CS4?

    Hi everyone, I'm trying to insert a FLV file into my webpage using Insert | Media | FLV...  from the top menu bar in dreamweaver cs4.
    When the "Insert FLV" window opens up, I see a drop down list of different skins (clear skin, corona skin and halo skin) for the flash player, but none of these skins has the Full Screen button on it. How can i add a new skin to this drop down list that contains the full screen toggle?
    Also, I'm using the Design view to build my website as I'm not very familiar with any kind of code.
    Thanks in advance for your answers.

    How can i add a new skin to this drop down list that contains the full screen toggle?
    You can't.  You need a height and width for your player to appear correctly on the html page.
    Also, I'm using the Design view to build my website as I'm not very familiar with any kind of code.
    That's a real shame.  You're severely limited working only in Design View.  Kind of like working with a pencil between your teeth and both hands tied behind your back.  Web design is all about code. While you're learning, you should at least keep split screen open so you can see the code DW writes.
    Start your code lessons here:
    FREE HTML & CSS Tutorials  - http://w3schools.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/

  • What is the best skin for new Macbook Air 13"?

    What is the best skin for new Macbook Air 13"?
    I have a new Air and want to protect it from scratches and such.
    Thanks in advance

    Sorry, I don't like "skins". They inhibit the heat transfer necessary to keep your MBA cool. Get a soft or hard case to store it when not in use. I like Speck products.
    Just take care of it. Battle scars make it uniquely yours.

  • Where can i purchase a keyboard skin for my sk2061 - came with the hp pavillion all in one 23

    where can i purchase a keyboard skin for the sk2061 keyboard that came with the hp pavillion all in one 23?

    RXChic wrote:
    ...anything newer than July 2011 models, which have the thunderbolt. 
    There is nothing newer than the July 2011 model. The model released in July 2011 is the current model.
    http://www.newertech.com/products/nuguardkeyboardcoversmacbookair13.php

  • [svn:fx-trunk] 5465: Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains .

    Revision: 5465
    Author: [email protected]
    Date: 2009-03-20 11:52:56 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains. Jim ok'ed the addition of the new FxNumericStepperTextInputSkin.mxml class into the spark.skins and wireframe packaged.
    SDK-18275, SDK-19849
    Reviewer: Glenn
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18275
    http://bugs.adobe.com/jira/browse/SDK-19849
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperTextInputSkin .mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperTextInputSkin. mxml

    Revision: 5465
    Author: [email protected]
    Date: 2009-03-20 11:52:56 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains. Jim ok'ed the addition of the new FxNumericStepperTextInputSkin.mxml class into the spark.skins and wireframe packaged.
    SDK-18275, SDK-19849
    Reviewer: Glenn
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18275
    http://bugs.adobe.com/jira/browse/SDK-19849
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperTextInputSkin .mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperTextInputSkin. mxml

  • Skin for macbook pro early 2008

    hi everybody
    quick question.
    i would like to buy a hard case shell or skins for my macbook pro early 2008. but i cannot find anything like this anymore on the internet.
    does somebody know a company (best here in the UK) who sales them??
    thank you for your help
    deepmaster1

    Why? That Mac is now 4 years old.
    No I'm not from the UK so I don't know of any that Sales them.

  • Skin for MacBook Pro

    Can anyone recommend a skin for Macbook Pro 15 Retina?  I prefer that over a case.

    I use skins from Decal Girl for several of my devices.  You can Google their site.

  • [svn:fx-trunk] 5170: Round 2 of bug fixes for the Spark skins for Halo components.

    Revision: 5170
    Author: [email protected]
    Date: 2009-03-04 17:50:32 -0800 (Wed, 04 Mar 2009)
    Log Message:
    Round 2 of bug fixes for the Spark skins for Halo components. Thanks to Alex for help with the data grid issues.
    Bugs fixed:
    SDK-19655 - Setting rowCount property on DataGrid causes extra blank row to be displayed
    SDK-19652 - Items in a DataGrid do not line up after scrolling.
    SDK-19605 - disabled Halo ColorPicker with Gumbo skin draws too dark
    SDK-19596 - When you have a single button on an Alert, the left edge looks flatter than the right
    SDK-19585 - Menus compiled with the halo theme in Flex 4 have a different backgroundColor than in Flex 3
    SDK-19665 - Halo List with Gumbo skin doesnt draw the alternating item color all the way to the right edge of the control if VScrollBar is present
    SDK-19651 - odd header rendering issue on Halo DataGrid with Gumbo skin
    QA Notes: The alert layout code was positioning the buttons/text on sub-pixel boundaries if the width or height of the alert was an odd number of pixels. We always snap to pixel boundaries now, but this may cause bitmap compare issues with Alert.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19655
    http://bugs.adobe.com/jira/browse/SDK-19652
    http://bugs.adobe.com/jira/browse/SDK-19605
    http://bugs.adobe.com/jira/browse/SDK-19596
    http://bugs.adobe.com/jira/browse/SDK-19585
    http://bugs.adobe.com/jira/browse/SDK-19665
    http://bugs.adobe.com/jira/browse/SDK-19651
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/alertClasses/AlertForm.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ScrollControlBase.as
    flex/sdk/trunk/frameworks/projects/halo/defaults.css
    flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/ColorPickerSkin.mxml

  • Skins for the ipod menu

    why does the iphone,ipod touch and some others have different backgrounds or skins for thier menus but the ipod nano does not,i have some friends who are really wantin skins for theirs, ask apple why we dont have them for our apps.

    I just received a skin from Decal Girl. It covers the front and back, no sides, no screen, optional click wheel and button parts. It's pretty cheap ($7), and you can get a separate screen cover. I guess it's okay. The problem that others have mentioned, that I also noticed, is that the screen protector has a bit of a grayish haze and what appears to be like the 'noize' you get when you take digital photos in a dark place. So screen quality goes down a bit, which is a shame. If you are into design skins, though, the front and back pieces (that go over the white/black) may be worth it.

  • How to intercept style changes in skin for spark Button?

    How to intercept style changes in skin for spark Button?
    Thank you.

    How to intercept style changes in skin for spark Button?
    Thank you.

  • How to set skin for Menu bar

    I am doing a get Skin from Menu bar, but it returns null. Is there a way to set the skin for menu bar. I tried other alternatives like setting new com.sun .java fx.sce ne .control.skin.Menu BarSkin() but it doesn't work.
    Please help.

    The skin isn't set on the control until the next pulse after the control has been added to the scene-graph. In other words, you cannot do
    MenuBar menuBar  = new MenuBar();
    Skin skin = menuBar.getSkin();because the MenuBar has not yet been added to the scene-graph. Nor can you do
    MenuBar menuBar = new MenuBar();
    ((Group)scene.getRoot()).getChildren().add(menuBar);
    Skin skin = menuBar.getSkin();because the skin isn't set until the next pulse. There are many ways you can get the skin. The easiest is to just set the skin yourself:
    MenuBar menuBar = new MenuBar();
    menuBar.setSkin(new com.sun.javafx.scene.control.skin.MenuBarSkin(menuBar));Or you can add a listener to the skinProperty of the Control and grab it when it is set.

  • Skin for iphone, pictures are not loaded

    Dear community,
    i'm testing an iphone skin for a simple mobile browser application in a desktop browser. The pictures are not loaded and I cannot find the reason:
    JDeveloper 11.1.1.5.0
    Tree in Web Content:
    =============
    images/backButton.png
    images/toolButton.png
    skins/iphone.css
    page.jsp
    trinidad-config.xml
    ============
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>iPhonewebkit</skin-family>
    </trinidad-config>
    trinidad-skins.xml
    ===========
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <skin>
    <id>iphone</id>
    <family>iPhonewebkit</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name> skins/iphone.css </style-sheet-name>
    </skin>
    </skins>
    iphone.css
    ======
    .button {
    position: absolute !important;
    overflow: hidden !important;
    top: 8px !important;
    right: 6px !important;
    margin: 0 !important;
    border-width: 0 5px !important;
    padding: 0 3px !important;
    width: auto !important;
    height: 30px !important;
    line-height: 30px !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #FFFFFF !important;
    text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0 !important;
    text-overflow: ellipsis !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: none !important;
    -webkit-border-image: url(/images/toolButton.png) 0 5 0 5 !important;
    .backButton {
    position: absolute !important;
    overflow: hidden !important;
    top: 8px !important;
    left: 6px !important;
    margin: 0 !important;
    height: 30px !important;
    width: auto !important;
    line-height: 30px !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #FFFFFF !important;
    text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0 !important;
    text-overflow: ellipsis !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: none !important;
    -webkit-border-image: url(/images/toolButton.png) 0 5 0 5 !important;
    padding: 0 !important;
    border-width: 0 8px 0 14px !important;
    -webkit-border-image: url(/images/backButton.png) 0 8 0 14 !important;
    I have tried also relative URLs by moving images directory into skins directory, but without success. What am I doing wrong?
    Thanks for support,
    DF
    Edited by: 907283 on 11.01.2012 01:31
    Edited tree

    Sorry, I forgot to paste it:
    <tr:messages/><h:form>
    <tr:panelHeader text="Display Items" styleClass="toolbar">
    <tr:commandButton text="Back" action="start"
    styleClass="backButton"/>
    <tr:commandButton text="Show Details" action="detail"
    styleClass="button"/>
    </tr:panelHeader>
    toolbar definition in css:
    .toolbar {
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    border-bottom: 1px solid #2d3642 !important;
    border-top: 1px solid #000000 !important;
    padding: 10px !important;
    height: 45px !important;
    background: url(/images/toolbar.png) #6d84a2 repeat-x !important;
    display: block !important;
    .toolbar > h1 {
    position: absolute !important;
    overflow: hidden !important;
    left: 50% !important;
    margin: 1px 0 0 -75px !important;
    height: 45px !important;
    font-size: 20px !important;
    width: 150px !important;
    font-weight: bold !important;
    text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0 !important;
    text-align: center !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    color: #FFFFFF !important;
    border-bottom: none !important;
    Thanks!

Maybe you are looking for

  • How can I open an old file made with 2009 iWork'09?

    Some years ago I prepared a book using iWork'09 program. Two months ago the hard disk of my iMac didn't work anymore. I did the backup of my work before the beracking. My iMac war repaired and I tried to open my old work with iWork'09 but the program

  • New 2010 Mac Mini and LG 37" Full HD (via HDMI) query..

    Hello all! I have just bought the new Mac Mini which I want to use along with my LG 37" (LH5000) full HD LCD TV.I have hooked them both up together via HDMI. When I first turned the Mac Mini on it detected various resolutions and choose 1080p. Howeve

  • Mail 6.1 locks up, other problem

    After updating to 10.8.2, my Mail application locks up after clicking on the reply arrow within an existing email in a thread.  It happened twice, I used Force Quit and reopened, then repaired permissions in Disk Utility, tried again, it locked up ag

  • Confusion about framerate

    Hello, I will try to keep it simple. I have got a lot off 5Dmark 2 footages most of them are 30 frames. And some 25 frames. I want to make a blu ray movie of all footages together, Now I know if got a 30 frame footage and I export it as a 25 frame fo

  • Design Issue: Localization using Lookup OR Dependency Injection

    Hello Forums! I'm having a design issue regarding localization in my application. I'm using Spring Framework (www.springframework.org) as an application container, which provides DI (dependency injection) - but the issue is not Spring- but rather des