Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
8k views

UIToolbar tint on iOS 4

just switched to iOS 4 on my iPhone 3GS and some of my apps broke. One issue I had is that I had a UIToolbar with some buttons, tinted to pink, that worked well on the 3.1.3 OS. After upgrading to ...
6
votes
1answer
592 views

How can I reproduce Apple's iOS Tint-Color Formula for Toolbar/Button gradients?

We're looking to reproduce the way Apple applies a tint-color to their controls. We're developing a web-based product and thus have to reproduce the formula/application of the color ourselves. Our ...
4
votes
3answers
161 views

OpenGL ES: How to tint texture with color

I have texture with alpha. And I want to tint it with some color, so it will be colored depending on color alpha value, but overal opacity will be defined only by texture alpha. This is similar to ...
3
votes
1answer
228 views

How can I tint a UIImage with gradient?

I searched everywhere but didn't find the solution. I have image 1. How can I programatically tint them with gradient to get images 2 and 3? Here are those images: Tints that I applied to them via ...
3
votes
1answer
389 views

How to tint a Bitmap to a solid color

How would one go about tinting a Bitmap to a solid color, effectively replacing all pixels that have an alpha > 0 to a given RGB value? In addition how to do the same thing, but keeping the alpha for ...
3
votes
2answers
4k views

How do I change the tint of an ImageButton on focus/press

I have an ImageButton in my app and I need to change the tint of the image when the button is pressed/focused. I have the ImageButton set to get its src from an XML file which as follows: <?xml ...
3
votes
2answers
1k views

C# Algorithm to Tint a Color a Certain Percent

I have a color and I want get a tint of that color by a certain percent. So 100% is the color itself, 90% is a slightly lighter color, etc. Basically, it's like adding 10% of opacity to the color, if ...
2
votes
4answers
3k views

jQuery: there is a way to apply colour (tint) to an image?

there is a way to colour (apply tint) an image using jQ or some plugs? thank you
2
votes
3answers
1k views

How to tint a transparent PNG image in iPhone?

I know it's possible to tint a rectangular image by drawing a CGContextFillRect over it and setting the blend mode. However, I can't figure out how to do a tint on a transparent image such as an icon. ...
2
votes
1answer
2k views

tintcolor for navigationBar

When I set the tintcolor using following code it works self.navigationController.navigationBar.tintColor = [UIColor brownColor]; But When I try to set the tint color like - ` UIImage ...
2
votes
1answer
1k views

UIActionSheet Tinting

Anyone know anyway to tint uiactionsheet in uikit?
2
votes
5answers
2k views

How can I tint a sprite to white in XNA?

I don't think this is possible just using the color setting in SpriteBatch, so I'm trying to work out a simple shader that would take every pixel and make it white, while respecting the alpha value of ...
1
vote
1answer
50 views

Constrain color burn to the inside of a CGPath

I have a closed path defined as a CGPath (actually, CGMutablePath). I want to color burn a specific region of a UIImage defined by the path. I've been fiddling around with Core Graphics, but ...
1
vote
1answer
159 views

How to set the color of UISearch Bar

Can anyone advise me on how I can set the color of the UISearchbar such that it follows the color of that search bar used in the address book? It has a light gray color and the cancel button is of a ...
1
vote
1answer
113 views

Color attenuation/tint in Direct2D

Has anyone figured out how to change the color of bitmaps when rendering with Direct2D? With Direct3D it's a simple matter of specifying different vertex colors or, when using the sprite batch, ...
1
vote
1answer
676 views

set tint for uiview background color

how can i set tint color as a uiview background color? thanks.
0
votes
0answers
29 views

Colourising Textures in pyglet

I have been working on a platformer for pyweek, where levels are made up of a large number of tiles. As part of some optimizations I have started blitting all tiles to a texture on level load, and ...
0
votes
2answers
138 views

tint images without imagemagick

I have an upload form for images that once uploaded are then displayed automatically and randomly on a website. I would like to apply a colour tint to the images before they are saved, at the very ...
0
votes
1answer
463 views

UINavigationBar change Tint color with animation

Is it possible to change the tint with animation for a smoother effect? This doesn't work for me: [UIView beginAnimations:nil context:nil]; [self.navigationController.navigationBar ...
0
votes
1answer
112 views

Loosing tint in iPad app after splitter popup activated

I have applied a brown tint to the app. When I select the popup then switch back to landscape view, the app goes back to the default tint. Is there a way to stop that. here's a few screen shots in ...
0
votes
1answer
787 views

Toolbar Tint Colour Change Not changing colour of button in iOS 4 Xcode

I'm trying to make my app compatible with iOS 4 Multitasking so it stays open when the home button is pressed. At one point, a button is pressed and it opens a new view and changes the tint colour of ...
0
votes
2answers
1k views

Why can't I set a custom color-tint for the UINavigationBar?

I want to change the color on the navigation bar and the documentation states not to attempt to change the 'alpha' value. So, how can I set a color that is not the SDK defined values (e.g., [UIColor ...
0
votes
1answer
1k views

AS2 TweenLite : using TintPlugin

I have a problem with the TweenLite Tint Plugin in AS2. Is there a way to decrease the alpha color ? For instance : TweenLite.to ( mc, 1, { tint : 0x586AB4, blurFilter : { blurX : BLUR_FILTER, ...
0
votes
2answers
2k views

tinting a MC with tweener

I would like to tint a movieclip with the tweener class. This is how I tint the mc without the tween: var c:Color=new Color(); c.setTint(0xff0000, 0.8); clouds.transform.colorTransform=c; it ...
0
votes
3answers
3k views

UINavigationBar tintColor does not always propagate to UIBarButtonItem objects

Greetings! I have set my UINavigationBar's barStyle to UIBarStyleBlack, and the tintColor to a color (other than black so as to get the color/gradient going). That much works well. Now ... let's say ...