null
Image 1

IL PSL-H Concave Long Stem Player 4 Button - White

×
Price:
$1.95 (USD)
SKU
IL-PSLCV-PLAYER4-W
Weight
1.00 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
4 unit(s)

Why is there a quantity limit? Learn more. new-window-icon.png

Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    Important

    Cherry is now rebranded to ZF. The ZF switch is supposed to remain the same construction and characteristics as Cherry D44x, only new branding on the physical microswitch.  Our inventory may contain a mix of the two brands over the next few months and we are not separating them.  We will not honor requests to send only Cherry switches, nor return requests to swap for Cherry.  If you want Cherry-brand microswitches, please find another retail store that might have those older units on hand, as they are no longer manufactured. More information new-window-icon.png


    The American/EU styled, concave pushbutton by Industrias Lorenzo (IL) features a long stem body for metal and up to 3/4" wood control panels. Each button ships with nut and switch not attached, but installation of both to the button is very easy.

    Player indicator Button

    The indicator pushbutton features a universally recognized "Player" icon imprinted atop the concave plunger. You can find this for Player 1 through 4.

    Features

    • .187" terminal Silver Contact Microswitch Standard
    • High quality plastics for durability
    • Concave Plunger Design
    • Fits standard arcade sized 1.125" (1 1/8") hole
    • Dimensions: 2.6" L  x 1.5" H x 1.5" W 

    Choose 75g ZF D44X Microswitch or No Microswitch to Save

    The arcade-ready ZF D44X 75g .187" Microswitch is included with your purchase, or you can opt-out of a microswitch and get 40 cents off your purchase.

  • Product Reviews

    ×

    This product hasn't received any reviews yet. Be the first to review this product!

    Write A Review

×
×
// HTML Table Sorting let sortDirection = {}; // Keep track of the sort direction for each column function sortTableByColumn(columnIndex, type) { const table = document.getElementById("sortableTable"); let rows, switching, i, x, y, shouldSwitch; switching = true; // Set the sorting direction to ascending or flip it if already sorting this column let direction = sortDirection[columnIndex] === "asc" ? "desc" : "asc"; sortDirection[columnIndex] = direction; // Store the new direction while (switching) { switching = false; rows = table.rows; // Loop through all table rows (except the first, which contains table headers): for (i = 1; i < (rows.length - 1); i++) { shouldSwitch = false; // Get the two elements you want to compare, one from current row and one from the next: x = rows[i].getElementsByTagName("TD")[columnIndex]; y = rows[i + 1].getElementsByTagName("TD")[columnIndex]; let xContent = x.innerHTML.toLowerCase(); let yContent = y.innerHTML.toLowerCase(); // Type conversion for numeric sort if (type === 'number') { xContent = parseFloat(xContent) || 0; yContent = parseFloat(yContent) || 0; } // Check if the two rows should switch place: if (direction === "asc") { if (xContent > yContent) { shouldSwitch = true; break; } } else if (direction === "desc") { if (xContent < yContent) { shouldSwitch = true; break; } } } if (shouldSwitch) { // If a switch has been marked, make the switch and mark that a switch is done: rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; } } }