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
visioneimmagine  
#1 Posted : Wednesday, April 2, 2025 1:27:04 AM(UTC)
visioneimmagine

Rank: Newbie

Groups: Registered
Joined: 8/23/2020(UTC)
Posts: 6
Italy

Good evening, first of all I am not a programmer but I would like to learn slowly and so I am trying with visual basic to create some scripts for Vmix. As a test script I am trying to make it so that when I press the v key on the keyboard the output switches from camera 1 to the first video contained in a list. The script code however seems to absolutely not want to digest the End Sub closure, even if it seems to be regular. Who can help me? This is the code:
Tks Andrew


Dim HD_Webcam_PC_Frontale As String = "HD Webcam PC Frontale"
Dim listInputName As String = "List" ' Assicurati che il nome della tua lista sia proprio "List"

'-- Imposta la telecamera all'inizio
API.Function("CutDirect", Input:=HD_Webcam_PC_Frontale)

'-- Gestione degli eventi della tastiera
Sub OnKeyDown(Key)
If Key = 86 Then ' 86 è il codice ASCII per il tasto "v"
API.Function("ListPlayIndex", Input:=List, Value:="0") ' Riproduce il primo video (indice 0)
End If
End Sub

doggy  
#2 Posted : Wednesday, April 2, 2025 2:02:08 AM(UTC)
doggy

Rank: Advanced Member

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

Thanks: 300 times
Was thanked: 989 time(s) in 821 post(s)
Originally Posted by: visioneimmagine Go to Quoted Post
Good evening, first of all I am not a programmer but I would like to learn slowly and so I am trying with visual basic to create some scripts for Vmix. As a test script I am trying to make it so that when I press the v key on the keyboard the output switches from camera 1 to the first video contained in a list. The script code however seems to absolutely not want to digest the End Sub closure, even if it seems to be regular. Who can help me? This is the code:
Tks Andrew


Dim HD_Webcam_PC_Frontale As String = "HD Webcam PC Frontale"
Dim listInputName As String = "List" ' Assicurati che il nome della tua lista sia proprio "List"

'-- Imposta la telecamera all'inizio
API.Function("CutDirect", Input:=HD_Webcam_PC_Frontale)

'-- Gestione degli eventi della tastiera
Sub OnKeyDown(Key)
If Key = 86 Then ' 86 è il codice ASCII per il tasto "v"
API.Function("ListPlayIndex", Input:=List, Value:="0") ' Riproduce il primo video (indice 0)
End If
End Sub




you can not have subs or functions within a vMix vb.net script !

There is post regarding scripting with lots of examples , https://forums.vmix.com/...86-Scripting-for-Dummies
visioneimmagine  
#3 Posted : Thursday, April 3, 2025 6:39:46 PM(UTC)
visioneimmagine

Rank: Newbie

Groups: Registered
Joined: 8/23/2020(UTC)
Posts: 6
Italy

I load this code into the script window, but when I save it it always gives the same error. of end sub. Could you explain to me what you mean then when you say that I must have a script? Why does it not allow me to save it....Thanks a lot
doggy  
#4 Posted : Thursday, April 3, 2025 7:16:05 PM(UTC)
doggy

Rank: Advanced Member

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

Thanks: 300 times
Was thanked: 989 time(s) in 821 post(s)
Originally Posted by: visioneimmagine Go to Quoted Post
I load this code into the script window, but when I save it it always gives the same error. of end sub. Could you explain to me what you mean then when you say that I must have a script? Why does it not allow me to save it....Thanks a lot


from the help files: vMix Scripting supports the majority of VB.NET 2.0 code that will work within a single sub or function.

so i repeat; one can not have subs or functions within a vMix vb.net script

Sub OnKeyDown(Key) ... End Sub is the error

one can not save a script in vMix if there is an error in the code
visioneimmagine  
#5 Posted : Thursday, April 3, 2025 7:39:10 PM(UTC)
visioneimmagine

Rank: Newbie

Groups: Registered
Joined: 8/23/2020(UTC)
Posts: 6
Italy

sorry if I understood correctly this means that more functions and calls to the PC keyboard or to dialogues with any external programs/interfaces that provide more if then nodes and therefore in fact particular functions are not possible? But there is no way to interact with Vmix in a more complete way. Sorry but I am a beginner and before I launch into things that perhaps are not possible I would like to have the complete picture of how open Vmix can be to programming. So also to understand how the manufacturers who create HW interfaces that communicate with Vmix or external audio programs to Vmix do it. Tks


nikosman88  
#6 Posted : Thursday, April 3, 2025 10:32:17 PM(UTC)
nikosman88

Rank: Advanced Member

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

Thanks: 152 times
Was thanked: 84 time(s) in 80 post(s)
Originally Posted by: visioneimmagine Go to Quoted Post
sorry if I understood correctly this means that more functions and calls to the PC keyboard or to dialogues with any external programs/interfaces that provide more if then nodes and therefore in fact particular functions are not possible? But there is no way to interact with Vmix in a more complete way. Sorry but I am a beginner and before I launch into things that perhaps are not possible I would like to have the complete picture of how open Vmix can be to programming. So also to understand how the manufacturers who create HW interfaces that communicate with Vmix or external audio programs to Vmix do it. Tks



If you need more complicated things,you can do an external program and when it comes to vmix action,you can use the http or tcp api to send the command in Vmix

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.