EXCLUSIVE: New pre-release BlackBerry 10 OS images surface - homescreen widgets make their BB debut!
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 07-01-2009, 08:00 AM
CrackBerry Abuser
Device(s): 9500 (Storm)
Carrier: Vodafone
 
Location: Germany
Join Date: May 2009
Posts: 211
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
  #2  
Old 07-01-2009, 08:45 AM
CrackBerry Abuser
Device(s): 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 114
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
    Thread Author   #3  
Old 07-01-2009, 10:32 AM
CrackBerry Abuser
Device(s): 9500 (Storm)
Carrier: Vodafone
 
Location: Germany
Join Date: May 2009
Posts: 211
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
  #4  
Old 07-01-2009, 10:38 AM
CrackBerry Abuser
Device(s): 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 114
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
  #5  
Old 07-01-2009, 10:40 AM
CrackBerry Abuser
Device(s): 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 114
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
    Thread Author   #6  
Old 07-01-2009, 11:18 AM
CrackBerry Abuser
Device(s): 9500 (Storm)
Carrier: Vodafone
 
Location: Germany
Join Date: May 2009
Posts: 211
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
    Thread Author   #7  
Old 07-01-2009, 12:21 PM
CrackBerry Abuser
Device(s): 9500 (Storm)
Carrier: Vodafone
 
Location: Germany
Join Date: May 2009
Posts: 211
Likes Received: 0
Thanked 0 Times in 0 Posts
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 Tip this Post
  #8  
Old 07-02-2009, 08:19 AM
CrackBerry Abuser
Device(s): 9530 (Storm)
Carrier: Verizon
 
Join Date: Feb 2009
Posts: 114
Likes Received: 0
Thanked 0 Times in 0 Posts
Default

glad to hear it! Thanks for the update!
Reply With Quote Tip this Post
Reply
BlackBerry Forums at CrackBerry.com > > BlackBerry Professionals > Theme Developers   this themebuilder export error is driving me nuts!!

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes