You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you run t1.ahk or t2.ahk individually, there should be no errors because only one instance of the VMR object is created.
When you run t3.ahk, the error VMR instance already exists! will occur because both t1.ahk and t2.ahk attempt to create separate instances of VMR.
When you run
t1.ahk
ort2.ahk
individually, there should be no errors because only one instance of the VMR object is created.When you run
t3.ahk
, the error VMR instance already exists! will occur because botht1.ahk
andt2.ahk
attempt to create separate instances of VMR.t1.ahk
t2.ahk
t3.ahk
How to Fix:
you need to allow only one VMR instance to share the same instance instead of creating separate ones:
The text was updated successfully, but these errors were encountered: