logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
RossCarter  
#1 Posted : Sunday, June 1, 2025 4:31:41 PM(UTC)
RossCarter

Rank: Newbie

Groups: Registered
Joined: 6/1/2025(UTC)
Posts: 2
Australia
Location: Sydney

Thanks: 1 times
when this error occurs api stop getting new command until we click it ok
is there any way to suppress or bypass it ?vmix er
doggy  
#2 Posted : Sunday, June 1, 2025 5:49:24 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,400
Belgium
Location: Belgium

Thanks: 300 times
Was thanked: 993 time(s) in 823 post(s)
Originally Posted by: RossCarter Go to Quoted Post
when this error occurs api stop getting new command until we click it ok
is there any way to suppress or bypass it ?


By writing the api command correctly

maybe show what you are intending to accomplish/do to get more help
thanks 1 user thanked doggy for this useful post.
RossCarter on 6/1/2025(UTC)
RossCarter  
#3 Posted : Sunday, June 1, 2025 6:05:26 PM(UTC)
RossCarter

Rank: Newbie

Groups: Registered
Joined: 6/1/2025(UTC)
Posts: 2
Australia
Location: Sydney

Thanks: 1 times
its not a single command
i add some items into vmix playing list
then garbage collect pre used itemms
i guess it refers to a removed object by gc
i got an external sol to close opened error window by vb.net
but i guess there is an internal sol to resolve this and app continue func .
tnx by the way
doggy  
#4 Posted : Sunday, June 1, 2025 7:11:56 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,400
Belgium
Location: Belgium

Thanks: 300 times
Was thanked: 993 time(s) in 823 post(s)
Originally Posted by: RossCarter Go to Quoted Post
its not a single command
i add some items into vmix playing list
then garbage collect pre used itemms
i guess it refers to a removed object by gc
i got an external sol to close opened error window by vb.net
but i guess there is an internal sol to resolve this and app continue func .
tnx by the way


English ?
nikosman88  
#5 Posted : Saturday, June 14, 2025 4:55:27 AM(UTC)
nikosman88

Rank: Advanced Member

Groups: Registered
Joined: 12/24/2021(UTC)
Posts: 684
Greece
Location: athens

Thanks: 158 times
Was thanked: 85 time(s) in 81 post(s)

Hi. The solution that work for me
You can use AutoHotkey v2 to automatically detect and close this error popup as soon as it appears — often before you even notice it.
🔧 How it works:

It runs silently in the background

Checks every 500ms for a window titled Error (the vMix error popup)

If found, it instantly closes it

Your vMix continues working and the API resumes
The script
Code:

#Requires AutoHotkey v2.0
Persistent

SetTimer(KillErrorWindow, 500)

KillErrorWindow()
{
    if WinExist("ahk_exe vmix64.exe ahk_class Error") or WinExist("Error")
        WinClose
}

How to use:

Install AutoHotkey v2 from https://www.autohotkey.com

Open Notepad, paste the code above

Save it as KillError.ahk (important: .ahk extension)

Double-click the file to launch

It will now sit in the system tray and watch for that error popup

🔁 To run it on every boot:
Press Win + R, type shell:startup, and place a shortcut to KillError.ahk there.
doggy  
#6 Posted : Saturday, June 14, 2025 5:20:53 AM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,400
Belgium
Location: Belgium

Thanks: 300 times
Was thanked: 993 time(s) in 823 post(s)
Originally Posted by: nikosman88 Go to Quoted Post

Hi. The solution that work for me
You can use AutoHotkey v2 to automatically detect and close this error popup as soon as it appears — often before you even notice it.
🔧 How it works:

It runs silently in the background

Checks every 500ms for a window titled Error (the vMix error popup)

If found, it instantly closes it

Your vMix continues working and the API resumes
The script
Code:

#Requires AutoHotkey v2.0
Persistent

SetTimer(KillErrorWindow, 500)

KillErrorWindow()
{
    if WinExist("ahk_exe vmix64.exe ahk_class Error") or WinExist("Error")
        WinClose
}

How to use:

Install AutoHotkey v2 from https://www.autohotkey.com

Open Notepad, paste the code above

Save it as KillError.ahk (important: .ahk extension)

Double-click the file to launch

It will now sit in the system tray and watch for that error popup

🔁 To run it on every boot:
Press Win + R, type shell:startup, and place a shortcut to KillError.ahk there.


Thats clever ,ignoring improper programming or solvinga bug

<g> wonder why my head hurts everytime i bang it against the wall, oh yeah remove all walls: fixed
nikosman88  
#7 Posted : Saturday, June 14, 2025 6:29:37 AM(UTC)
nikosman88

Rank: Advanced Member

Groups: Registered
Joined: 12/24/2021(UTC)
Posts: 684
Greece
Location: athens

Thanks: 158 times
Was thanked: 85 time(s) in 81 post(s)
Originally Posted by: doggy Go to Quoted Post
Originally Posted by: nikosman88 Go to Quoted Post

Hi. The solution that work for me
You can use AutoHotkey v2 to automatically detect and close this error popup as soon as it appears — often before you even notice it.
🔧 How it works:

It runs silently in the background

Checks every 500ms for a window titled Error (the vMix error popup)

If found, it instantly closes it

Your vMix continues working and the API resumes
The script
Code:

#Requires AutoHotkey v2.0
Persistent

SetTimer(KillErrorWindow, 500)

KillErrorWindow()
{
    if WinExist("ahk_exe vmix64.exe ahk_class Error") or WinExist("Error")
        WinClose
}

How to use:

Install AutoHotkey v2 from https://www.autohotkey.com

Open Notepad, paste the code above

Save it as KillError.ahk (important: .ahk extension)

Double-click the file to launch

It will now sit in the system tray and watch for that error popup

🔁 To run it on every boot:
Press Win + R, type shell:startup, and place a shortcut to KillError.ahk there.


Thats clever ,ignoring improper programming or solvinga bug

<g> wonder why my head hurts everytime i bang it against the wall, oh yeah remove all walls: fixed

Hi Doggy. The user asks this and yes if the scenario is -->"its not a single command
i add some items into vmix playing list" seem to work . Yes i know what you say and i understand fully what you say. Sometimes yes,workarounds can be a solution
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.