Produkteigenschaften:
Zum sicheren Fixieren der Führungsschiene, wird in der unteren Nut eingesetzt
Sicheres Fixieren mit dem MFT 3
Die Form des Festbügels ist auf die Führungsschienen Nut und die Profile des MFT und der Precisio abgestimmt.
Technische Daten:
Spannweite120 mm
Gewicht (inkl. Verpackung)0.702 kg
Länge (inkl. Verpackung)0.27 m
Höhe (inkl. Verpackung)0.045 m
Breite (inkl. Verpackung)0.145 m
Lieferumfang:
1x Festool Schraubzwinge FSZ 120, 2 Stück
- Hersteller
- Festool GmbH
-
Wertstr. 20,
70327 Wendlingen am Neckar,
Deutschland
Festool Schraubzwinge FSZ 120, 2 Stück
- Artikel-Nr.: 489570
- EAN: 4014549104958
- Hersteller: FESTOOL

const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
DHL Paket
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "8b167cb5c161f58f9d43f805d7f7b857");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "8b167cb5c161f58f9d43f805d7f7b857");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
Zuletzt angesehen
Festool Schraubzwinge FSZ 120, 2 Stück 32,10 €
Milwaukee Schnittschutzhandschuhe Kl. 1 L/9 3,18 €
Bosch PRO SDS plus-5C Meißelset, 0; 40; 20x250; 260; 250 mm, 3-tlg. 27,26 €
Milwaukee Hi-Vis Schnittschutzhandschuhe Klasse 2/B Größe 9 (L) 3,23 €
Bosch PRO SDS plus-4C Spitzmeißel, 250 mm 3,61 €
Metabo HSS-G-Kunststoffkassette SP, 25-teilig (627669000) 27,88 €
Metabo Bit-Box 32-teilig in Akku-Form (626696000) 7,83 €
Metabo metaBOX 145, leer (626883000) 28,88 €
Bosch Akku Exzenterschleifer GEX 12V-125 Solo ohne Akku/Ladegerät im Karton 124,70 €
Festool Adventskalender 2025 - 24 Türchen 269,99 €
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});