Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - igvk

Pages: [1]
1
Amulet Remote / USB reconnect and AmuletUsb
« on: July 23, 2017, 06:14:54 PM »
What happens when AmuletUsb(Win10) is running, but Amulet HID disconnect and reconnects for some reason (power management, hub issue, etc.)?
I noticed that sometimes AmuletUsb loses the device and never regains it, possibly due to HID reconnect.
Is it possible to reconnect to the device in this case automatically (without restarting the program)?


2
Other Plugins / PY plugin
« on: June 20, 2017, 11:29:59 AM »
Hi,
I tried to use PY plugin under WIn10x64, but it doesn't seem to initialize correctly.
It throws the following error when trying to execute command:
Code: [Select]
Action from plugin: C:\VoxCommando\Plugins\PY\PY.dll
Action ERROR: System.NullReferenceException: Object reference not set to an instance of an object.
   at vcPlugin.iPy.execString(String strCode)
   at vcPlugin.Plugin.doAction(String[] parsedActions, String[] parsedParams)
And the following while reinitializing:
Code: [Select]
System.Reflection.TargetInvocationException: Failed to load language 'IronPython 2.7.5': Method not found: 'System.Collections.Generic.IEnumerable`1<!!0> Microsoft.Scripting.Utils.ReflectionUtils.GetCustomAttributes(System.Reflection.Assembly, Boolean)'. ---> System.MissingMethodException: Method not found: 'System.Collections.Generic.IEnumerable`1<!!0> Microsoft.Scripting.Utils.ReflectionUtils.GetCustomAttributes(System.Reflection.Assembly, Boolean)'.
   at IronPython.Runtime.Binding.PythonBinder.DomainManager_AssemblyLoaded(Object sender, AssemblyLoadedEventArgs e)
   at IronPython.Runtime.Binding.PythonBinder..ctor(PythonContext pythonContext, CodeContext context)
   at IronPython.Runtime.PythonContext..ctor(ScriptDomainManager manager, IDictionary`2 options)
   --- End of inner exception stack trace ---
   at Microsoft.Scripting.Runtime.LanguageConfiguration.LoadLanguageContext(ScriptDomainManager domainManager, Boolean& alreadyLoaded)
   at Microsoft.Scripting.Runtime.DlrConfiguration.LoadLanguageContext(ScriptDomainManager manager, LanguageConfiguration config)
   at Microsoft.Scripting.Runtime.DlrConfiguration.TryLoadLanguage(ScriptDomainManager manager, AssemblyQualifiedTypeName providerName, LanguageContext& language)
   at Microsoft.Scripting.Runtime.ScriptDomainManager.GetLanguageByTypeName(String providerAssemblyQualifiedTypeName)
   at Microsoft.Scripting.Hosting.ScriptRuntime.GetEngineByTypeName(String assemblyQualifiedTypeName)
   at IronPython.Hosting.Python.GetEngine(ScriptRuntime runtime)
   at vcPlugin.iPy.initializeEngine()

Besides - is it possible to replace IronPytnon libraries with newer ones, will they be compatible?

3
VoxCommando Basics and Core Features / OSD Window
« on: June 18, 2017, 06:32:11 AM »
I noticed that the OSD window (at least under Windows 10) is always visible when Alt-Tabbing, even it's not shown on the screen already.
Is it possible to hide it from the list of visible windows?

Besides, it breaks full screen exclusive mode of madVR video renderer - it thinks that some application draws foreground window and never switches to exclusive mode.
Perhaps, it's better to close OSD when it's not shown?
And if I close this window by hand, OSD will be never shown again.

4
MediaMonkey / Custom SQL select
« on: June 10, 2017, 04:32:35 PM »
Is it possible to select songs with MM plugin, so that the SQL statement uses other tables from MM?
Such as, for example:
Code: [Select]
SELECT Songs.Id, Songs.SongTitle
FROM Songs, PlayListSongs, PlayLists
WHERE Songs.Artist = 'Artist'
AND Songs.Id = PlayListSongs.IdSong
AND PlayListSongs.IdPlayList = PlayLists.IdPlayList
AND PlayLists.PlayListName = 'Playlist'
ORDER BY PlayListSongs.SongOrder

Pages: [1]