<?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[Numbers into trigger value actor from control panel]]></title><description><![CDATA[<p dir="auto"><img src="http://troikatronix.com/troikatronixforum/uploads/FileUpload/03/ea0d0a-score.tiff" alt class=" img-responsive img-markdown" /></p>
<div>i'm playing with control panel and number entry.</div>
<div>is there any way that i can get a number from the edit text box into the trigger value actor ?</div>
<div>i've tried various combinations and haven't yet found an answer yet.</div>
<p dir="auto"><a href="/uploads/files/FileUpload/03/ea0d0a-score.tiff">ea0d0a-score.tiff</a></p>
]]></description><link>https://community.troikatronix.com/topic/320/numbers-into-trigger-value-actor-from-control-panel</link><generator>RSS for Node</generator><lastBuildDate>Wed, 19 Aug 2026 08:42:45 GMT</lastBuildDate><atom:link href="https://community.troikatronix.com/topic/320.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 Nov 2012 10:06:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Fri, 16 Jan 1970 15:49:00 GMT]]></title><description><![CDATA[<p dir="auto">i've continued my playing with a couple of patches, kind of recreating something i made as a teenager and forming some current research.</p>
<div>i have noticed a quirky behaviour and am sharing the patches so others can test them to see if there is something quirky at my end.</div>
<div>goto the scoring scene and find the comment and follow the steps laid out there....</div>
<div>the quirky ness i'm seeing is in a data array actor and only on one input and it's probably really silly and because of that i can't see the solution to the problem. in simple terms i set a value in one scene and in the next it's recalled and it comes out 1 less than it began ....</div>
<div>can anyone help ?</div>
<div>ps run both patches.</div>
<p dir="auto"><a href="/uploads/files/FileUpload/f8/f7d613-dart-scorer-v1.1.izz">f7d613-dart-scorer-v1.1.izz</a> <a href="/uploads/files/FileUpload/82/da4435-dart-scorer-link-v1.1.izz">da4435-dart-scorer-link-v1.1.izz</a></p>
]]></description><link>https://community.troikatronix.com/post/4898</link><guid isPermaLink="true">https://community.troikatronix.com/post/4898</guid><dc:creator><![CDATA[particlep]]></dc:creator><pubDate>Fri, 16 Jan 1970 15:49:00 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Sat, 10 Nov 2012 06:19:27 GMT]]></title><description><![CDATA[<p dir="auto">Thanks a ton Mark.<br />
Once I master these and the TCP actors a whole new world of possibilities open up.<br />
I will keep at it.</p>
]]></description><link>https://community.troikatronix.com/post/4828</link><guid isPermaLink="true">https://community.troikatronix.com/post/4828</guid><dc:creator><![CDATA[DusX]]></dc:creator><pubDate>Sat, 10 Nov 2012 06:19:27 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Sat, 10 Nov 2012 02:59:34 GMT]]></title><description><![CDATA[<p dir="auto">Dear DusX,</p>
<div>**value_out** is the name of the output parameter that will appear after you say OK. (the underscore character will be converted into a space.)</div>
<div>then the colon ('**:**'), which is required</div>
<div>**integer** is the type of output (as opposed to float for numbers with a decimal point, or string for a text output)</div>
<div>then the equal sign ('=') which is required</div>
<div>**10** indicates the maximum number of items that will be parsed.</div>
<div>then the format of the data to be parsed. **digits** refers to ASCII digits '0' to '9' (hexadecimal 30 through 39); if you used **hex** then it would be the ASCII digits _and_ the letters 'A' through 'F'. There are several other options possible, e.g., the '?' character which indicates a single byte.</div>
<div>So what does it do? This line creates a new output on the Serial In Watcher called 'value out'; it is an integer number. When data comes in, the parser starts looking for the digits '0' through '9', accepting a maximum of 10 of them. Here's some examples, where [CR] represents hex 0D or the Carriage Return character.</div>
<div>1234[CR] would output the number 1234</div>
<div>12A34[CR] would output the number 12 -- why? because the letter 'A' does not fit the **digits** filter</div>
<div>123 456[CR] would output the number 123 - same reason as above, but the space character is now the non matching character</div>
<div>1234567891234 would output 1234567891, because the maximum number of digits accepted is 10.</div>
<div>Does that help?</div>
<div>Also, did you see the examples under the heading "Parameter Assignment" -- those help me the most.</div>
<div>
<div>Best Wishes,</div>
<div>Mark</div>
</div>]]></description><link>https://community.troikatronix.com/post/4824</link><guid isPermaLink="true">https://community.troikatronix.com/post/4824</guid><dc:creator><![CDATA[mark]]></dc:creator><pubDate>Sat, 10 Nov 2012 02:59:34 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Sat, 10 Nov 2012 01:50:10 GMT]]></title><description><![CDATA[<p dir="auto">i've got the text parser to pass text by inserting</p>
<div>
<p dir="auto">player_name : string = { 01-FF }</p>
<p dir="auto">i see that the text before the colon becomes the output name in the actor and the bit after the colon is something to do with what is parsed.</p>
<p dir="auto">now all i need to work out now is how to take text from one scene to another.</p>
<p dir="auto"></p></div><p></p>
]]></description><link>https://community.troikatronix.com/post/4818</link><guid isPermaLink="true">https://community.troikatronix.com/post/4818</guid><dc:creator><![CDATA[particlep]]></dc:creator><pubDate>Sat, 10 Nov 2012 01:50:10 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Fri, 09 Nov 2012 13:28:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/2">@Mark</a><br />
any chance we can get a walk thru telling us what that line is instructing the parser to do?</p>
<p dir="auto">ps: the parsing docs are power, but I'm not sure where to start in figuring them out.. some more examples would be great.</p>
]]></description><link>https://community.troikatronix.com/post/4812</link><guid isPermaLink="true">https://community.troikatronix.com/post/4812</guid><dc:creator><![CDATA[DusX]]></dc:creator><pubDate>Fri, 09 Nov 2012 13:28:11 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Fri, 09 Nov 2012 12:31:40 GMT]]></title><description><![CDATA[<p dir="auto">thank you mark. i like how simple that is.</p>
]]></description><link>https://community.troikatronix.com/post/4811</link><guid isPermaLink="true">https://community.troikatronix.com/post/4811</guid><dc:creator><![CDATA[particlep]]></dc:creator><pubDate>Fri, 09 Nov 2012 12:31:40 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Fri, 09 Nov 2012 02:19:13 GMT]]></title><description><![CDATA[<p dir="auto">The Text Parser actor can do this.</p>
<div>1) Add a Text Parser actor</div>
<div>2) Double-click it and enter this text</div>
<div>
<p dir="auto">value_out : integer = 10 digits</p>
<p dir="auto"><span class="Apple-style-span" style="font-family:Arial, Verdana;font-size:13px"></span></p>
<div>3) Click OK</div>
<div>4) Link Edit Text Control to 'text' input of text parser.</div>
<div>
<div>Best Wishes,</div>
<div>Mark</div>
</div>
</div>]]></description><link>https://community.troikatronix.com/post/4796</link><guid isPermaLink="true">https://community.troikatronix.com/post/4796</guid><dc:creator><![CDATA[mark]]></dc:creator><pubDate>Fri, 09 Nov 2012 02:19:13 GMT</pubDate></item><item><title><![CDATA[Reply to Numbers into trigger value actor from control panel on Fri, 16 Jan 1970 15:39:34 GMT]]></title><description><![CDATA[<p dir="auto">you need to use the "number" control for directly linking numerical values. text works for text control. </p>
<div>Also, if you tick the "show current value of linked property" box the value is updated dynamically in your control panel..</div>]]></description><link>https://community.troikatronix.com/post/4784</link><guid isPermaLink="true">https://community.troikatronix.com/post/4784</guid><dc:creator><![CDATA[LPmode]]></dc:creator><pubDate>Fri, 16 Jan 1970 15:39:34 GMT</pubDate></item></channel></rss>