<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Caps Lock Input for Text Draw actor]]></title><description><![CDATA[<p>Hello Isadoramongers, quick test of a feature request: Caps Lock input for the Text Draw actor. (I never needed it before, but now there's the Speech to Text actor to play around with, it would be lovely to be able to dynamically control whether the text generated is in lower case or capitals)</p>]]></description><link>https://community.troikatronix.com/topic/9469/caps-lock-input-for-text-draw-actor</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Jul 2026 16:28:54 GMT</lastBuildDate><atom:link href="https://community.troikatronix.com/topic/9469.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 24 Jul 2026 09:33:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Caps Lock Input for Text Draw actor on Fri, 24 Jul 2026 12:19:47 GMT]]></title><description><![CDATA[<p>a workaround is to use a font with a capital version like Bodoni 72 and Bodoni 72 small caps and to switch between both.</p>
<p><img src="/assets/uploads/files/1784895522514-bildschirmfoto-2026-07-24-um-14.16.15.jpg" style="cursor:pointer" />Best regards<br /></p><p>Jean-François</p>
<p></p>]]></description><link>https://community.troikatronix.com/post/57838</link><guid isPermaLink="true">https://community.troikatronix.com/post/57838</guid><dc:creator><![CDATA[jfg]]></dc:creator><pubDate>Fri, 24 Jul 2026 12:19:47 GMT</pubDate></item><item><title><![CDATA[Reply to Caps Lock Input for Text Draw actor on Fri, 24 Jul 2026 09:36:05 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/229">@dbini</a> said:</p>
<blockquote>the text builds up over time. if you go directly from Audio to Text into Text Draw, it resets at the end of each sentence.</blockquote>
<p>Not sure if this helps at all</p>
<p><img src="/assets/uploads/files/1784885391198-screen-shot-2026-07-24-at-11.28.34-am.png" style="cursor:pointer" /><br /></p><p></p><p>Also just gunna throw these in here for good measure. Maybe I made something before that you might find useful: <a href="/assets/uploads/files/1784885479118-js-text-user-actors.zip">js-text-user-actors.zip</a></p>]]></description><link>https://community.troikatronix.com/post/57836</link><guid isPermaLink="true">https://community.troikatronix.com/post/57836</guid><dc:creator><![CDATA[Woland]]></dc:creator><pubDate>Fri, 24 Jul 2026 09:36:05 GMT</pubDate></item><item><title><![CDATA[Reply to Caps Lock Input for Text Draw actor on Wed, 22 Jul 2026 06:59:53 GMT]]></title><description><![CDATA[<p>- although, after experimenting, the system works in a slightly different way, in that now the text builds up over time. if you go directly from Audio to Text into Text Draw, it resets at the end of each sentence. Im sure there's a way to add a reset trigger to the Javascript.</p>]]></description><link>https://community.troikatronix.com/post/57835</link><guid isPermaLink="true">https://community.troikatronix.com/post/57835</guid><dc:creator><![CDATA[dbini]]></dc:creator><pubDate>Wed, 22 Jul 2026 06:59:53 GMT</pubDate></item><item><title><![CDATA[Reply to Caps Lock Input for Text Draw actor on Wed, 22 Jul 2026 06:50:45 GMT]]></title><description><![CDATA[<p>Thanks Ryan, I suspected there would be a codey way to format the text. Still, I think it would be a nice addition to the Text Draw.</p>]]></description><link>https://community.troikatronix.com/post/57834</link><guid isPermaLink="true">https://community.troikatronix.com/post/57834</guid><dc:creator><![CDATA[dbini]]></dc:creator><pubDate>Wed, 22 Jul 2026 06:50:45 GMT</pubDate></item><item><title><![CDATA[Reply to Caps Lock Input for Text Draw actor on Tue, 21 Jul 2026 18:13:48 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/229">@dbini</a> said:</p>
<blockquote>dynamically control whether the text generated is in lower case or capitals</blockquote>
<p> This can easily be done via Javascript.</p><pre>
// iz_input 1 "text input"<br />// iz_input 2 "format mode"<br />// iz_output 1 "text output"
/*<br />INPUT ORDER<br />arguments[0] = incoming text<br />arguments[1] = format mode (Integer)
FORMAT MODES<br />1 = unchanged<br />2 = UPPERCASE<br />3 = lowercase
OUTPUT ORDER<br />The single returned value is sent to output 1.<br />*/
function main()<br />{<br />    var textInput = String(arguments[0]);<br />    var formatMode = Math.round(arguments[1]);
    var outputText = textInput;
    if (formatMode === 2)<br />    {<br />        outputText = textInput.toUpperCase();<br />    }<br />    else if (formatMode === 3)<br />    {<br />        outputText = textInput.toLowerCase();<br />    }
    // View these messages using Windows &gt; Show Monitor.<br />    print("Input: " + textInput + "\n");<br />    print("Mode: " + formatMode + "\n");<br />    print("Output: " + outputText + "\n");
    return [outputText];<br />}</pre>]]></description><link>https://community.troikatronix.com/post/57833</link><guid isPermaLink="true">https://community.troikatronix.com/post/57833</guid><dc:creator><![CDATA[DusX]]></dc:creator><pubDate>Tue, 21 Jul 2026 18:13:48 GMT</pubDate></item></channel></rss>