skin

Did anybody know how to create skin for Android game aiMinesweeper?

Hi! I found that game aiMinesweeper support skins. I have a images but i don't know how they have to be packed. Try to find any documentation about this, but nothing. Please help! ...

Allow unauthorized users to access RichFaces Skin CSS files

I've created a small web application using AppFuse(with JSP as Web Framework) and RichFaces. There is a page that uses rich:dataTable that should be accessible without authentication. To make this page public I put it into a folder called "public" and added the following line to the security.xml: <intercept-url pattern="/public/*" acce...

What's the best way to handle layout issues with multi-language support in WPF/XAML?

I'm creating a standalone WPF app with multi-language support. I've found some great resources (mostly on SO) on how to store and access the strings as needed. This part is pretty straightforward and doable, but I'm fuzzy on how to take care of screen layout issues. I'm using some custom images to skin up my app for buttons, etc. For in...

How to set skin at runtime in Flex 4

Hi, I have a bunch of custom controls based on a SkinnableContainer. When adding the control at design time, I can specify a skin by using the skinClass attribute on the tag. I need to add some of these elements during runtime, and I can't figure out how to specify the skinClass for my controls. eg. var something:CustomThing = new ...

How can I animate between states in a programmatic skin? [FLEX]

I have a button with the various states (up/over/down etc) that uses a skin file to render the display. I want to achieve animation between the states. For instance, between the change from 'up' to 'over' I want to fade in a color and a border. The way I am doing this at the moment is to use viewstates and animate between them using tra...

Is there a way to measure skin tone of an object from an iphone app

Hi - Im trying to find a way to programme/buy an app to use the iphone to detect someones skin tone against an objective scale using RGB froma phot they take of themselves. Anyone got any pointers? ...

SkinId and Dynamic Control

Hi! I have some control that I add dynamically to my page: public partial class _Default : Page { protected override void CreateChildControls() { base.CreateChildControls(); var testControl = new TestControl { SkinID = "TestSkin" }; Controls.Add(testContr...

Flex Panel Content Background Color

Hello guys. I am trying to set the gradient background color for my panel via skins. I try to change my code but nothing seems to change. Not sure what to do. Thanks for any reply. My skin file /<!-- layer 2: background fill --/> <!--- Defines the appearance of the PanelSkin class's background. --> <s:Rect id="backgro...

Add icon on spark button skin

Hello all I am trying to add different icon on different buttons. I have my skin file ready but not sure if I have to create different skin class for different button. It sounds inefficient. Any suggestions? Thanks for the reply... <s:Button id="pass" width="110" height="35" fontWeight="bold" fontSize="12"...

[Flex 4] Anyway to change the style of datagrid??

Hello I am trying to change the header color and the row color of the datagrid. Apparently, its not a spark component so can't apply skin on it. Anyone knows how to style it? Thanks. ...

Change the background color of a Flex toggle button

What is the easiest way to change the background color of a toggle button when it is selected? I've tried creating a custom skin for the button and applying it to the downSkin property, but I can't figure out how to change the background color from within the skin. Also I'd like to avoid using an image as a background if possible. ...

How to change theme of a total ASP.NET application dynamically?

Hi all, Imagine an ASP.NET application with several theme defined within it. How can I change theme of total application (not just a single page) dynamically. I know it is possible through <pages Theme="Themename" /> in web.config. But I want to be able to change it dynamically. How shpuld I do it? Thanks in Advance ...

Flex 4 custom component with children inserted directly into view stack

I give up. Hopefully I am just missing something easy, but I feel like I am pulling teeth trying to get this to work. All I want is a custom 'wizard' component whose children are placed within a ViewStack and beneath the ViewStack there is a next and back button. Here are some code excerpts to illustrate my approach: WizardGroup.as: ...

Apply skin to inherited web control

Hi, I implemented a lot of ASP.NET controls inheriting controls from existing control library. My problem is that I can't use existing library themes/ skin files for skinning my controls. Is there a way to use existing skin files in inherited controls? Changing parts or renaming skin files is not an option. It would help if I could read...

Free/Open Source WinForms Skinner?

Hi, I am looking for a Free/Open Source WinForms "Skinner" (like AppFace and IrisSkin). Does anyone know where I can find such a project? If it is able to open .ssk .urf skin files, that would be nice. ...

Change skin colour programmatically

Does anyone have any information or advice about adjusting one image so that the skin tones in it will match that of another image? It is a bit of an obscure question but I was hoping there would be someone that has come across this problem before! The purpose of me doing this is so that I can replace a face in one image with a face fro...

How to get nicely formatted comment count and date for a blog post in subtext

Hi, I'm creating my own skin for subtext, and there's one thing I can't figure out... How can I get the post date (with permalink) and comment count link to the posts comments formatted how I want? In the base skin, there's this: <asp:literal id="PostDesc" runat="server" /> That generates something like this: posted @ Thursday, July...

Conflicts between SWC skin and Spark drawing API

I have a project where we are trying to skin Spark components from a third party library that are built up from the drawing API primitives. Our first attempt involved creating a Flex skin (SWC) in Illustrator/Flash and applying that skin to the Spark components via CSS. We found that even with only a single instance of one of the comp...

Changing Flex 4 theme (CSS+Skin) at run-time?

I have a Flex 4/Blaze/Java application and would like to provide my users with a way to switch between several pre-determined skins. Does anyone have a good example of how to do this? Ideally, the list of themes would be provided by the server -- where the themes are stored. Or do I have to compile in all possible themes into the sw...

Changing GUI of Windows Application based on the MSI filename

We are developing a Windows application using C#. We would like to change the GUI (background images and other control images and text) based on brandname. The typical installer of the application will be having the name brandname_programname.msi. We have to take the brandname from the MSI and allocate the GUI based on that. Please note...