|
||||
Not sure if it would stop the scrollbars, but try changing all your today plugins from a type 4 to a type 5 and see if it gets rid of the scroll bars. Take note of what they were so you can change them back if it doesn't help. Use the registry key location below to make the changes.
HKLM\Software\Microsoft\Today\Items\"Plugin you want to lock or Unlock" change TYPE from 5 to 4 5=locked 4=unlock
__________________
Treo 600 -> Treo 650 ->Treo 700p -> Treo 700wx -> Mogul -> Touch Pro -> Touch Pro 2 -> HTC Evo
- [Guide] Get Root access & NAND Unlock your Evo (Full Root) - My Current AppBrain List |
|
||||
Here is something that might help, wont change on its own when you change views, but allows for multiple desk tops.
http://shop.my-symbian.com/PlatformP...SectionId=4725
__________________
“It is from numberless diverse acts of courage and belief that human history is shaped. Each time a man stands up for an ideal, or acts to improve the lot of others, or strikes out against injustice, he sends forth a tiny ripple of hope.”
Robert Kennedy Ha y'all come visit me at WMExperts some time. |
|
||||
Wisbar Advanced Desktop + Wisbar Advance 2 will actually let you load a different theme when the phone is slid open vs closed.
Not sure if this is exactly what you want though. |
|
||||
Quote:
|
|
||||
Theoretically you could write a script in mortscript that looks simliar to this one.. i just never really got a good grasp on how looping works... this will do what u want but not really bc it just redraws and redraws.. i guess you could set up a check to see if its already removed...
clearly im just checking to see the mode.. then im disabling the plugin of my choice (palringo start in this case) then redrawing the today Code:
#turn off plugin on landscape While(1) #Check for Orientation (landscape returns 1) x= Screen ("landscape") #If landscape is returned, turn off plugins and redraw today if(x=1) RegWriteDWord("HKLM", "\SOFTWARE\Microsoft\Today\Items\Palringo Start" , "Enabled", 0) RedrawToday #If Landscape is not returned, turn on plugin and redraw today Else RegWriteDWord("HKLM", "\SOFTWARE\Microsoft\Today\Items\Palringo Start", "Enabled", 1) RedrawToday EndIf EndWhile |
|
|
|