Go Back   BlackBerry Forums at CrackBerry.com > BlackBerry Professionals > Theme Developers' Forum

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 07-01-2009, 09:00 AM
ozikiwi's Avatar
CrackBerry Abuser
Device Model: 9500 (Storm)
Carrier: Vodafone
 
Join Date: May 2009
Location: Germany
Posts: 211
Default this themebuilder export error is driving me nuts!!

Okay I've spent hours checking and re-checking my code. I've also spent hours re-doing the composer svg from scratch and still can't seem to find whats causing this error.

Hoping to get some help here plz. Upon exporting from themebuilder I get the following error....

Warning: The following resources could not be included in the theme for reasons explained below:
homescreen.svg

Warnings:
The homescreen navigation model does not allow the following focus points to be reached:

homescreen.svg: Failed to compile SVG file.

Errors in homescreen.svg:
Error: The element <set> named "$unnamed$" has a reference to "$unnamed$" which is not found.
Error: The element <set> named "$unnamed$" has a reference to "$unnamed$" which is not found.
Error: The element <animate> named "$unnamed$" has a reference to "$unnamed$" which is not found.
Error: The element <animate> named "$unnamed$" has a reference to "$unnamed$" which is not found.
4 error(s) were encountered.


And for the life of me I can't figure out why. Has anyone else come across this error before? Or anyone can point me to why it might be happening?

Any help appreciated.
Reply With Quote
  #2  
Old 07-01-2009, 09:45 AM
CrackBerry User
Device Model: 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 85
Default

Try resetting the navigation links by clicking "Reset All Navigation Links" under the Navigation tab under Theme the Homescreen button.

That may solve the problem..
Reply With Quote
  #3  
Old 07-01-2009, 11:32 AM
ozikiwi's Avatar
CrackBerry Abuser
Device Model: 9500 (Storm)
Carrier: Vodafone
 
Join Date: May 2009
Location: Germany
Posts: 211
Default

Nope, that didn't work either.

Weird thing is is that in the navigation tab, I see this graphite_blue1_cp_187 show up, but I've never made a button called that and the only other reference I can find to it is in the actual svg itself on line 9, shown below...

id="graphite_blue1_cp_187" xml:space="default" width="100%" height="100%" viewport-fill="#ffffff" viewBox="-180 -240 360 480" preserveAspectRatio="xMidYMid meet">
Reply With Quote
  #4  
Old 07-01-2009, 11:38 AM
CrackBerry User
Device Model: 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 85
Default

Maybe try selecting the "Do Not Create Default Links" under Default Connections.

I know I had to mess around with this once but I can't remember how I fixed it, I'm pretty sure I ended up selecting the not creating default links and resetting all navigation links.
Reply With Quote
  #5  
Old 07-01-2009, 11:40 AM
CrackBerry User
Device Model: 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 85
Default

If you want I can try to take a look at your .svg? Not guartanteeing I'll be able to find what's wrong but I'd certainly be willing to try and help.
Reply With Quote
  #6  
Old 07-01-2009, 12:18 PM
ozikiwi's Avatar
CrackBerry Abuser
Device Model: 9500 (Storm)
Carrier: Vodafone
 
Join Date: May 2009
Location: Germany
Posts: 211
Default

Thanks I appreciate the offer. Will keep trying to nut it out myself but yeah, I may have to post you the code to get some more eyes on it.

I've tried exporting the theme with the basic svg straight from composer and it exports fine. I then added a portion of my code, only a portion which I've used on other svg's fine and I get the error I posted in op.

Its basically for animating the "tab" I made for the activation of the docks that would slide in from left and right. I have an "on" layer and an "off" layer, and thats the only part of the code I added and got the error with. Thing is, I can't see anything wrong with it.

Code here...
<animateTransform xlink:href="#activate_on_layer" id="_anim_x1" attributeName="transform" type="translate"
to="-180,0" dur="0.5s"
fill="freeze"
begin="activate_onlayer_Button.focusin" />

<animateTransform xlink:href="#activate_on_layer" id="_anim_x2" attributeName="transform" type="translate"
to="-180,0" dur="0.5s"
fill="freeze"
begin="activate_onlayer_Button.activate" />

<animateTransform xlink:href="#activate_off_layer" id="_anim_x3" attributeName="transform" type="translate"
to="180,0" dur="0.5s"
fill="freeze"
begin="activate_onlayer_Button.focusin" />

<animateTransform xlink:href="#activate_off_layer" id="_anim_x4" attributeName="transform" type="translate"
to="180,0" dur="0.5s"
fill="freeze"
begin="activate_onlayer_Button.activate" />


<animateTransform xlink:href="#activate_off_layer" id="_anim_x25" attributeName="transform" type="translate"
to="0,0" dur="0.5s"
fill="freeze"
begin="activate_offlayer_Button.focusin" />

<animateTransform xlink:href="#activate_off_layer" id="_anim_x26" attributeName="transform" type="translate"
to="0,0" dur="0.5s"
fill="freeze"
begin="activate_offlayer_Button.activate" />

<animateTransform xlink:href="#activate_on_layer" id="_anim_x27" attributeName="transform" type="translate"
to="0,0" dur="0.5s"
fill="freeze"
begin="activate_offlayer_Button.focusin" />

<animateTransform xlink:href="#activate_on_layer" id="_anim_x28" attributeName="transform" type="translate"
to="0,0" dur="0.5s"
fill="freeze"
begin="activate_offlayer_Button.activate" />
Reply With Quote
  #7  
Old 07-01-2009, 01:21 PM
ozikiwi's Avatar
CrackBerry Abuser
Device Model: 9500 (Storm)
Carrier: Vodafone
 
Join Date: May 2009
Location: Germany
Posts: 211
Default

Sigh, problem solved. Anybody got a gun?

So not sure why it was a problem, cause I've done the same thing before. But for my on and off screen activation tabs, those I use to slide the left dock onto and off screen, I'd made a 3rd party app button and used a 73x73 transparency. Then stretched to the size I wanted it. Like I said, I've done this before and maybe just by chance haven't resized it too large.

But I'm thinking there must be some kind of internal limit as to how far the image can be stretched? Whatever, as soon as I replaced the old transparency for a 170x300 one, which is the size of the tab I was using, it exported from themebuilder fine.

Ah well....lesson learned then.
Reply With Quote
  #8  
Old 07-02-2009, 09:19 AM
CrackBerry User
Device Model: 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 85
Default

glad to hear it! Thanks for the update!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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



 
 Site Support | Accessory Order Support | App Store Support | Advertise | Newsletter | About Us

Creating smartphone communities
Android Central - Android reviews, news and forums Crackberry - Blackberry news, reviews and community TiPb - iPhone news, accessory reviews & forums
Pre Central - Palm Pre Review, News and Community Treo Central - Treo & Centro News and Forums WMExperts - Windows Mobile Reviews & News

The names RIM and BlackBerry are registered Trademarks of Research in Motion Limited.
CrackBerry.com is in No Way Affiliated with Research in Motion Limited.
Copyright ©2007-2009 Smartphone Experts. Terms and Conditions. Privacy Policy. All rights reserved.