top of page
8966f7_e2f9756033314ae089b9bc17dd755577~mv2.png.avif

Create Your First Project

Start adding your projects to your portfolio. Click on "Manage Projects" to get started

DRY HIRE

Get In Touch

Call us on 0333 335 0178 to discuss your event.

Access top-of-the-line audio-visual equipment with our flexible dry hire options. For clients with the tech knowledge to go it alone, our warehouse team will makes sure you have everything you need to get set up. We can deliver to you or you collect from us, the coffee machine is always on! We offer competitive trade rates too.

bottom of page
// Block right-click document.addEventListener('contextmenu', function (e) { e.preventDefault(); }, false); // Block common dev tools / save shortcuts document.addEventListener('keydown', function (e) { // Block F12 if (e.key === 'F12') { e.preventDefault(); } // Block Ctrl+Shift+I / Ctrl+Shift+J / Ctrl+U / Ctrl+S if (e.ctrlKey && (e.key.toLowerCase() === 'u' || e.key.toLowerCase() === 's' || e.key.toLowerCase() === 'i' || e.key.toLowerCase() === 'j')) { e.preventDefault(); } // Block Cmd+S / Cmd+Option+I for Mac if (e.metaKey && (e.key.toLowerCase() === 's' || e.key.toLowerCase() === 'i')) { e.preventDefault(); } });