This is not really a xml, but it is a cool application I've made for the integration with my desktop theme. Obviously you can use it as you like it.
The program has 2 purposes:
1-Show the same text as shown in main VC window in real time as a floating transparent text over your desktop.
2-Automatically hide the TTS Talking Head and the text that I mentioned above every time there is any maximized window in the foreground of your screen. Once there is no maximized window anymore, the overlays are displayed again.
The center greenish circle is a modified TTS Talking Head as explained and show in this
other thread.I can't make a video right now, The video is the 3rd post, and below are the screenshots.
I've attached the program itself. It runs as a tray icon and can be started at VC startup if you want.
The program includes the font needed for it to run and will try to install those fonts at startup. So, you will probably need to run the program as an administrator so the fonts are installed. Otherwise it will run with a default font.
To exit the program, or to change the hide/show behavior, just use the tray icon.
Unzip the program to your VC installation folder and then use the following xml for calling the program automatically on startup. Actually it will wait 10 seconds before calling the program. And differently from the video, it will not call the program again if it is already running.
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.5.2-->
<commandGroup open="True" name="ShowSpoken" enabled="True" prefix="" priority="0" requiredProcess="" description="">
<command id="657" name="Restart program on VC startup" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>VC.SetEventTimer</cmdType>
<params>
<param>10</param>
<param>StartShowSpoken</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<event>VC.Loaded</event>
</command>
<command id="631" name="Start ShowSpoken" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<if ifBlockDisabled="False" ifNot="True">
<ifType>ProcessRunning</ifType>
<ifParams>VC_show_spoken&&</ifParams>
<then>
<action>
<cmdType>Launch.RawParam</cmdType>
<params>
<param>{Path.VC}\VC_show_spoken.exe</param>
<param>/blendcolor 0F0F0F /textcolor 3daabe</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else />
</if>
<event>StartShowSpoken</event>
</command>
</commandGroup>
The program runs completely offline. There are no viruses, spyware, ads, etc.
Completely free with absolutely no cost, but you can
pay me a beer if you want.
Next version will allow for changing the text color and position through command line parameters. For now these are fixed values.v 0.2 does have a help and the optional color parameters. More details in the help.
Version 0.3
will allow allows for choosing the position and size of the text.
Please report any bugs so I can improve the program.