Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: Disable certain icon labels?!?!
is a discussion within theSkinning / Themes Discussion
forums, a part of theDesign and Media For the iPhone / iPod Touch
section;Is it possible to disable certain icon labels as appose to all of them? Wanted to get rid of the icon labels for Camera & Photos on this theme I
...-
08-19-2010, 12:04 PM #1
Disable certain icon labels?!?!
Is it possible to disable certain icon labels as appose to all of them?
Wanted to get rid of the icon labels for Camera & Photos on this theme I found. Can someone please help! This is on my iPhone 3GS w/ iOS4

Thank you guys in advance!
-
08-20-2010, 09:31 PM #2
I have also been looking into this. My knowledge is rather limited on this subject but I have noticed one thing. With regards to the musicplayer, the icon label will change if youre on an ipod (says Music) or an iphone (says iPod). Code showing this is in the applications folded, in MobileMusicPlayer.app in the Info.plist:
I changed the iPod name on my iphone with this method. This is obviously a single case scenario just to name the music player differently on different devices. But, perhaps it is possible to change other icon labels with this method, or maybe not. I'm sure someone familiar with coding would know.Code:<array> <dict> <key>Capabilities</key> <dict> <key>unified-ipod</key> <true/> </dict> <key>Roles</key> <array> <dict> <key>IsDefaultRole</key> <true/> <key>PrivateURLSchemes</key> <array> <string>audio-player-event</string> <string>video-player-event</string> </array> <key>Role</key> <string>MediaPlayer</string> <key>UIRoleDisplayName</key> <string>iPod</string> </dict> </array> </dict> <dict> <key>Capabilities</key> <dict> <key>unified-ipod</key> <false/> </dict> <key>Roles</key> <array> <dict> <key>IsDefaultRole</key> <true/> <key>PrivateURLSchemes</key> <array> <string>audio-player-event</string> </array> <key>Role</key> <string>AudioPlayer</string> <key>UIRoleDisplayName</key> <string>Music</string> </dict> <dict> <key>PrivateURLSchemes</key> <array> <string>video-player-event</string> </array> <key>Role</key> <string>VideoPlayer</string> <key>UIRoleDisplayName</key> <string>Videos</string> </dict> </array> </dict> </array>




LinkBack URL
About LinkBacks
Reply With Quote