Example Code
<obshow:Show id="Show1" runat="server" TransitionType="Scrolling" ScrollingSpeed="1000" ScrollingStep="5"> <Panels> <obshow:Panel> ... Panel Content here ...
VS.NET
Show1.TransitionType = TransitionType.Scrolling
Show1.ScrollingSpeed = 1000
Show1.ScrollingStep = 5
C#
Show1.TransitionType = TransitionType.Scrolling;
Show1.ScrollingSpeed = 1000;
Show1.ScrollingStep = 5;
Javascript
Show1.ScrollingSpeed = 1000;
Show1.ScrollingStep = 3;