MEMORIAL DAY SALE: Save 15% on ALL BlackBerry Accessories! Use Coupon Code MEM12.
Join Our 3 MILLION+ Members Today! Register Here | Login
Go Back   BlackBerry Forums at CrackBerry.com > BlackBerry Professionals > App Developers

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
    Thread Author   #1  
Old 03-20-2010, 04:18 PM
CrackBerry Genius
Device(s): Droid X
Carrier: Verizon
Pin: K like the bing on your cherry..
 
Location: Toledo, OH
Join Date: Jun 2009
Posts: 1,544
Likes Received: 0
Thanked 2 Times in 2 Posts
Default Vertical Scrolling dock?

I've searched and couldn't find anything.

I got a request to make a theme with a vertical scrolling dock on the left hand side. I'm not sure how to do this in composer.

Can anyone help me, or point me to a good tutorial?
__________________
I HAVE RETIRED FROM THEMEING.


Well, hello there Droid X, I have been waiting for you...
Reply With Quote Tip this Post
  #2  
Old 03-21-2010, 04:07 PM
CrackBerry Genius
Device(s): 9930
Carrier: Big Red
Pin: TBA
 
Join Date: Feb 2009
Posts: 1,649
Likes Received: 5
Thanked 14 Times in 10 Posts
Default

Do you know how to do a horizontal scroll?

Flip the number sequence. It usually is 0,x make it x,0. I could make a cp file for you I suppose if you do not understand.
__________________

*** Blackberry Theme Lab ***
Icons, Tutorials, OTA Hosting and more!
FOLLOW US: Twitter | Facebook
Want to chat??? PIN: 32A439D7
I LOVE MY PLAYBOOK!!!
Reply With Quote Tip this Post
    Thread Author   #3  
Old 03-21-2010, 06:35 PM
CrackBerry Genius
Device(s): Droid X
Carrier: Verizon
Pin: K like the bing on your cherry..
 
Location: Toledo, OH
Join Date: Jun 2009
Posts: 1,544
Likes Received: 0
Thanked 2 Times in 2 Posts
Default

Yeah, I have no idea how to do a horizontal scroll. I would really love to learn....
__________________
I HAVE RETIRED FROM THEMEING.


Well, hello there Droid X, I have been waiting for you...
Reply With Quote Tip this Post
  #4  
Old 03-21-2010, 07:06 PM
CrackBerry Genius
Device(s): 9930
Carrier: Big Red
Pin: TBA
 
Join Date: Feb 2009
Posts: 1,649
Likes Received: 5
Thanked 14 Times in 10 Posts
Default

Lol ok. There is a tutorial somewhere. I will have to find it for you. Not home now.

Posted from my CrackBerry at wapforums.crackberry.com
__________________

*** Blackberry Theme Lab ***
Icons, Tutorials, OTA Hosting and more!
FOLLOW US: Twitter | Facebook
Want to chat??? PIN: 32A439D7
I LOVE MY PLAYBOOK!!!
Reply With Quote Tip this Post
    Thread Author   #5  
Old 03-21-2010, 08:01 PM
CrackBerry Genius
Device(s): Droid X
Carrier: Verizon
Pin: K like the bing on your cherry..
 
Location: Toledo, OH
Join Date: Jun 2009
Posts: 1,544
Likes Received: 0
Thanked 2 Times in 2 Posts
Default

Quote:
Originally Posted by b15ginz View Post
Lol ok. There is a tutorial somewhere. I will have to find it for you. Not home now.

Posted from my CrackBerry at wapforums.crackberry.com
Thank you! I've searched to no avail and couldn't find one.
__________________
I HAVE RETIRED FROM THEMEING.


Well, hello there Droid X, I have been waiting for you...
Reply With Quote Tip this Post
  #6  
Old 03-22-2010, 09:25 AM
CrackBerry Genius
Device(s): 9930
Carrier: Big Red
Pin: TBA
 
Join Date: Feb 2009
Posts: 1,649
Likes Received: 5
Thanked 14 Times in 10 Posts
Default

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.
__________________

*** Blackberry Theme Lab ***
Icons, Tutorials, OTA Hosting and more!
FOLLOW US: Twitter | Facebook
Want to chat??? PIN: 32A439D7
I LOVE MY PLAYBOOK!!!

Last edited by b15ginz; 03-22-2010 at 11:16 AM.
Reply With Quote Tip this Post
    Thread Author   #7  
Old 03-23-2010, 12:49 AM
CrackBerry Genius
Device(s): Droid X
Carrier: Verizon
Pin: K like the bing on your cherry..
 
Location: Toledo, OH
Join Date: Jun 2009
Posts: 1,544
Likes Received: 0
Thanked 2 Times in 2 Posts
Default

Wow, thank you very much!!

Now if I want an icon highlight I just add it pretty much the same way as I did for the hidden dock right?
__________________
I HAVE RETIRED FROM THEMEING.


Well, hello there Droid X, I have been waiting for you...
Reply With Quote Tip this Post
  #8  
Old 03-23-2010, 01:05 AM
CrackBerry Genius
Device(s): 9930
Carrier: Big Red
Pin: TBA
 
Join Date: Feb 2009
Posts: 1,649
Likes Received: 5
Thanked 14 Times in 10 Posts
Default

Quote:
Originally Posted by rgarling View Post
Wow, thank you very much!!

Now if I want an icon highlight I just add it pretty much the same way as I did for the hidden dock right?
No problem.

Yes, you click on the icon, click edit (under File at the top).

Then goto file>import or hit control m to import your hover over. Right click it, goto arrange, then send to back. Now, make it invisible on the first sequence, then visible on the second, then invisible on the third, then visible on the fourth.

__________________

*** Blackberry Theme Lab ***
Icons, Tutorials, OTA Hosting and more!
FOLLOW US: Twitter | Facebook
Want to chat??? PIN: 32A439D7
I LOVE MY PLAYBOOK!!!
Reply With Quote Tip this Post
  #9  
Old 03-24-2010, 09:50 PM
CrackBerry Master
Device(s): 9530 (Storm)
Carrier: Verizon
Pin: 306F0656
 
Location: Lockport Ny
Join Date: May 2009
Posts: 1,049
Likes Received: 0
Thanked 0 Times in 0 Posts
Default

ahazdesigns.com has video tutorials also on some composer stuff...
__________________
AHazDesigns.com For Tutorials
Reply With Quote Tip this Post
Reply
BlackBerry Forums at CrackBerry.com > > BlackBerry Professionals > App Developers   Vertical Scrolling dock?

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes