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-14-2010, 05:46 PM
CrackBerry Abuser
Device(s): 9800
 
Join Date: Oct 2010
Posts: 422
Likes Received: 81
Thanked 80 Times in 44 Posts
Default Having trouble with icons getting shaved by SVG. Any one have an answer?

I'm having icons in my theme getting the edge trimmed off when I use SVG. Does anyone know of a fix for this?

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
    Thread Author   #2  
Old 12-15-2010, 12:15 PM
CrackBerry Abuser
Device(s): 9800
 
Join Date: Oct 2010
Posts: 422
Likes Received: 81
Thanked 80 Times in 44 Posts
Default

Do I need to shrink the icons

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
    Thread Author   #3  
Old 12-16-2010, 09:21 PM
CrackBerry Abuser
Device(s): 9800
 
Join Date: Oct 2010
Posts: 422
Likes Received: 81
Thanked 80 Times in 44 Posts
Default

Does anyone have an answer?
__________________
PassThruX Designs
Reply With Quote Tip this Post
  #4  
Old 12-17-2010, 08:09 AM
CrackBerry Master
Device(s): 9800 (Torch)
Carrier: Telus
Pin: cushion
 
Join Date: Oct 2009
Posts: 1,294
Likes Received: 442
Thanked 286 Times in 153 Posts
Default

IN your SVG, manually change the size of your "use app order" slot to 80X80 or whatever size you like.


ie:

Code:
<g id="tabImage_41">
<image id="img_1_1_164"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/tabImage_41_img_1_1.png"/>
<image id="img_11_1_165"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/tabImage_41_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_166"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/tabImage_41_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_167"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/tabImage_41_img_1_1.png"	visibility="hidden"/>
</g>
<g id="tabFocusImage_43">
<image id="img_1_1_168"
	x="0" y="0" width="72" height="72"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
<image id="img_11_1_169"
	x="0" y="0" width="72" height="72"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_170"
	x="0" y="0" width="72" height="72"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_171"
	x="0" y="0" width="72" height="72"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
</g>
<g id="normalImage_45">
<image id="img_1_1_172"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/normalImage_45_img_1_1.png"/>
<image id="img_11_1_173"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/normalImage_45_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_174"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/normalImage_45_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_175"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/normalImage_45_img_1_1.png"	visibility="hidden"/>
</g>
<g id="focusImage_47">
<image id="img_1_1_176"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/focusImage_47_img_1_1.png"	visibility="hidden"/>
<image id="img_11_1_177"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/focusImage_47_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_178"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/focusImage_47_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_179"
	x="0" y="0" width="68" height="68"
	xlink:href="Images/focusImage_47_img_1_1.png"	visibility="hidden"/>
</g>
</g>
</g>

to


Code:
<g id="tabImage_74">
<image id="img_1_1_212"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabImage_41_img_1_1.png"/>
<image id="img_11_1_213"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabImage_41_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_214"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabImage_41_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_215"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabImage_41_img_1_1.png"	visibility="hidden"/>
</g>
<g id="tabFocusImage_76">
<image id="img_1_1_216"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
<image id="img_11_1_217"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_218"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_219"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/tabFocusImage_43_img_1_1.png"	visibility="hidden"/>
</g>
<g id="normalImage_78">
<image id="img_1_1_220"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/normalImage_78_img_1_1.png"/>
<image id="img_11_1_221"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/normalImage_78_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_222"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/normalImage_78_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_223"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/normalImage_78_img_1_1.png"	visibility="hidden"/>
</g>
<g id="focusImage_80">
<image id="img_1_1_224"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/focusImage_80_img_1_1.png"	visibility="hidden"/>
<image id="img_11_1_225"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/focusImage_80_img_1_1.png"	visibility="hidden"/>
<image id="img_21_1_226"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/focusImage_80_img_1_1.png"	visibility="hidden"/>
<image id="img_31_1_227"
	x="0" y="0" width="80" height="80"
	xlink:href="Images/focusImage_80_img_1_1.png"	visibility="hidden"/>
</g>
</g>

you will have to play with it to get it just right, but this works.

72X80 works as well.

Last edited by molson0; 12-17-2010 at 08:31 AM.
Reply With Quote Tip this Post
  #5  
Old 12-17-2010, 09:04 AM
CrackBerry Master
Device(s): 9800 (Torch)
Carrier: Telus
Pin: cushion
 
Join Date: Oct 2009
Posts: 1,294
Likes Received: 442
Thanked 286 Times in 153 Posts
Default

the weather icon was cut off on the right side before changing size to 72X80

I assume this is what your speaking of. ??.

Last edited by molson0; 12-17-2010 at 10:18 PM.
Reply With Quote Tip this Post
    Thread Author   #6  
Old 12-17-2010, 01:12 PM
CrackBerry Abuser
Device(s): 9800
 
Join Date: Oct 2010
Posts: 422
Likes Received: 81
Thanked 80 Times in 44 Posts
Default

Thank you, this is exactly what I've been looking for

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #7  
Old 12-17-2010, 01:29 PM
CrackBerry Master
Device(s): 9800 (Torch)
Carrier: Telus
Pin: cushion
 
Join Date: Oct 2009
Posts: 1,294
Likes Received: 442
Thanked 286 Times in 153 Posts
Default

yw 10 chars
Reply With Quote Tip this Post
  #8  
Old 12-17-2010, 10:12 PM
CrackBerry Addict
Device(s): 9800 (Torch)
Carrier: Rogers
 
Join Date: Dec 2008
Posts: 527
Likes Received: 23
Thanked 33 Times in 27 Posts
Default

I gave you a Much easier solution 2 days ago. You didn't like the easier solution?

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #9  
Old 12-17-2010, 10:16 PM
CrackBerry Master
Device(s): 9800 (Torch)
Carrier: Telus
Pin: cushion
 
Join Date: Oct 2009
Posts: 1,294
Likes Received: 442
Thanked 286 Times in 153 Posts
Default

What was it ?

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #10  
Old 12-17-2010, 10:20 PM
CrackBerry Addict
Device(s): 9800 (Torch)
Carrier: Rogers
 
Join Date: Dec 2008
Posts: 527
Likes Received: 23
Thanked 33 Times in 27 Posts
Default

Quote:
Originally Posted by molson0 View Post
What was it ?

Posted from my CrackBerry at wapforums.crackberry.com
Simply double click on the icon in composer (or right click>edit) and then change the Normal and Focus icons from the default 68x68 image to a 100x100 image. (100 is probably overkill but it works perfectly).

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #11  
Old 12-17-2010, 10:22 PM
CrackBerry Addict
Device(s): 9800 (Torch)
Carrier: Rogers
 
Join Date: Dec 2008
Posts: 527
Likes Received: 23
Thanked 33 Times in 27 Posts
Default

^note I don't mean resize it to 100 I mean click on "change bitmap" and select any 100x100 file.

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #12  
Old 12-19-2010, 08:25 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 a folder full of resized 'Default App' icons. I just paste them into and overwrite the originals in the icons folder for the resolution in the TS files. then when I use composer and select 'Use Device Order', the icons are the exact size of the device app order images.
Reply With Quote Tip this Post
  #13  
Old 12-19-2010, 08:26 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

Thats my easy method. Then you dont have to open your SVG and edit each icon. especially when you have several icons on your home screen.
Reply With Quote Tip this Post
    Thread Author   #14  
Old 12-21-2010, 08:03 PM
CrackBerry Abuser
Device(s): 9800
 
Join Date: Oct 2010
Posts: 422
Likes Received: 81
Thanked 80 Times in 44 Posts
Default

Your above post you said you paste in the TS files. TS??
__________________
PassThruX Designs
Reply With Quote Tip this Post
  #15  
Old 01-18-2011, 07:12 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

Quote:
Originally Posted by cgmorgan1 View Post
Your above post you said you paste in the TS files. TS??
TS = Theme Studio
C:\Program Files (x86)\Research In Motion\Theme Studio 5.0\Samples\Images\(select screen resolution)\Icons
(do not quote me on that file path. I am not at a pc right now with TS)

Replace the Default Icon and Default Icon Focus with your resized versions.

If you are not running a 64 bit version of windows, it will Program Files and not Program Files (x86)
Reply With Quote Tip this Post
Reply
BlackBerry Forums at CrackBerry.com > > BlackBerry Professionals > Theme Developers   Having trouble with icons getting shaved by SVG. Any one have an answer?

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes