items
Set Event Date

Audio Visual for Rent

24299

Audio visual rentals in Dsyton, Ohio from A&S Party Rental — movie screens, projectors, PA systems, microphones, uplighting, and Cold SPARX machines for  any event!

Professional delivery to Dayton Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Audio Visual Rentals in Dayton, Ohio

Bring sound, light, and big-screen excitement to your next event with A&S Party Rental’s audio visual rentals in Dayton! Perfect for company picnics, weddings, school events, birthday parties, and family gatherings, our AV equipment makes every moment louder, brighter, and unforgettable.

Choose from inflatable movie screens, projectors, PA systems, microphones, uplighting, and Cold SPARX machines to create the perfect atmosphere for your celebration. Whether it’s a movie night under the stars, wedding reception, or corporate event, our AV rentals bring professional quality and fun to every event.

Whether it’s a company picnic, backyard party, or special celebration, our AV equipment ensures your event is entertaining, memorable, and visually spectacular.

Light it up and turn up the volume—contact A&S Party Rental today to reserve your audio visual rentals for your Dayton event!

function CategoryGallery(rental_id, rental_name, images_arr){ var rid = rental_id; var rentalName = rental_name; // Normalize images_arr: it may arrive as a JSON string, an object, or be undefined try { if (typeof images_arr === 'string' && images_arr.length) { images_arr = JSON.parse(images_arr); } } catch (e) { images_arr = {}; } if (!images_arr) images_arr = {}; // Where to append anchors and thumbs var $bigAfter = jQuery('#io_img_big2_' + rid); var $thumbAfter = jQuery('#io_img_thumb1_' + rid); if ($bigAfter.length && $thumbAfter.length) { var relVal = $bigAfter.attr('rel') || 'img_group noopener'; // Helper to validate a URL-like value (non-empty and not literal placeholders) var isValid = function (u) { if (!u) return false; var s = String(u).trim(); if (!s) return false; if (s.indexOf('%%') !== -1) return false; // ignore unreplaced placeholders if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false; return true; }; var addedThumbs = 0; // Iterate image map and append missing big anchors and thumbs for (var key in images_arr) { if (!images_arr.hasOwnProperty(key)) continue; var imgObj = images_arr[key] || {}; var href = imgObj["rentalimage_imagelocbig"] || imgObj["imagelocbig"] || imgObj["big"]; var src = imgObj["rentalimage_imageloc"] || imgObj["imageloc"] || imgObj["thumb"]; // Compute index consistent with existing templates var n = parseInt(key, 10); if (isNaN(n)) { // Try to derive from position by incrementing a counter if keys are not numeric n = 1; } // Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing var bigIndex = n + 1; // matches io_cart_shortcode.html pattern var thumbIndex = n + 1; // thumb id series aligns with big series in newer code // Add big anchor if valid and not already present if (isValid(href)) { var bigId = '#io_img_big' + bigIndex + '_' + rid; if (jQuery(bigId).length === 0) { var $a = jQuery('', { rel: relVal, href: href, id: 'io_img_big' + bigIndex + '_' + rid }); $bigAfter.after($a); $bigAfter = $a; // maintain insertion point } } // Add thumbnail if valid and not already present if (isValid(src)) { var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid; if (jQuery(thumbId).length === 0) { var $img = jQuery('', { 'class': 'io_image_thumb skip-lazy', title: rentalName, src: src, alt: rentalName, id: 'io_img_thumb' + thumbIndex + '_' + rid }).on('mouseover', function () { if (typeof updateMainPic === 'function') { updateMainPic(this); } }); $thumbAfter.after($img); $thumbAfter = $img; // maintain insertion point addedThumbs++; } } } // Reveal the thumbnail box if we added any extra thumbnails if (addedThumbs > 0) { jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show(); } } } // Function to generate list view content on demand (global scope) generateListViewContent = function() { console.log('[IO List View] Generating list view content dynamically'); jQuery('.io_item2_list').each(function() { var $item = jQuery(this); // Skip if already generated if ($item.find('.io_list_view_content').length > 0) { return; } // Extract rental_id from the item var rentalId = $item.find('.item_rentalid').text().trim(); if (!rentalId) { console.warn('[IO List View] No rental_id found for item, skipping'); return; } // Read data from dynamically named global variables // var description = String(window['data_description_' + rentalId] || "").replace(/[\r\n]+/g, "").trim(); var indoorOutdoor = String(window.io_category_data[rentalId]["indoor_outdoor"] || "").replace(/[\r\n]+/g, "").trim(); var staff = String(window.io_category_data[rentalId]["staff"] || "").replace(/[\r\n]+/g, "").trim(); var electric = String(window.io_category_data[rentalId]["electric"] || "").replace(/[\r\n]+/g, "").trim(); var dimensions = String(window.io_category_data[rentalId]["dimensions"] || "").replace(/[\r\n]+/g, "").trim(); // Helper function to strip HTML tags from text var stripHtml = function(html) { var tmp = document.createElement("DIV"); tmp.innerHTML = html; return (tmp.textContent || tmp.innerText || "").trim(); }; // Helper function to escape HTML to prevent XSS var escapeHtml = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); }; // Strip HTML tags from description // description = stripHtml(description); // Build the HTML structure with escaped content var html = '
'; // html += '
' + escapeHtml(description) + '
'; html += '
'; // Setup field - only add if valid if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) { html += '
'; html += 'Setup:'; html += '' + escapeHtml(indoorOutdoor) + ''; html += '
'; } // Operators field - only add if valid var operatorsText = staff ? staff + ' Adult Supervision Required' : ""; if (operatorsText && operatorsText !== '0 Adult Supervision Required' && operatorsText !== 'Adult Supervision Required' && operatorsText !== '0') { html += '
'; html += 'Operators:'; html += '' + escapeHtml(operatorsText) + ''; html += '
'; } // Power field - only add if valid var powerText = electric ? electric + ' Outlets' : ""; if (powerText && powerText !== '0 Outlets' && powerText !== '0.00 Outlets' && powerText !== 'Outlets' && powerText !== '0') { html += '
'; html += 'Power:'; html += '' + escapeHtml(powerText) + ''; html += '
'; } // Size field - only add if valid if (dimensions && dimensions !== '0' && dimensions.length > 0) { html += '
'; html += 'Size:'; html += '' + escapeHtml(dimensions) + ''; html += '
'; } html += '
'; // close io_item_details_labeled html += '
'; // close io_list_view_content // Insert before the buttons container $item.find('.io_buttons_container').before(html); }); } jQuery(document).ready(function($) { jQuery(".io_item2_list").each(function(){ var rentalId = jQuery(this).find('.item_rentalid').text().trim(); if (io_categoryVariantImages == 'on'){ CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId]["images_arr"]); } }); console.log('[IO View Toggle] Document ready, initializing view toggle functionality'); // Check if category_id has a numeric value to identify actual category pages // This must happen before any view state is applied var categoryId = $('.category_id').text().trim(); var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0; if (!hasNumericCategoryId) { console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization'); return; } console.log('[IO View Toggle] Category page detected with categoryId:', categoryId); $('body').addClass('io-has-category-id'); // Show the toggle buttons on category pages $('.io_view_toggle_container').show(); console.log('[IO View Toggle] Toggle buttons displayed for category page'); // Track if view toggle has been initialized var isInitialized = false; // Initialize view toggle functionality function initViewToggle(force) { // Skip if already initialized unless forced if (isInitialized && !force) { console.log('[IO View Toggle] Already initialized, skipping'); return; } console.log('[IO View Toggle] Initializing view toggle functionality'); // Check if toggle buttons exist if ($('.io_view_toggle_btn').length === 0) { console.warn('[IO View Toggle] Toggle buttons not found in DOM'); return; } console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons'); // Check if category container exists if ($('.io_catdiv2').length === 0) { console.warn('[IO View Toggle] Category container (.io_catdiv2) not found'); return; } console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers'); // Get saved view preference from localStorage var savedView = localStorage.getItem('io_category_view') || 'tile'; console.log('[IO View Toggle] Retrieved saved view preference:', savedView); // Set initial view $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view'); console.log('[IO View Toggle] Applied initial view class:', savedView + '-view'); // Update button states $('.io_view_toggle_btn').removeClass('active'); $('.io_view_toggle_btn[data-view="' + savedView + '"]').addClass('active'); console.log('[IO View Toggle] Updated button states, active button:', savedView); // Generate list view content if initial view is list if (savedView === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available yet'); } } // Log current items count var itemCount = $('.io_item2_list').length; console.log('[IO View Toggle] Found', itemCount, 'items in category'); // Handle toggle button clicks using native JavaScript for better compatibility // Remove any existing event listeners first $('.io_view_toggle_btn').off('click.viewToggle'); // Use native JavaScript addEventListener for more reliable event handling var buttons = document.querySelectorAll('.io_view_toggle_btn'); console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS'); buttons.forEach(function(button) { // Remove any existing listener var newButton = button.cloneNode(true); button.parentNode.replaceChild(newButton, button); // Add fresh event listener newButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var view = this.getAttribute('data-view'); console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view); // Generate list view content if switching to list view if (view === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } // Update button states document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) { btn.classList.remove('active'); }); this.classList.add('active'); console.log('[IO View Toggle] Updated button active states'); // Update grid view var catdiv = document.querySelector('.io_catdiv2'); if (catdiv) { catdiv.classList.remove('tile-view', 'list-view'); catdiv.classList.add(view + '-view'); console.log('[IO View Toggle] Applied view class:', view + '-view'); } // Save preference localStorage.setItem('io_category_view', view); console.log('[IO View Toggle] Saved view preference to localStorage:', view); // Debug: Log current layout state setTimeout(function() { if (catdiv) { var containerClasses = catdiv.className; var visibleItems = document.querySelectorAll('.io_item2_list:not([style*="display: none"])').length; console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses); console.log('[IO View Toggle] Visible items after view change:', visibleItems); // Check if list view content is properly shown/hidden if (view === 'list') { var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*="display: none"])').length; console.log('[IO View Toggle] Visible list content elements:', visibleListContent); } } }, 100); }, true); // Use capture phase console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view')); }); console.log('[IO View Toggle] Event handlers attached successfully'); // Mark as initialized isInitialized = true; } // Initialize when page loads console.log('[IO View Toggle] Starting initial setup'); initViewToggle(); // Also initialize after dynamic content loads (if applicable) $(document).on('io_content_loaded', function() { console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing'); initViewToggle(); }); // Debug: Monitor for DOM changes that might affect our functionality if (typeof MutationObserver !== 'undefined') { var mutationTimeout; var lastItemCount = $('.io_item2_list').length; var observer = new MutationObserver(function(mutations) { // Debounce: clear existing timeout and set a new one clearTimeout(mutationTimeout); mutationTimeout = setTimeout(function() { var currentItemCount = $('.io_item2_list').length; // Only trigger if we have new items that weren't there before if (currentItemCount > lastItemCount) { console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')'); lastItemCount = currentItemCount; // If already initialized, just generate list view content for new items if in list view if (isInitialized) { var currentView = localStorage.getItem('io_category_view') || 'tile'; if (currentView === 'list') { console.log('[IO View Toggle] Generating list view content for new items'); if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } } else { // Not initialized yet, so initialize console.log('[IO View Toggle] Initializing due to new items'); initViewToggle(); } } }, 250); // 250ms debounce }); observer.observe(document.body, { childList: true, subtree: true }); console.log('[IO View Toggle] DOM mutation observer started'); } // Debug: Log window resize events that might affect responsive layout $(window).on('resize.viewToggle', function() { var windowWidth = $(window).width(); var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile'; console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView); }); console.log('[IO View Toggle] Initialization complete'); });

