icons

Change order of images in icon file

Is there an app that can change the order of images inside an icon? Thanks! ...

Where can one find free software icons / images?

This may not be directly related to programming, but I always find it hard to get quality icons that can be used for software. I currently have the need for some type of "green checkmark image", and I always seem to be looking for print, save, delete types of icons... Anybody have good resources? Note: I rather not be stealing someone...

Flex: Modify an embedded icon and use it in a button?

Just that, if you embed an icon: [Embed(source='icons/checkmark.png')] private static var CheckMark:Class; You end up with a dynamic class. You can pretty easily assign the icon to a button at runtime by calling the setStyle method: var btn:Button = new Button(); btn.setStyle("icon", CheckMark); But what if you wanted to alter the ...

Palm/Garnet OS Icon format?

I have googled around and not seen any info. What format and icon color depths are used for applications? ...

How can I make my ad hoc iPhone application's icon show up in iTunes?

I've got an iPhone app with icon file Icon.png. This icon shows up properly when the app is on the phone itself, but it doesn't show up in the applications pane in iTunes. What do I need to do to get it to show up properly? ...

Are there any command line tools to generate windows icons?

I am working on a project that requires a number of icons generated from a set of source images. I have a script that generates all the required images with judicious use of ImageMagick, although I have not found a suitable tool to package the images as icons. I have a set of png files (from dimensions of 16x16 up to 256x256, and in a ...

Where Windows Explorer gets its “Folder Up” and “Back” icons from?

XP-specific answers preferred, but others are welcome too. ...

Set application icon from resources in VS 05

I know I can add a icon to the Resources.resx file of a project and then reference that icon from within the code. How do I set the icon of the entire EXE from the resources? All I see is a place to browse for another file. I want to use the current icon file that I have in my resources and not have to have a duplicate file in my projec...

How do I change the default application icon in Java?

I'm using NetBeans, trying to change the familiar Java coffee cup icon to a png file that I have saved in a resources directory in the jar file. I've found many different web pages that claim they have a solution, but so far none of them work. Here's what I have at the moment (leaving out the try-catch block): URL url = new URL("com/x...

Create an icon in memory with win32 in python

What's a good way to generate an icon in-memory in python? Right now I'm forced to use pygame to draw the icon, then I save it to disk as an .ico file, and then I load it from disk as an ICO resource... Something like this: if os.path.isfile(self.icon): icon_flags = win32con.LR_LOADFROMFILE | win32con.LR_DEFAULTSIZE ...

Ajax Loading Icons - Where to Get?

Anyone know where I can get this icon in 32x32? And more generally what's a good source for finding Ajax loading icons? This one only offers 16x16. ...

How to set the Taskbar Grouping Icon

When my application opens too many windows the taskbar groups them into one button. Each window has its own icon, but the grouping icon is the default "unknown"-kind icon. How can I set the grouping icon? ...

Using 256 x 256 Vista icon in application.

Hi all, I have an application which I have made a 256 x 256 vista icon for. I was wondering how I would be able to use the 256x256 png in the ico file used as the application icon and show it in a picture box on a form. I am using VB.net but answers in C# are fine. I'm thinking I may have to use reflection. EDIT! Not sure if this ...

want different icons with different builds in C#

We have a product but we are doing some rebranding so we need to be able to build and maintain two versions. I used resource files combined with some #if stuff to solve the strings, images, and whatever else, but the program icon is giving me trouble. I couldn't figure it out from msdn or a google search. Thanks! ...

Tree view plus minus icon larger

How do i make the plus minus icons bigger in the tree view in C# .net with out making visual styles disable. ...

SystemIcons default size

What is the default (i.e. native) size of a System.Drawing.SystemIcons icon? ...

What's the UITableView index magnifying glass character?

In Apple's iPhone apps (like Contacts), they have a nice magnifying glass icon at the top of the table view index. Since the table view index API is character-based, I assume that this magnifying glass is a Unicode character. So far I've resorted to placing a question mark character there, but that looks lame. Can anyone tell me what ch...

How to make icon with pink background transparent?

I'm using Visual Studio icon library (VS2008ImageLibrary), there are some BMP files with a pink background. How can I make the pink background become transparent? What software can I use to do this? Any free one? Thanks ...

How do you override the Icon for iphone apps?

I remember reading somewhere that you can provide your own icons without having them pass them through the automatic gloss effect when compiling an iphone app, but I can't remember how to do it, and not sure where it was in the docs. Anyone here remembers? thanks! ...

Loading scheme for icons

What would be the best scheme for loading icons for an application? A little bit of a background... I’m creating an FTP-like application that has 4 panes (local folder pane, local file pane, cloud folder pane, cloud file pane). In both file panes, one of the columns is filename, which I want to display the icon next to (just like you ...