vMix Forums
»
General
»
General Discussion
»
Help for a beginner who would like to write simple scripts
Rank: Newbie
Groups: Registered
Joined: 8/23/2020(UTC) Posts: 6 
|
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
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,357  Location: Belgium Thanks: 300 times Was thanked: 989 time(s) in 821 post(s)
|
Originally Posted by: visioneimmagine  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
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 8/23/2020(UTC) Posts: 6 
|
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
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,357  Location: Belgium Thanks: 300 times Was thanked: 989 time(s) in 821 post(s)
|
Originally Posted by: visioneimmagine  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
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 8/23/2020(UTC) Posts: 6 
|
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
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/24/2021(UTC) Posts: 625  Location: athens Thanks: 152 times Was thanked: 84 time(s) in 80 post(s)
|
Originally Posted by: visioneimmagine  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
|
|
|
|
vMix Forums
»
General
»
General Discussion
»
Help for a beginner who would like to write simple scripts
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.
Important Information:
The vMix Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close