Join Our 3 MILLION+ Members Today! Register Here | Login
Go Back   BlackBerry Forums at CrackBerry.com > BlackBerry Professionals > Theme Developers

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
    Thread Author   #1  
Old 12-20-2010, 12:23 PM
CrackBerry Abuser
Device(s): 9630 (Tour)
Carrier: Verizon
Pin: 3253C123
 
Location: Hastings, Mi
Join Date: Aug 2009
Posts: 139
Likes Received: 0
Thanked 5 Times in 5 Posts
Default Help hiding WIFI and other icons

Hello everyone!

I was looking around trying to find out how I can hide and/or change the Wifi, Bluetooth, and GPS symbol on the home and app screen. The Bluetooth one isn’t so bad because I never have it on. But I would like to be able to see it not being there when I am in Theme Developer. I have visited THIS thread, but it is a little confusing and didn’t help too much. I am probably at a Beginner level when it comes to code, but I am more than willing to try it, since I figure that’s the only way to do it. I know this is all possible, since other themes have these icons hidden or changed.

Thanks in advance to anyone that can help!!


Chase

Posted from my CrackBerry at wapforums.crackberry.com

Last edited by ChaseJ; 12-20-2010 at 07:10 PM. Reason: Sorry I didnt know the hyperlink for the mentioned thread didnt work.
Reply With Quote Tip this Post
    Thread Author   #2  
Old 12-20-2010, 07:14 PM
CrackBerry Abuser
Device(s): 9630 (Tour)
Carrier: Verizon
Pin: 3253C123
 
Location: Hastings, Mi
Join Date: Aug 2009
Posts: 139
Likes Received: 0
Thanked 5 Times in 5 Posts
Default

Bump for editing the hyperlink?
__________________
Be chilly, at the end of the day its all 24-7
Reply With Quote Tip this Post
  #3  
Old 12-21-2010, 12:35 AM
CrackBerry Genius
Device(s): HTC Trophy
Carrier: Verizon
Pin: to start
 
Join Date: Aug 2008
Posts: 3,039
Likes Received: 138
Thanked 137 Times in 111 Posts
Default

I don't think that those can be changed. I used to just try to imagine that they were not there when I was making 9630 themes, since that device doesn't even have wifi.
__________________
BB History:
Verizon: 8130, 8830, 8330, 9530, 9550, 9630, 9930, 9650
AT&T: 9800, 9700

Reply With Quote Tip this Post
    Thread Author   #4  
Old 12-21-2010, 11:43 AM
CrackBerry Abuser
Device(s): 9630 (Tour)
Carrier: Verizon
Pin: 3253C123
 
Location: Hastings, Mi
Join Date: Aug 2009
Posts: 139
Likes Received: 0
Thanked 5 Times in 5 Posts
Default

Lol I wish it was a factory choice to display them or not. Ill keep diggin around to see what I can find. Thanks heavy

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #5  
Old 12-21-2010, 06:58 PM
CrackBerry Abuser
Device(s): 9900
Carrier: Cincinnati Bell
Pin: 28842060
 
Location: Cincinnati, OH
Join Date: Aug 2008
Posts: 280
Likes Received: 17
Thanked 12 Times in 9 Posts
Default

I have been digging deep into animating banner items, The only problem is, there is no image id associated with those images, so as of this moment, no one knows how to hide them or change them. I have a few ideas that I want to try out when I get home, and if I can figure out how to animate or change their image source, I will let you know.
Reply With Quote Tip this Post
    Thread Author   #6  
Old 12-21-2010, 07:09 PM
CrackBerry Abuser
Device(s): 9630 (Tour)
Carrier: Verizon
Pin: 3253C123
 
Location: Hastings, Mi
Join Date: Aug 2009
Posts: 139
Likes Received: 0
Thanked 5 Times in 5 Posts
Default

Man I hope you can figure something out. I have trying to use composer to hide them or something or do anything but nothing yet. keep me informed. thanks ruhroh
__________________
Be chilly, at the end of the day its all 24-7
Reply With Quote Tip this Post
  #7  
