An open API service indexing awesome lists of open source software.

https://github.com/elevenisreallywonderful/vmix-btn-ctrl-ahk

This is a simple script to remove the zoom button in the Input selection window of the vmix.
https://github.com/elevenisreallywonderful/vmix-btn-ctrl-ahk

autohotkey autohotkey-v2 remove remover vmix windows zoom

Last synced: 2 months ago
JSON representation

This is a simple script to remove the zoom button in the Input selection window of the vmix.

Awesome Lists containing this project

README

        

[

Disable Zoom Button in vMix

](https://github.com/elevenisreallywonderful/vmixzoombuttonremoval/releases/tag/vmix)

This guide will help you disable the "Zoom" button in the vMix "Input Select" window using AutoHotkey v2.

| Step | Description |
| ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 1 |

Open the Spy for AHKv2


![Open AHKv2 Spy](img/1.png)
Launch the AHKv2 Window Spy tool. |
| 2 |

Open the "Input Select" Window in vMix


![Open Input Select](img/2.png)
Click on "Add Input" in vMix to open the "Input Select" window. |
| 3 |

Find the Class Name of the Input Select Window


Move your mouse over the "Input Select" window.
Note the class name displayed in the Spy tool. |
| 4 |

Paste the Class Name


![Paste Class Name](img/3.png)
Copy the class name from the Spy tool.
Paste it into the `vInputSelectWindowClassName` value. |
| 5 |

Get the ListBox Class Name


![ListBox Class Name](img/4.png)
Move your mouse over the ListBox within the "Input Select" window.
Note and copy the class name. |
| 6 |

Paste the Class Name


![Paste ListBox Class Name](img/5.png)
Paste it into the `vListBoxClassName` value. |
| 7 |

Find the Index of the "Zoom" Button


Identify the index of the "Zoom" button in the ListBox. |
| 8 |

Paste the Index


![Paste Index](img/6.png)
Paste it into the `vItemIndex` value in your script. |
| 9 |

Build the script


![Build Script](img/7.png) |

Happy hacking.