icons

iphone tab bar icon click area

Do the sizes of the tab bar icons determine the clickable area? If I have a smaller tab bar icon, does that make the clickable area smaller? ...

Simple code for extracting an icon from an .exe

Can anyone show a short and simple code snippet? It should take the name of an .exe as the input and output a .ico file. The shorter the better, and please don't recommend any binaries. This seems like such a simple task yet the only code I've found appears extremely bloated. Thanks! ...

Reusing The .NET Application Icon

How can I reuse the application icon from within my application so I don't have to embedded it twice (once for the application icon and once for internal usage)? ...

How can I load an NSImage representation of the icon for my application?

I have a custom icon file (MyApp.icns) set up for my Cocoa App. How can I access an NSImage representation of the icon from within my application? Something like the following would be perfect: NSImage * iconImage = [MyApplication defaultIconAsImage]; But I'm sure it isn't that easy :) I can, of course, get a path to the icon file a...

free map icon/symbology

Hi, I want to create a navigation application but can't found any icons/symbols that suitable for my needs, i just hope i can find some icons with consistent style like what we currently see in google maps or garmin. Thanks ...

How to get big Vista icons for a shortcut created with a VS2008 Setup and Deployment project?

First I made an app and I set its application icon to a icon I made. That icon has 256x256px in it, and it works good in windows vista (256 size gets used when really large icon). I've made a setup project, that installs the app I made, and I added a shortcut to the desktop. The icon of the shortcut won't get big, it stays +- 48x48 maxi...

What resolution should my iPhone app ICON be?

What image resolution can/should be used as the icon.png file for an iphone app? I know the size is 57 x 57 but what about the resolution? Links to specific documentation relating to iphone app icon design would also be helpful. ...

icon flex movie flv core

i saw adobe player this link and downloaded.but all flv players icons are automatically changed.But if i write my own flv player and changed extension to 'AAAA' sothat movie file format will be abc.AAAA then how can i change the default icon of abc.AAAA to customized icon where customized icon must be configured by some mxml file built ...

How can I retrieve a website icon?

I am building a list of web Link to sites that I want to keep track of, and I would like to put the website icon, not the default browsers. How can I do this? ...

Download link to exact terminal icon?

Hey guys, Does anyone link to download the exact terminal icon from terminal? Thanks, Kevin ...

How to add icons to a PopUpMenuButton in Flex 3 using an XML file

Hi, I've been looking at the following example for populating a PupUpMenuButton http://blog.flexexamples.com/2008/02/21/creating-a-custom-label-function-on-a-flex-popupmenubutton-control/ and would like to add icons to each menu. Ideally, I would specify the icon in the xml and assign it in a similar way to using labelFunction for the t...

How do I get the icon of the user's Mac?

Using Objective-C and Cocoa, does anyone know how to get the icon for a user's computer (the one that shows under "Devices" and "Network" in Finder)? Not the harddisk icon, the actual one for a user's device. It ranges from a macbook icon to the mac pro "tower" icon to a Windows blue screen of death monitor icon. I've tried stuff along ...

How do I get the desktop icon used in Finder?

In Objective-c/Cocoa, how do I get the icon that Finder uses for the desktop (it looks like the black/pink nebula desktop image with a menu bar and dock). I tried this: NSImage *icon = [[NSWorkspace sharedWorkspace] iconForFileType: NSFileTypeForHFSTypeCode(kDesktopIcon)]; But all I get is a blue folder with a ghost...

Is there a Unicode glyph that looks like a "key" icon?

Unicode has a million icon-like glyphs, but they're not always easy to search by, since I don't always know what they look like. Is there a Unicode glyph that looks like a "key"? Or is there a symbol that's used in database circles to mean "primary key", which is in Unicode? ...

How do I create an iPhone application icon without the standard reflective look?

Xcode automatically resizes and applies a glossy look to images added as the application icon. However, I've seen some apps without the glossy finish. How do I disable the glossy icon look? Thanks! ...

Free or affordable MacOSX Style Icons

I would need about two dozens of MacOSX style Toolbar Buttons for mostly typical stuff. I don't need exclusive rights on the icons, so i would like to purchase an icon set. There are hunderts of icons sets available for free and purchase for Windows Style. But i haven't seen any for MacOSX now. Thats strange. I know about a few icon s...

Is it possible to use the toolstrip standard item icons for anything else?

I followed the trail of the ToolstripMenu in designer to the following line: (System.Drawing.Bitmap) new System.ComponentModel.ComponentResourceManager(typeof(FormMain)).GetObject("saveToolStripButton.Image") I can duplicate that and use it my form code as long as the toolstripMenuItem is on the form. Is it possible to access these ic...

Button Style with Different Icons

Hi, i have 5 buttons on my navigation grid. Each button has a different icon. In the button's style, which element do i use to place the image into when im on my main screen? any suggestions would be helpful. Thanks.. ...

Changing NSApplicationIcon across a running application?

I'd like to adjust the NSApplicationIcon image that gets shown automatically in all alerts to be something different than what is in the app bundle. I know that it's possible to set the dock icon with [NSApplication setApplicationIconImage:] -- but this only affects the dock, and nothing else. I'm able to work around this issue some of...

Proper use of UIRectClip to scale a UIImage down to icon size

Given a UIImage of any dimension, I wish to generate a square "icon" sized version, px pixels to a side, without any distortion (stretching). However, I'm running into a little snag. Not quite sure where the problem is. Here's what I'm doing so far. First, given a UImage size, I determine three things: the ratio to use when scaling down...