Join Our 3 MILLION+ Members Today! Register Here | Login
Go Back   BlackBerry Forums at CrackBerry.com > BlackBerry Professionals > Theme Developers

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
    Thread Author   #1  
Old 10-08-2011, 12:06 PM
CrackBerry Abuser
Device(s): Blackberry Torch 9800
 
Location: The Netherlands
Join Date: Mar 2011
Posts: 266
Likes Received: 0
Thanked 15 Times in 10 Posts
Default Tabs for Today lists?

Is there a way to create tabs for different todaylists (calendar, tasks, messages).
Not like the hidden today lists. But to click on a tab-button and to display the calendar list. This will then be displayed until to click on another button of the tab?
Reply With Quote Tip this Post
  #2  
Old 10-10-2011, 08:34 AM
CrackBerry Genius
Device(s): iPhone 4s
Carrier: Verizon
 
Join Date: Nov 2009
Posts: 2,310
Likes Received: 88
Thanked 169 Times in 112 Posts
Default

yes, but you would have to build it like a hidden today. tapping the "tab" would then display that list.
__________________
Reply With Quote Tip this Post
  #3  
Old 10-11-2011, 12:14 PM
CrackBerry User
Device(s): Torch 9800
 
Location: Canada
Join Date: Jun 2011
Posts: 95
Likes Received: 2
Thanked 5 Times in 5 Posts
Default

Yea wouldn't be too hard, click of the first button/tab would show the hs0 items, click of the second button/tab would show the hs1 items and so on...then maybe a hotkey or button to hide all...regardless of which tab is shown.

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
  #4  
Old 10-11-2011, 12:18 PM
CrackBerry User
Device(s): Torch 9800
 
Location: Canada
Join Date: Jun 2011
Posts: 95
Likes Received: 2
Thanked 5 Times in 5 Posts
Default

I should mention with the hidden today code for each tab you would want it to be displaying the 'wanted' items and hidding the unwanted for each one. Like tab1 would showhidehide, tab2 would hideshowhide, and tab3 would hidehideshow...and your hide all button/hotkey would hidehidehide. Make sense?

Posted from my CrackBerry at wapforums.crackberry.com
Reply With Quote Tip this Post
    Thread Author   #5  
Old 10-15-2011, 12:56 AM
CrackBerry Abuser
Device(s): Blackberry Torch 9800
 
Location: The Netherlands
Join Date: Mar 2011
Posts: 266
Likes Received: 0
Thanked 15 Times in 10 Posts
Default

Quote:
Originally Posted by Jaded04 View Post
Yea wouldn't be too hard, click of the first button/tab would show the hs0 items, click of the second button/tab would show the hs1 items and so on...then maybe a hotkey or button to hide all...regardless of which tab is shown.

Posted from my CrackBerry at wapforums.crackberry.com
But how can you show and hide the hs[nr] items? Where do you program this onto the buttons?
Reply With Quote Tip this Post
  #6  
Old 10-15-2011, 08:39 AM
CrackBerry Master
Device(s): 9550 (Storm2)
Carrier: Verizon
 
Location: Ohio
Join Date: Jun 2009
Posts: 1,473
Likes Received: 20
Thanked 82 Times in 59 Posts
Default

If you've ever looked at my theme Stellar you will see that I did the very same thing you are talking about.

Stellar video

Code:
<set xlink:href="#hs0_line" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#hs0" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages1hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages2hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages3hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages4hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages5hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages6hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages7hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages8hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>

<set xlink:href="#hs0_line" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#hs0" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages1hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages2hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages3hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages4hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages5hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages6hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages7hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages8hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>

<set xlink:href="#hs0_line" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#hs0" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages1hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages2hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages3hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages4hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages5hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages6hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages7hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages8hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>


<set xlink:href="#hs1_line" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#hs1" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar1hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar2hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar3hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar4hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar5hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar6hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar7hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar8hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>

<set xlink:href="#hs1_line" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#hs1" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar1hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar2hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar3hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar4hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar5hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar6hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar7hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar8hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>

