Results 1 to 18 of 18
  1. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #1  

    Default svg help

    is it possible to make the svg icons scroll faster? when i export it, it seems laggy. also while in composer, can i add the status text for icons?
  2. sabisgeek's Avatar
    CrackBerry Addict

    Posts
    458 Posts
    #2  

    Default

    not in composer, but in theme builder, under the Theme the Home screen tab, under the text extras tab. That's for your second question
  3. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #3  

    Default

    i know, but i have some text in my svg that i want to hide when i highlight an application, and return when the name fades away
  4. sabisgeek's Avatar
    CrackBerry Addict

    Posts
    458 Posts
    #4  

    Default

    Oh then idk how to do it

    Posted from my CrackBerry at wapforums.crackberry.com
  5. itr themes's Avatar
    CrackBerry Abuser

    Posts
    317 Posts
    Global Posts
    328 Global Posts
    #5  

    Default

    Are the theme buttons created in Composer as well? If so, then you can control what you show and hide in the buttons events.
  6. StaticFX's Avatar
    CrackBerry Genius

    Posts
    2,309 Posts
    Global Posts
    2,641 Global Posts
    #6  

    Default

    @legend... yes there are buttons in composer but you cannot control the text of them

    @nba... so let me get this right.

    you have some text... that is showing all the time. You want it to disappear when the user taps and icon... and then return after the text for the icon fades away?
  7. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #7  

    Default

    yes static, that is exactly what i want
  8. StaticFX's Avatar
    CrackBerry Genius

    Posts
    2,309 Posts
    Global Posts
    2,641 Global Posts
    #8  

    Default

    ok this is a little tricky. The code that TB uses has the icon text fade in /out in the course of 5 seconds. so you need to hide yours for 5 seconds...

    <animate xlink:href="#YOURTEXTID" attributeName="opacity" values="0;1" keyTimes="0;1" dur="0.5s" begin="APPBTN.focusin" fill="freeze"/>
    <animate xlink:href="#YOURTEXTID" attributeName="opacity" values="1;0" keyTimes="0;1" dur="0.5s" begin="APPBTN.focusin +4.5s" fill="freeze"/>

    a few notes: this will "overlap" the effect. meaning.. your text will fade out as the app name fades in.. then reverse.

    THIS MUST BE DONE FOR EACH APP ICON YOU HAVE IN YOU SVG!
    Change the BLUE word to the name of you app btn.. copy/paste and replace the name for each of your apps.

    So, if you have 5 icons on the homescreen in your svg, you will need these line repeated 5 times.. each with a different app name for focus in.
  9. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #9  

    Default

    ook thanks alot static, ill try that
  10. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #10  

    Default

    im using device application order, so what app name do i enter?
  11. StaticFX's Avatar
    CrackBerry Genius

    Posts
    2,309 Posts
    Global Posts
    2,641 Global Posts
    #11  

    Default

    the name of the buttons...
    like

    Theme_Button_1
    Theme_Button_2
    etc
    etc

    the names of each button in the svg.

    get it?
  12. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #12  

    Default

    ook i do thanks...is there anyway to make my svg icons scroll faster? it seems like it lags.
  13. StaticFX's Avatar
    CrackBerry Genius

    Posts
    2,309 Posts
    Global Posts
    2,641 Global Posts
    #13  

    Default

    the more you have the slower it goes... if using composer, the limit is around 12-15
  14. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #14  

    Default

    ook...i try the code u gave before for the status text and it doesnt work right...this is what i put,

    <animate xlink:href="#YOURTEXTID" attributeName="opacity" values="0;1" keyTimes="0;1" dur="0.5s" begin="Theme_Button_1.focusin" fill="freeze"/>
    <animate xlink:href="#YOURTEXTID" attributeName="opacity" values="1;0" keyTimes="0;1" dur="0.5s" begin="Theme_Button_1.focusin +4.5s" fill="freeze"/>

    I did this for all my buttons and a error comes out saying..."Error: The element <animate> named "$unnamed$" has a reference to "YOURTEXTID" which is not found.

    What did i do wrong?
  15. sabisgeek's Avatar
    CrackBerry Addict

    Posts
    458 Posts
    #15  

    Default

    You have to replace YOURTEXTID with, well, your text id, which is (I think) the name of the rectangle holding the text, if it is a rectangle. What you are doing is telling it (YOURTEXTID) to fade out, but in your SVG there is no such thing, so you need to replace YOURTEXTID with the name of the object that has the text inside it.
    Hope this helps!

    Posted from my CrackBerry at wapforums.crackberry.com
  16. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #16  

    Default

    ook i go it to work, but is it possible to make the original text come back after the application name fades away?
  17. sabisgeek's Avatar
    CrackBerry Addict

    Posts
    458 Posts
    #17  

    Default

    Its supposed to do that. Did you put the 2 paragraphs for each button?

    Posted from my CrackBerry at wapforums.crackberry.com
  18. nba1991's Avatar
    CrackBerry Abuser

    Posts
    159 Posts
    Thread AuthorThread Author   #18  

    Default

    yea i did, but after the app name fades away, it stays blank

Posting Permissions