The ModMyTM Family of Sites:
ModMyMotoModMyiModMyGphone




 
 
Register or Connect with Facebook

Discuss AppStore Apps | Browse / Search Cydia | MMi Cydia Stats




  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > Design and Media For the iPhone / iPod Touch > Skinning / Themes Discussion
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 07-29-2009, 10:30 AM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post
Icons behind the Glass? how to get rid off...

Hi every one!!

this is my first post, and i search over the forum to find a solutions to this but i did'nt know exactly how to look for...

The thing is that i'm theming without winterboard.

So i change several icons from my springboard.
The thing is that some, shows exactly as png in windows and some has a glass on it.

I'd also use the same icon (firefox) on different aplications and diferent result.
It's more clear in the image...

Click the image to open in full size.

any help be preciated!
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #2  
Old 07-29-2009, 11:47 AM
iTJ's Avatar
iTJ iTJ is offline
My iPhone is a Part of Me
 
Join Date: Apr 2009
Device + Firmware: iPhone 2G 3.1.2 Jailbroken
Operating System: Mac OS 10.5.8
Location: North Augusta, SC
Posts: 518
Thanks: 32
Thanked 260 Times in 189 Posts

Are changing the icon via WinterBoard or are you changing the stock icon in the app itself? Sometimes if you mod the icon in the app itself the OS thinks that it is the stock icon and places the "glass" mask on top by default.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #3  
Old 07-29-2009, 01:04 PM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post

Exactly!
i'm replacing the icon though ssh.

In the aplications folder, look for the aplication (Perfect Browser for example) and replace the icon.png for other one.
It's any way to make that mask transparent?

o something?

thanks!
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #4  
Old 07-30-2009, 06:22 PM
santaf's Avatar
iPhoneaholic
 
Join Date: Feb 2009
Device + Firmware: iphone 3GS firmware 3.0, iphone 2G 3.0
Operating System: mac 10.5.7, windows vista
Location: seattle
Posts: 428
Thanks: 33
Thanked 141 Times in 127 Posts

you could find the icon that does this i am pretty sure i found it i think it's in /system/library/coreservices/springboard.app it's called SBGenericAppIcon.png and maybe also SBGenericSmallAppIcon.png maybe those two things like make it automatically do the glass thing if you replace it witha transparent png then it'll probably work but it'll also make it so all other icons wont have it this is just a guess i've never tried and i havn't heard of it but it's worth the shot sorry if it doesn't work
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #5  
Old 07-31-2009, 05:12 AM
What's Jailbreak?
 
Join Date: Aug 2008
Device + Firmware: iPhone 3G 3.0, jailbroken using PwnageTool
Operating System: Mac OS X
Posts: 15
Thanks: 0
Thanked 2 Times in 2 Posts

With the help of some nice people, I managed to get rid of the glass effect without Winterboard.

All can be found here: http://www.modmyi.com/forums/4888381-post37.html
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #6  
Old 07-31-2009, 10:49 AM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post

Thank you both!

I'd try the santaf proposal but nothing happen. Inclusive i delete the incons cache.

The i'd try the ccaroline solution

go to the info.plist of my glossy aplication..
copy to pc.

the converted to xml using (Binary — XML .plist converter - iAppCat)

and added the lines:
<key>UIPrerenderedIcon</key>
<true\>
then reemplace the info.plist for the original and respring.

And the icon disappeared!

I'm missing something? do i have to re convert xml to binary?
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #7  
Old 07-31-2009, 11:02 AM
What's Jailbreak?
 
Join Date: Aug 2008
Device + Firmware: iPhone 3G 3.0, jailbroken using PwnageTool
Operating System: Mac OS X
Posts: 15
Thanks: 0
Thanked 2 Times in 2 Posts

You're sure you've added those two XML lines in a correct place, liike, let's say, right before </dict> ?

Also, I have no experience with opening .plist files on a PC, but I'm sure Google knows

Last but not least, you said the icon 'disappeared'. You sure you didn't apply too much of a mask somewhere?
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #8  
Old 07-31-2009, 11:10 AM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post

i'd put like this:
....
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<key>UIPrerenderedIcon</key>
<true\>
<string>Browser</string>
..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #9  
Old 07-31-2009, 02:24 PM
What's Jailbreak?
 
Join Date: Aug 2008
Device + Firmware: iPhone 3G 3.0, jailbroken using PwnageTool
Operating System: Mac OS X
Posts: 15
Thanks: 0
Thanked 2 Times in 2 Posts

Quote:
Originally Posted by pablogiorgini View Post
i'd put like this:
....
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<key>UIPrerenderedIcon</key>
<true>
<string>Browser</string>
..
No that's not right. <key>KEYHERE</key> and <string>STRINGHERE</string> belong together as far as I know. Never put a new key between another key and its value (between the string tags).

edit: Also pay attention to closing the true flag. It's <true\> and not <true>

Like this should do it:

....
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Browser</string>
<key>UIPrerenderedIcon</key>
<true\>
..

Last edited by ccaroline; 07-31-2009 at 02:27 PM..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #10  
Old 08-03-2009, 09:47 AM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post

well... i must doing something wrong...
this is how i left it.
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Browser</string>
<key>UIPrerenderedIcon</key>
<true\>

This is the info.plist from the app folder (perfect browser) not a system folder right?

i guess the problem must be from the conversion back to binary (that i'm not doing) or so.

can anyone confirm this with a pc?
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #11  
Old 08-03-2009, 11:45 AM
iTJ's Avatar
iTJ iTJ is offline
My iPhone is a Part of Me
 
Join Date: Apr 2009
Device + Firmware: iPhone 2G 3.1.2 Jailbroken
Operating System: Mac OS 10.5.8
Location: North Augusta, SC
Posts: 518
Thanks: 32
Thanked 260 Times in 189 Posts

Quote:
Originally Posted by pablogiorgini View Post
well... i must doing something wrong...
this is how i left it.
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Browser</string>
<key>UIPrerenderedIcon</key>
<true>

This is the info.plist from the app folder (perfect browser) not a system folder right?

i guess the problem must be from the conversion back to binary (that i'm not doing) or so.

can anyone confirm this with a pc?
The very last line <true\> is incorrect. It should be <true/>. Change the backslash to a forwardslash. That should fix the problem.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to iTJ For This Useful Post:
pablogiorgini (08-03-2009)
  #12  
Old 08-03-2009, 12:20 PM
What's Jailbreak?
 
Join Date: Aug 2008
Device + Firmware: iPhone 3G 3.0, jailbroken using PwnageTool
Operating System: Mac OS X
Posts: 15
Thanks: 0
Thanked 2 Times in 2 Posts

Wow. Epic fail on my account, so very sorry
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to ccaroline For This Useful Post:
pablogiorgini (08-03-2009)
  #13  
Old 08-03-2009, 01:30 PM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post

Thank's you all!
thanks iTJ for notice that ! ( i'd missed too)

And thank you ccaroline for the continuos help!

ahhh It Work!!!
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #14  
Old 08-03-2009, 05:30 PM
iPhone? More like MyPhone
 
Join Date: May 2009
Device + Firmware: iPhone 3G + 3.0
Operating System: Windows XP SP3
Posts: 127
Thanks: 2
Thanked 13 Times in 11 Posts

There is a much simpler way to do this I discovered last night. Not at home so I can't give details. Will do so when I get home this evening though.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #15  
Old 08-04-2009, 11:33 AM
Green Apple
 
Join Date: Jun 2009
Posts: 44
Thanks: 9
Thanked 1 Time in 1 Post

excellent!

we looking forward.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
Reply

  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > Design and Media For the iPhone / iPod Touch > Skinning / Themes Discussion

Tags
glass, icons, springboard, transparet

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Go to Top
ModMyI

All times are GMT -6. The time now is 11:59 PM. Powered by vBulletin® Version 3.8.4
If you need Dedicated Server Hosting, you should check out SingleHop. | Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.0 Copyright © 2007-09 by ModMy, LLC. All rights reserved.

iPhone News / iPhone Forums / Apple News / Apple Forums / RSS / Contact Us / / Privacy Statement / Top