<set xlink:href="#hs1_line" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#hs1" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar1hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar2hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar3hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar4hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar5hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar6hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar7hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar8hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>


<set xlink:href="#hs2_line" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#hs2" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms1hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms2hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms3hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms4hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms5hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms6hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms7hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms8hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>

<set xlink:href="#hs2_line" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#hs2" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms1hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms2hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms3hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms4hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms5hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms6hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms7hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms8hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>

<set xlink:href="#hs2_line" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#hs2" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms1hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms2hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms3hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms4hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms5hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms6hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms7hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms8hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>


<set xlink:href="#hs3_line" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#hs3" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall1hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall2hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall3hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall4hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall5hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall6hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall7hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall8hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>

<set xlink:href="#hs3_line" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#hs3" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall1hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall2hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall3hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall4hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall5hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall6hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall7hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall8hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>

<set xlink:href="#hs3_line" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#hs3" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall1hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall2hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall3hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall4hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall5hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall6hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall7hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall8hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
__________________
My Themes
RJ Design
Reply With Quote Tip this Post
    Thread Author   #7  
Old 10-15-2011, 05:55 PM
CrackBerry Abuser
Device(s): Blackberry Torch 9800
 
Location: The Netherlands
Join Date: Mar 2011
Posts: 266
Likes Received: 0
Thanked 15 Times in 10 Posts
Default

OK, thanks. Your theme was a real inspiration.
Made 6 todaylists with tabs.
Reply With Quote Tip this Post
  #8  
Old 10-15-2011, 06:48 PM
CrackBerry Master
Device(s): 9550 (Storm2)
Carrier: Verizon
 
Location: Ohio
Join Date: Jun 2009
Posts: 1,473
Likes Received: 20
Thanked 82 Times in 59 Posts
Default

Quote:
Originally Posted by gdanonym View Post
OK, thanks. Your theme was a real inspiration.
Made 6 todaylists with tabs.
No problem, thats why we are all here.
__________________
My Themes
RJ Design
Reply With Quote Tip this Post
    Thread Author   #9  
Old 10-16-2011, 12:51 PM
CrackBerry Abuser
Device(s): Blackberry Torch 9800
 
Location: The Netherlands
Join Date: Mar 2011
Posts: 266
Likes Received: 0
Thanked 15 Times in 10 Posts
Default

Quote:
Originally Posted by jalaw View Post
If you've ever looked at my theme Stellar you will see that I did the very same thing you are talking about.

Stellar video

Code:
<set xlink:href="#hs0_line" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#hs0" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages1hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages2hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages3hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages4hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages5hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages6hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages7hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#messages8hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>

<set xlink:href="#hs0_line" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#hs0" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages1hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages2hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages3hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages4hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages5hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages6hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages7hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#messages8hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>

<set xlink:href="#hs0_line" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#hs0" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages1hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages2hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages3hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages4hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages5hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages6hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages7hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#messages8hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>


<set xlink:href="#hs1_line" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#hs1" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar1hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar2hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar3hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar4hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar5hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar6hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar7hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#calendar8hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>

<set xlink:href="#hs1_line" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#hs1" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar1hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar2hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar3hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar4hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar5hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar6hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar7hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#calendar8hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>

<set xlink:href="#hs1_line" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#hs1" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar1hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar2hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar3hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar4hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar5hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar6hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar7hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#calendar8hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>


<set xlink:href="#hs2_line" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#hs2" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms1hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms2hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms3hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms4hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms5hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms6hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms7hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#sms8hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>

<set xlink:href="#hs2_line" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#hs2" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms1hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms2hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms3hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms4hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms5hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms6hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms7hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#sms8hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>

<set xlink:href="#hs2_line" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#hs2" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms1hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms2hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms3hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms4hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms5hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms6hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms7hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>
<set xlink:href="#sms8hotspot" attributeName="visibility" to="hidden"   begin="phonelog.focusin+0.4s"/>


