BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 03-05-2009, 09:18 AM   #1
DD12
Thumbs Must Hurt
 
Join Date: Jan 2009
Model: 9530
PIN: N/A
Carrier: Telus
Posts: 107
Question Plazmic 4.7 - Scroll Icons

Please Login to Remove!

Hello Everyone

I have icons docked to the side of the screen.

How do I make them scroll?

Thanks
Offline  
Old 03-06-2009, 11:51 AM   #2
rpjohs
Talking BlackBerry Encyclopedia
 
rpjohs's Avatar
 
Join Date: Mar 2007
Location: Sarasota, Fl
Model: 9530
OS: 4.7
Carrier: Verizon
Posts: 261
Default

Make a custom svg in Plazmic that would allow for them to scroll.
__________________
8703e, 8700c, 8800, 8310, 8330, 9530, 9000...
Offline  
Old 03-06-2009, 12:05 PM   #3
DD12
Thumbs Must Hurt
 
Join Date: Jan 2009
Model: 9530
PIN: N/A
Carrier: Telus
Posts: 107
Default

Thanks rpjohs.

Is there any 101 for Plazmic composer?

Thanks
Offline  
Old 03-06-2009, 01:45 PM   #4
rpjohs
Talking BlackBerry Encyclopedia
 
rpjohs's Avatar
 
Join Date: Mar 2007
Location: Sarasota, Fl
Model: 9530
OS: 4.7
Carrier: Verizon
Posts: 261
Default

Unfortunately there is not. And most people who are advanced in using Composer do not offer up their secrets too easily. There is a stock SVG that comes in the resources folder for the Bold, you can load it in to composer and play around with it, but it gets kind of confusing.

I have successfully made one Crossbar type theme, and I believe it was by accident that it worked, havent been able to re create it again.

There is a theme developers forum where people do offer up suggestions. If you find any info out, please share it with us all.
__________________
8703e, 8700c, 8800, 8310, 8330, 9530, 9000...
Offline  
Old 03-06-2009, 08:22 PM   #5
falcontrainer
Thumbs Must Hurt
 
falcontrainer's Avatar
 
Join Date: Apr 2008
Location: Columbus, Ohio
Model: 9530
OS: *.*.*.109
PIN: N/A
Carrier: Verizon
Posts: 66
Default

found this, not sure how relevant it may be since I have yet to try it but give it a whirl...

Plazmic Theme Creation Walkthrough - PinStack.com

and/or

How To Create Your Own Blackberry Themes Using Plazmic Theme Builder

Hopefully this helps. I will be trying this later

Last edited by falcontrainer; 03-06-2009 at 08:48 PM..
Offline  
Old 03-07-2009, 10:00 PM   #6
sadosdemetrios
Thumbs Must Hurt
 
sadosdemetrios's Avatar
 
Join Date: Feb 2009
Model: 9530
PIN: N/A
Carrier: Verizon
Posts: 82
Default

yah im new with plazmic also and i got no clue what so ever bout svg files...
Offline  
Old 03-12-2009, 07:41 AM   #7
DD12
Thumbs Must Hurt
 
Join Date: Jan 2009
Model: 9530
PIN: N/A
Carrier: Telus
Posts: 107
Default

Hello Everyone

This is how it is done.


xxx8226; To create a scrollbar place the buttons for the scrollbar in a separate layer in Composer.
xxx8226; Give the buttons and layer meaningful names as you will need them later.
xxx8226; Export the SVG file and open it in a text editor.
xxx8226; For each button, create an animateTransform element that does not contain a xxx8220;fromxxx8221; attribute, only a xxx8220;toxxx8221; attribute.
xxx8226; The animateTransform element will target the <g> element representing the layer.
xxx8226; The begin attribute of the animateTransform will be set to begin when the button gains focus
xxx8226; .Save the file.
xxx8226; Include the file on the custom home screen of your theme in Theme Builder.
xxx8226; Set up the desired navigation order in the navigation panel in Theme Builder.

Here is the sample of 11 buttons scrolling at the buttom for Storm. It is just a basic code. Do whatever you want to do in composer and then edit the SVG file in notepad and add the following code to the end of the but before "</svg>" tag.