window.io_category_data = window.io_category_data || {}; window.io_category_data['1783755'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1783755","rental_name":"Bubble \u0026 Fog Machine","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222085923\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221783755\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fogbubblemachine_1756305184.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/fogbubblemachine_1756305184_big.png\u0022}}"};

Bubble & Fog Machine

from $200.00

Bubble+%26+Fog+Machine

https://www.aspartyrental.com/rentals/audio-visual/bubble-fog-machine/

1783755

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227408'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"227408","rental_name":"Bull Horn","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022827993\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022227408\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/THUN250-500x500-1_1667572705.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/THUN250-500x500-1_1667572705_big.png\u0022}}"};

Bull Horn

from $0.00

Bull+Horn

https://www.aspartyrental.com/rentals/audio-visual/bull-horn/

227408

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1694751'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1694751","rental_name":"Cold Sparx Machine","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222152125\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221694751\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/coldsparx_1761144895.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/coldsparx_1761144895_big.jpg\u0022}}"};

Cold Sparx Machine

from $350.00

Cold+Sparx+Machine

https://www.aspartyrental.com/rentals/audio-visual/cold-sparx-machine/

1694751

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['442229'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"442229","rental_name":"GOBO Monogram light","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022506229\u0022,\u0022rentalimage_createtime\u0022:\u00221631204917\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221631204917\u0022,\u0022rentalimage_itemid\u0022:\u0022442229\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/GOBO Light Example_777968196.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/GOBO Light Example_777968196_big.jpg\u0022}}"};

GOBO Monogram light

from $200.00

GOBO+Monogram+light

https://www.aspartyrental.com/rentals/audio-visual/gobo-monogram-light/

442229

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2011311'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"10.2x10.2x68.5","rental_id":"2011311","rental_name":"Industrial Floor Lamp","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221159299\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222011311\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5458_1692295811.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5458_1692295811_big.JPG\u0022}}"};

Industrial Floor Lamp

from $30.00

Industrial+Floor+Lamp

https://www.aspartyrental.com/rentals/audio-visual/industrial-floor-lamp/

2011311

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227410'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"227410","rental_name":"LED Can Light","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002257739\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022227410\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/eda4643dc2b3692ffbbf5f9a5890b8ac.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/eda4643dc2b3692ffbbf5f9a5890b8ac.jpg\u0022}}"};

LED Can Light

from $0.00

LED+Can+Light

https://www.aspartyrental.com/rentals/audio-visual/led-can-light/

227410

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1159223'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"1159223","rental_name":"LED Safety Lights","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022239313\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221159223\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LED Event Lights_659264200.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LED Event Lights_659264200_big.jpg\u0022}}"};

LED Safety Lights

from $150.00

LED+Safety+Lights

https://www.aspartyrental.com/rentals/audio-visual/led-event-lights/

1159223

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['234200'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"234200","rental_name":"Nighttime Inflatable Movie Screen *without media player*","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022827991\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022234200\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/910fd39a-fb2f-4b52-bd63-14ab7bc58a31.eb146e961ad197556eb9b6cb2bfa2768_1667572645.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/910fd39a-fb2f-4b52-bd63-14ab7bc58a31.eb146e961ad197556eb9b6cb2bfa2768_1667572645_big.jpeg\u0022}}"};

Nighttime Inflatable Movie Screen *without media player*

from $0.00

Nighttime+Inflatable+Movie+Screen+%2Awithout+media+player%2A

https://www.aspartyrental.com/rentals/audio-visual/inflatable-movie-screen-must-be-played-at-dusk/

234200

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216431'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216431","rental_name":"PA system (blue tooth) 2 Speakers (Microphone not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022818937\u0022,\u0022rentalimage_createtime\u0022:\u00221666633278\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221666633278\u0022,\u0022rentalimage_itemid\u0022:\u0022216431\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/ce0170ac36f0a8fd8b33622e2929b1ca.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/ce0170ac36f0a8fd8b33622e2929b1ca.jpg\u0022}}"};

PA system (blue tooth) 2 Speakers (Microphone not Included)

from $0.00

PA+system+%28blue+tooth%29+2+Speakers+%28Microphone+not+Included%29

https://www.aspartyrental.com/rentals/audio-visual/pa-system-1-speaker-microphone-not-included/

216431

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['979557'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"979557","rental_name":"Podium","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022193309\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022979557\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/wooden_lecturn-768x768_889368688.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/wooden_lecturn-768x768_889368688_big.jpg\u0022}}"};

Podium

from $75.00

Podium

https://www.aspartyrental.com/rentals/audio-visual/podium/

979557

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216471'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"Screen 72\u0027\u0027x72\u0027\u0027","rental_id":"216471","rental_name":"Projection Screen 99\u0027\u0027Diag","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253799\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216471\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/37f7e8fb238b9852e3ac94df5bc68179.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/37f7e8fb238b9852e3ac94df5bc68179.jpg\u0022}}"};

Projection Screen 99″Diag

from $0.00

Projection+Screen+99%22Diag

https://www.aspartyrental.com/rentals/audio-visual/projection-screen-99diag/

216471

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216425'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216425","rental_name":"Projector","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022828003\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216425\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/projector-audio-outputs.jpg_1667572826.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/projector-audio-outputs.jpg_1667572826_big.png\u0022}}"};

Projector

from $0.00

Projector

https://www.aspartyrental.com/rentals/audio-visual/projector-and-sound/

216425

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['810901'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"810901","rental_name":"Projector 3,000 Lumens","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022165789\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022810901\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Projector_694976713.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Projector_694976713_big.jpg\u0022}}"};

Projector 3,000 Lumens

from $100.00

Projector+3%2C000+Lumens

https://www.aspartyrental.com/rentals/audio-visual/projector-3000-lumens/

810901

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['439101'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"2x4x2","rental_id":"439101","rental_name":"Search Light 1K (110v)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221774043\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439101\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1382_1738861997.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1382_1738861997_big.jpg\u0022}}"};

Search Light 1K (110v)

from $250.00

Search+Light+1K+%28110v%29

https://www.aspartyrental.com/rentals/audio-visual/search-light-1k-110v/

439101

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['439103'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"2x6x2","rental_id":"439103","rental_name":"Search Light2-3 K (20-30 amp)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221774045\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439103\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1381_1738862027.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1381_1738862027_big.jpg\u0022}}"};

Search Light2-3 K (20-30 amp)

from $550.00

Search+Light2-3+K+%2820-30+amp%29

https://www.aspartyrental.com/rentals/audio-visual/search-light2-3-k-20-30-amp/

439103

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2086279'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"2086279","rental_name":"Snow Machine","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221224857\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222086279\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_6303_1699474414.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_6303_1699474414_big.JPG\u0022}}"};

Snow Machine

from $300.00

Snow+Machine

https://www.aspartyrental.com/rentals/audio-visual/snow-machine/

2086279

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['948785'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"3\u0027x3\u0027x5\u0027","rental_id":"948785","rental_name":"Social Photo Booth","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221273931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022948785\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2024-01-03 4.09.00 PM_1704319835.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2024-01-03 4.09.00 PM_1704319835_big.png\u0022}}"};

Social Photo Booth

from $550.00

Social+Photo+Booth

https://www.aspartyrental.com/rentals/photo-booth-rentals/social-photo-booth-min-3-hrs-100-per-additional-hr/

948785

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2168641'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2168641","rental_name":"Wireless LED Uplight","images_arr":"{}"};

Wireless LED Uplight

from $45.00

Wireless+LED+Uplight

https://www.aspartyrental.com/rentals/audio-visual/wireless-uplighting/

2168641

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['713703'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"713703","rental_name":"Wireless Microphone","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022155779\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022713703\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wireless Mic_532837729.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wireless Mic_532837729_big.jpg\u0022}}"};

Wireless Microphone

from $25.00

Wireless+Microphone

https://www.aspartyrental.com/rentals/audio-visual/wireless-microphone/

713703

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['229166'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"229166","rental_name":"Wired LED uplight","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002258473\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022229166\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0035 copy_545578679.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0035 copy_545578679_big.jpg\u0022}}"};

Wired LED uplight

from $0.00

Wired+LED+uplight

https://www.aspartyrental.com/rentals/audio-visual/led-uplight/

229166

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227711'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"227711","rental_name":"Staffing - 2 Hours","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820547\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022227711\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/ERo9TcqXYAYdEOK_1666794342.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/ERo9TcqXYAYdEOK_1666794342_big.jpg\u0022}}"};

Staffing – 2 Hours

from $0.00

Staffing+-+2+Hours

https://www.aspartyrental.com/rentals/audio-visual/staffing-2-hours/

227711

Unlimited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

Professional Audio-Visual Rentals

A&S Party Rental provides professional audio-visual rentals to enhance the quality and impact of your events and presentations. Whether you’re hosting a corporate meeting, conference, or special event, we have the equipment you need to captivate your audience and deliver a memorable experience.

Our rental options include state-of-the-art sound systems, high-definition projectors, screens, lighting equipment, and more, all designed to elevate the audio and visual aspects of your event. With our reliable equipment and expert technical support, you can trust A&S Party Rental to help you deliver a seamless and engaging presentation.

Renting audio-visual equipment from A&S Party Rental is easy and hassle-free. Simply browse our inventory, select your desired items, and let our experienced team handle the rest. We’ll deliver and set up the rentals at your event location, ensuring everything is ready for a successful and impactful presentation.

Don’t compromise on the quality of your audio-visual experience – choose A&S Party Rental for professional rentals that will impress your audience and elevate your event to the next level. Contact us today to learn more about our audio-visual rental options.