Currently, we can zoom by holding command button and scrolling with two fingers. But it will be better if we can pinch to zoom .
2 Likes
Thanks swiftly, I couldn’t figure out how to scroll on the mac. Is this written down anywhere? Pinch zoom would be a good feature.
Slide two fingers up or down to scroll.
This works occasionally on my Windows laptop touchpad, but a large percentage of the time it does nothing. The lack of a way to zoom without the mouse wheel is just ridiculous and aggravating. Like many producers I don’t usually use a mouse. It’s an absurdly easy feature to implement. Just give us the option to choose a keyboard shortcut instead.
claire
December 29, 2022, 8:56pm
5
As a workaround until Dreamtonics improves the keybind options, users with the Pro edition can hotkey these scripts to zoom in/out:
// zooms in (normally only possible with mousewheel)
var SCRIPT_TITLE = "Zoom In";
// how much to zoom per button press (as a percent)
var ZOOM_FACTOR = 0.2;
function getClientInfo() {
return {
"name": SV.T(SCRIPT_TITLE),
"category": "Claire's Scripts - Hotkey Scripts",
"author": "https://github.com/claire-west/svstudio-scripts",
"versionNumber": 1,
"minEditorVersion": 65537
}
}
function zoomViewport() {
var viewport = SV.getMainEditor().getNavigation();
var currentScale = viewport.getTimePxPerUnit();
viewport.setTimeScale(currentScale + (currentScale * ZOOM_FACTOR));
This file has been truncated. show original
// zooms in (normally only possible with mousewheel)
var SCRIPT_TITLE = "Zoom Out";
// how much to zoom per button press (as a percent)
var ZOOM_FACTOR = 0.2;
function getClientInfo() {
return {
"name": SV.T(SCRIPT_TITLE),
"category": "Claire's Scripts - Hotkey Scripts",
"author": "https://github.com/claire-west/svstudio-scripts",
"versionNumber": 1,
"minEditorVersion": 65537
}
}
function zoomViewport() {
var viewport = SV.getMainEditor().getNavigation();
var currentScale = viewport.getTimePxPerUnit();
viewport.setTimeScale(currentScale - (currentScale * ZOOM_FACTOR));
This file has been truncated. show original