<set xlink:href="#hs3_line" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#hs3" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall1hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall2hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall3hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall4hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall5hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall6hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall7hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>
<set xlink:href="#missedcall8hotspot" attributeName="visibility" to="hidden"   begin="messages.focusin+0.4s"/>

<set xlink:href="#hs3_line" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#hs3" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall1hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall2hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall3hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall4hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall5hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall6hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall7hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>
<set xlink:href="#missedcall8hotspot" attributeName="visibility" to="hidden"   begin="calendar.focusin+0.4s"/>

<set xlink:href="#hs3_line" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#hs3" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall1hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall2hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall3hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall4hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall5hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall6hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall7hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
<set xlink:href="#missedcall8hotspot" attributeName="visibility" to="hidden"   begin="smsmms.focusin+0.4s"/>
Do you have also the code on which you slide in and slide out the different lists, like you have in your Stellar theme?
Reply With Quote Tip this Post
  #10  
Old 10-16-2011, 05:37 PM
CrackBerry Master
Device(s): 9550 (Storm2)
Carrier: Verizon
 
Location: Ohio
Join Date: Jun 2009
Posts: 1,473
Likes Received: 20
Thanked 82 Times in 59 Posts
Default

Quote:
Originally Posted by gdanonym View Post
Do you have also the code on which you slide in and slide out the different lists, like you have in your Stellar theme?
Here is the basic code to make items slide. You will have to fill in the XXXXXXs with the correct tags as each theme is different. Hope this helps.

Quote:
<animateTransform xlink:href="#XXXXXXXXXXXXX" id="_anim_XX"
attributeName="transform" type="translate"
to="-480,0" dur="0.5s"
fill="freeze" begin="XXXXXXX.focusin" />
__________________
My Themes
RJ Design
Reply With Quote Tip this Post
    Thread Author   #11  
Old 10-17-2011, 01:06 AM
CrackBerry Abuser
Device(s): Blackberry Torch 9800
 
Location: The Netherlands
Join Date: Mar 2011
Posts: 266
Likes Received: 0
Thanked 15 Times in 10 Posts
Default

Quote:
Originally Posted by jalaw View Post
Here is the basic code to make items slide. You will have to fill in the XXXXXXs with the correct tags as each theme is different. Hope this helps.
Thanks, is the order of the lines in the svg file, the order on which is it executed.
I don't have a in/out of focus, but on a button activation.
So one button activation should first get rid of the other lists, and showing the list of the button.

Or is this done by setting the showing of the one list by adding a time with the beginning, like in your lines:
begin="phonelog.focusin+0.4s"

I have to changes all the lines to the side sliding lines, so this will take a while. Hopefully it's correct the first time.
Reply With Quote Tip this Post
    Thread Author   #12  
Old 10-17-2011, 02:31 AM
CrackBerry Abuser
Device(s): Blackberry Torch 9800
 
Location: The Netherlands
Join Date: Mar 2011
Posts: 266
Likes Received: 0
Thanked 15 Times in 10 Posts
Default

I think there is another problem...
I have 6 lists, and using button press to activate. So if an button is pressed, i know which button it is, but what i don't know is which lists was shown. So sliding all lists to out of the screen by default, will cause to slide the already hidden lists more.
These will not show if i just slide them to the right anymore. Because the sliding is relative to the place it has.
For only 2 lists, this is ok. But for more lists this problem occurs.
Solving it by in and out of focus doesn't work, because i have 6 buttons on which you could navigate. And keeping the focus on the button is not possible, because of other buttons on the screen.
See the screenshot of the theme.

Is there a way to slide absolute to a fixed place?

Is there an overview of all XML command for SVG?
Attached Images
File Type: jpg gdTheme_MultiLists_v1.04.jpg (110.4 KB, 10 views)
Reply With Quote Tip this Post
Reply
BlackBerry Forums at CrackBerry.com > > BlackBerry Professionals > Theme Developers   Tabs for Today lists?

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes