skinning

Android Custom PopupWindow/Dialog

I'm trying to get a completely custom Dialog or PopupWindow, without any of the default Android UI controls (title, background, buttons, whatever). Is this possible at all? I've spent hours searching for this, but no luck... It seems like this should be easily possible, but I can't find it. Preferably this would be by inflating a View ...

ASP.NET: Themes : Associating a CSS file out side App_Theme folder for Skin/Theme

Is there anyway i can mention which CSS file should be attached to my Page automatically when running A Page with ASP.NET Themes /Skins ? I want to associate my own CSS which resides in a folder other than the APP_Themes Folder to the Page ...

YUI Calendar: how does it load the Sam's Skin CSS?

I'm using YUI 2's calendar in YUI 3. How does it load Sam's skin CSS? I didn't manually include it (though it seems like I should so the user can download it in the one request I make to the combo loader for css). Strangely, I don't see it being downloaded nor do I see it in the JS files themselves. I must be overlooking it. This is...

Design tools for creating skins for Flex 4 components

I'm looking for a tool to create just the skins for different kinds of Flex 4 components. Are there any? I'd like to be able to create the components myself and have the designer/artist do the skin, but I don't think they'd like the idea of doing them by writing MXML files. ...

What's the best way to skin my iPhone app (similar to how the Notes app is skinned)?

If you look at the Notes app on the iPad, you can see it uses all native iPhone controls, but they're "skinned" to look like a pad of paper. What's the best way to implement something similar to that? Could I use interface builder and simply change the background image for each of the controls, including the TableViews? Thanks in adva...

Apply skin to a control created programatically

Say I am creating a Textbox in the codebehind of a page like this: protected override void OnInit(EventArgs e) { base.OnInit(e); TextBox test = new TextBox(); test.SkinkId = "MySkin"; placeHolder.Controls.Add(test); } and in my skin file I have this: <asp:TextBox runat="server" SkinId = "MySkin" ...

how to use SWF Symbol as up,down,up etc skin in Skin file ?

How can we embed the over,up,down etc skins defined as sybols in a .swf file... i mean in skin file how can i specify those symbols to be used as up,over,down skins. ...

DevExpress NavBar: Appearance has no effect

Hi all, this question is fairly DevExpress-specific. I use a NavBar control with the standard "SkinExplorerBarView" in a WinForms app, and would like to change the appearance of a selected navigation link. I changed the background color of the control's "ItemPressed" and "ItemActive" appearances, as well as each single item's "Pressed...

how to Display a Symbol from the .SWF file on Canvas?

how i can display a symbol from the .swf on canvas.. i have exproted the .fla file from the flash CS3 as .swf file... ...

Conditional skin file in ASP.Net Theme based off of browser

Is there a way to use a skin file in a theme only when a certain browser is used? The theme stays the same, I just want skin A to apply when a certain browser is used, and skin B when another browser is used. I know I can have server-side code to check and then set the SkinId of the control to either or, but is there another, more glob...

Flex 3 ComboBox skin, limiting text width

I've created a ComboBox skin by extending mx.skins.ProgrammaticSkin. It's working fine, except I can't figure out how to limit the width of the text. Is there a way to control this within the skin? See the attached image for an example of the text going too far. I would like it to stop before the separator line to the left of the down ...

Forumotion profile customization using jQuery based on URL

The idea is have a jQuery snippet (I like Jquery...I can understand it better then regular javascript) that will detect that when it has been run on a profile with a url such as "http://customize.forum-motion.com/profile.forum?mode=viewprofile&amp;u=1" (just as an example)...then upon detecting that it is a url of a profile...fetch data ...

How do I skin an Adobe Flash Player Settings pop up and is it even possible?

I am trying to create a professional chat application using Flex. Unfortunately, the security window that pops up asking the user to allow or deny the application access to the web cam, (the Adobe Flash Player Settings Window) doesn't really look that great and I'd like to be able to skin it. I'd really love to make this window look n...

Unable to resolve resource bundle "*" for locale "en_US" (Flex, Flash Builder)

since I'm using custom skin classes in Flex I'm getting an error, when trying to open the design view in Flash Builder: Description Resource Path Location Type Unable to resolve resource bundle "components" for locale "en_US". Unable to resolve resource bundle "core" for locale "en_US". Unable to resolve resource bundle "effects" for...

What is the best way of making a mobile version of a site in asp.net MVC2?

I've been thinking about this recently and I don't know a really nice and tidy way of creating a mobile version of an existing or new MVC2 website/app. I think the easiest way would be to just use a different stylesheet depending on whether a mobile was detected but sometime you need to change the view content too if you have massive in...

FLVPlayback skin modification problem in Adobe Flash CS5 with AS3

Hi, I have been working on modifying an existing FLVPlayback skin. Ideally I would like to have one that uses a counter. The problem is, all the fla's provided for the skins with counters fail to publish/compile correctly. Fla's are here: C:\Program Files\Adobe\Adobe Flash CS5\Common\Configuration\FLVPlayback Skins\FLA\ActionScript 3....

DotnetNuke: Account login in Custom skin development.

Hi, I am developing a skin where in which i would like to bring in the login area(similar to account login module) in to it, so that in all the pages where this skin is applied a login area would appear. How can i achieve this?.Is there any skin object for this.Please do suggest the alternatives possible through DNN. Thanks & Rega...

Skin Dialogs when using XP Themes?

I have been skinning dialogs by using the WM_CTLCOLORSTATIC, WM_CTLCOLORBTN messages as such:- case WM_CTLCOLORSTATIC: case WM_CTLCOLORBTN: hdc = (HDC)wParam; hwndCtl = (HWND)lParam; SetTextColor(hdc,RGB(0xff,0xff,0xff)); SetBkMode(hdc,TRANSPARENT); pt.x = 0; pt.y = 0; MapWindowPoints(hwndCtl,_hwnd,&pt,1); x = -pt.x; y...

flex combobox arrow custom image

Hi all, In my Flex AIR application I have to customize the Combobox with custom arrow icon. I got the properties to change its color but didn't get any property to change the icon itself. After Googling I got some links of skinning the combobox but they were for FLASH CS4, but I am on Flex. Not getting any solution. Please help. Thank...

Flex 4 Application Skin - Create Footer

Hi, I'm trying to create a skin for my Application in Flex 4. I started with editing the Application wireframe skin found at /flex4-sdk-folder/frameworks/projects/wireframe/src/spark/skins/wireframe/ I need a skin upon applying should provide a header, content area and a footer. I set the controlBar visible in the normal state so that...