Old 12-21-2010, 09:46 PM
CrackBerry Abuser
Device(s): 9900
Carrier: Cincinnati Bell
Pin: 28842060
 
Location: Cincinnati, OH
Join Date: Aug 2008
Posts: 280
Likes Received: 17
Thanked 12 Times in 9 Posts
Default

For the time being, you could add your wallpaper to an svg from composer, then add your battery and date and what not into your svg, then when you import into TB, check the box that says render home screen over banner. Done, wifi, bluetooth, and GPS icons are covered.

I know thats not reallly what you are going for, but it works as long as you dont want to change your wallpaper. LOL

But I will let you know when I figure out something.
Reply With Quote Tip this Post
  #8  
Old 12-21-2010, 10:39 PM
CrackBerry Addict
Device(s): Curve 8520!
Carrier: Du
 
Location: In a land far, far away...
Join Date: Oct 2010
Posts: 458
Likes Received: 0
Thanked 85 Times in 41 Posts
Default

maybe he can use a transparent background around the same size as the default to 'hide' them.
Just my 2 cents
Reply With Quote Tip this Post
  #9  
Old 12-22-2010, 07:53 AM
CrackBerry Abuser
Device(s): 9550
Carrier: Verizon
 
Join Date: Sep 2009
Posts: 141
Likes Received: 0
Thanked 13 Times in 9 Posts
Default

You'll need to create an svg file in composer. Whether or not you want to add your icons, banners, etc through composer or Themebuilder is up to your. Once you create an svg file in composer, open it using Notepad or some other text editing software. At the end of the svg file, you'll see " </svg> ". Drop these lines of code just before that. You'll need to import this svg code into your theme via Themebuilder using the svg selection option on the homescreen editing page.



Code:
<set xlink:href="#gpsmode-display-home" attributeName="display" to="none" begin="0"/>

<set xlink:href="#bluetooth-display-home" attributeName="display" to="none" begin="0"/>

<set xlink:href="#wifi_indicator_portrait" attributeName="display" to="none" begin="0"/>

All three will be hidden on your homescreen.

Last edited by eiger06; 12-22-2010 at 07:59 AM.
Reply With Quote Tip this Post
    Thread Author   #10  
Old 12-22-2010, 06:55 PM
CrackBerry Abuser
Device(s): 9630 (Tour)
Carrier: Verizon
Pin: 3253C123
 
Location: Hastings, Mi
Join Date: Aug 2009
Posts: 139
Likes Received: 0
Thanked 5 Times in 5 Posts
Default

I will try the background things tonight. I tried the code above and I get errors when loading the svg and when i try to export the theme i get this error message:
Code:
Warning: The following resources could not be included in the theme for reasons explained below:
	homescreen.svg

Warnings: 
homescreen.svg: Failed to compile SVG file.

Errors in homescreen.svg: 
Error: The element <set> named "$unnamed$" has a reference to "gpsmode-display-home" which is not found.
Error: The element <set> named "$unnamed$" has a reference to "bluetooth-display-home" which is not found.
Error: The element <set> named "$unnamed$" has a reference to "wifi_indicator_portrait" which is not found.
3 error(s) were encountered.
then it wont load the theme on my berry.
__________________
Be chilly, at the end of the day its all 24-7
Reply With Quote Tip this Post
  #11  
Old 12-22-2010, 11:07 PM
CrackBerry Abuser
Device(s): 9550
Carrier: Verizon
 
Join Date: Sep 2009
Posts: 141
Likes Received: 0
Thanked 13 Times in 9 Posts
Default

My guess is that you are probably running the newer Themebuilder (5.0.0.63); they messed with a few things in that build and it screwed up some of the svg code allowances. I had the same issue. You'll need to find an older version; I'm using 5.0.0.34. Not sure where to find it though.

check out more info here Thread
Reply With Quote Tip this Post
Reply
BlackBerry Forums at CrackBerry.com > > BlackBerry Professionals > Theme Developers   Help hiding WIFI and other icons

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes