Start/Stop Scrolling in Source

Charles Britto

New Member
How Can i start Re scrolling text in source. I.E only when i want to go for the next scene .
At present the scrolling is continous, and when i go for the transition the text does not start scrolling from the beginning of the text...
 

yahyahussaini

New Member
To start re-scrolling text only when transitioning to the next scene, you need to reset the scroll position manually at the start of each new scene. If you're using a language like JavaScript, you can set the scroll position to 0 (e.g., element.scrollTop = 0) when the scene changes. Also, pause the auto-scrolling by default and trigger it only when the next scene starts. This ensures the text starts scrolling from the top each time, instead of continuing from where it left off.
 

Austin Sean

New Member
To start re-scrolling text only when transitioning to the next scene, you can manually reset the scroll position at the start of each new scene. If you're using JavaScript, set the scroll position to 0 (e.g., `element.scrollTop = 0`) when the scene changes. Also, pause the auto-scrolling by default and trigger it only when the next scene starts to ensure the text begins scrolling from the top each time.
 
Top