 Thread Author
# 6

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
| |
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" /> |