Then in Theme builder select this SVG file for the home screen and then in the "Navigation" in the "Inspecter" window set the correct horizontal navigation.

You my get error messag "Duration Not Set", just ignore it for now.

----------------- Code -----------------------

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

<animateTransform xlink:href="#Layer_1" id="_anim_l2" attributeName="transform" type="translate" to="-50,0" dur="0.5s" fill="freeze" begin="Theme_Button_2.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l3" attributeName="transform" type="translate" to="-100,0" dur="0.5s" fill="freeze" begin="Theme_Button_3.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l4" attributeName="transform" type="translate" to="-150,0" dur="0.5s" fill="freeze" begin="Theme_Button_4.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l5" attributeName="transform" type="translate" to="-200,0" dur="0.5s" fill="freeze" begin="Theme_Button_5.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l6" attributeName="transform" type="translate" to="-250,0" dur="0.5s" fill="freeze" begin="Theme_Button_6.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l7" attributeName="transform" type="translate" to="-300,0" dur="0.5s" fill="freeze" begin="Theme_Button_7.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l8" attributeName="transform" type="translate" to="-350,0" dur="0.5s" fill="freeze" begin="Theme_Button_8.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l9" attributeName="transform" type="translate" to="-400,0" dur="0.5s" fill="freeze" begin="Theme_Button_9.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l10" attributeName="transform" type="translate" to="-450,0" dur="0.5s" fill="freeze" begin="Theme_Button_10.focusin" />

<animateTransform xlink:href="#Layer_1" id="_anim_l11" attributeName="transform" type="translate" to="-500,0" dur="0.5s" fill="freeze" begin="Theme_Button_11.focusin" />
--------------------- End Of Code ------------

Hope this helps.

Thanks
Offline  
Old 03-12-2009, 11:02 AM   #8
ringyringy
New Member
 
Join Date: Mar 2009
Model: 8350i
PIN: N/A
Carrier: Verizon
Posts: 2
Default

Thanks DD12!
Offline  
Old 03-12-2009, 07:42 PM   #9
DD12
Thumbs Must Hurt
 
Join Date: Jan 2009
Model: 9530
PIN: N/A
Carrier: Telus
Posts: 107
Default

I thought more people would be excited to learn this.
Offline  
Old 03-12-2009, 08:17 PM   #10
wu-wei
Talking BlackBerry Encyclopedia
 
wu-wei's Avatar
 
Join Date: Jul 2007
Model: 9700
OS: Yes
PIN: A GADDA DA VIDA
Carrier: T-Mobile USA
Posts: 480
Default

Wirelessly posted (8800)

I'm pretty stoked, I just need to set aside some time to get back to Plazmic and start playing again.
Offline  
Closed Thread



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

Forum Jump


LCD Digital Multimeter Voltmeter Ammeter Ohmmeter Volt AC DC Tester Leads Meter picture

LCD Digital Multimeter Voltmeter Ammeter Ohmmeter Volt AC DC Tester Leads Meter

$9.95



Genuine Husqvarna 532122822 Ammeter 15 AMP Fits Craftsman AYP 121433X 122822X picture

Genuine Husqvarna 532122822 Ammeter 15 AMP Fits Craftsman AYP 121433X 122822X

$19.58



5/10Pcs DC 100V 10A Digital Voltmeter Ammeter LED Amp Volt Meter Current Gauge picture

5/10Pcs DC 100V 10A Digital Voltmeter Ammeter LED Amp Volt Meter Current Gauge

$21.98



Digital Multimeter AC DC Voltmeter Ammeter Ohmmeter Volt Tester Meter DM850 picture

Digital Multimeter AC DC Voltmeter Ammeter Ohmmeter Volt Tester Meter DM850

$7.95



Digital Multimeter Voltmeter BSIDE AC DC Ammeter Ohmmeter Volt Meter Tester Ohm picture

Digital Multimeter Voltmeter BSIDE AC DC Ammeter Ohmmeter Volt Meter Tester Ohm

$24.98



LCD Digital MULTIMETER Voltmeter Ammeter Ohmmeter Volt AC DC Tester Leads Meters picture

LCD Digital MULTIMETER Voltmeter Ammeter Ohmmeter Volt AC DC Tester Leads Meters

$7.95







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.