ok - sorry I took so long. There isnt a tutorial on a sliding dock (there is one for droid hidden). However, you can find a horizontal sliding dock in your theme builder folders
I go here: c:\program files (x86)\Researh In Motion\BlackberryThemeStudio5.0\Samples\Themes\Cus tom\JScroll\
Right click on jscroll.svg and goto Open With and choose notepad
Scroll all the way to the bottom and you will see this code.
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" />
This is a theme with 10 buttons that slide left to right. You will notice the numbers here (0,0 / -50,0 / -100,0 .....etc) To make it scroll from top to bottom, flip those numbers.
You can see my slip n slide theme
here (there is a video on the bottom). I used jscroll as a base and just added to it.
Create your compose section with the icons on top of eachother to the left, or right.
Paste that code (from above) at the very bottom of the svg file before the </svg> tag(when you save it in composer) and tweak it. Make sure you change the Theme Button_ tags to apply to the name of your buttons.
Feel free to hit me up if you have any questions.