<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: VRED play-pause animation with a key in VRED Forum</title>
    <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579253#M10486</link>
    <description>&lt;P&gt;write the myPlayToggle() in the script section of a variantset&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotazione 2019-02-07 104102.png" style="width: 792px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/600292i14FF1CC6338A3C1E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotazione 2019-02-07 104102.png" alt="Annotazione 2019-02-07 104102.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;then connect the variantset with a touchsensor&lt;/P&gt;
&lt;P&gt;this should works&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Thu, 07 Feb 2019 09:47:52 GMT</pubDate>
    <dc:creator>Christian_Garimberti</dc:creator>
    <dc:date>2019-02-07T09:47:52Z</dc:date>
    <item>
      <title>VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6045355#M10473</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would like to play/pause an animation clip (if it not possible,&amp;nbsp;play/pause the timeline with a key its ok too)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have try it&amp;nbsp; using Python (Vsets let me play animations clips, but I dont know how to plause from them) but in Python I need to know if the animation is playing (to make an "if" to play it or to pause the animation), and I dont know how to use &lt;A href="https://forums.autodesk.com/t5/forums/postpage/board-id/vrAnimWidgets-module.html#isPlaying" target="_blank"&gt;isPlaying&lt;/A&gt;() command&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So, any kind of solution (by python or any other way) its ok for me!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;some ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 13:41:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6045355#M10473</guid>
      <dc:creator>hobbotuk</dc:creator>
      <dc:date>2016-02-18T13:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6045408#M10474</link>
      <description>&lt;P&gt;This works for me:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;def hvpDrive():&lt;BR /&gt;&amp;nbsp;playCAnimation("drive",0,340)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;def hvpPause():&lt;BR /&gt;&amp;nbsp;pauseCAnimation("drive",True)&lt;BR /&gt;&amp;nbsp;vrLogWarning("Paused drive animation...")&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;def hvpCont():&lt;BR /&gt;&amp;nbsp;pauseCAnimation("drive",False)&lt;BR /&gt;&amp;nbsp;vrLogWarning("Executing drive animation...")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;keyP = vrKey(Key_P)&lt;BR /&gt;keyP.connect(hvpPause)&lt;BR /&gt;keyC = vrKey(Key_C)&lt;BR /&gt;keyC.connect(hvpCont)&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 14:04:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6045408#M10474</guid>
      <dc:creator>ir</dc:creator>
      <dc:date>2016-02-18T14:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6755101#M10475</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;after i press pause and want to continue the animation, it jumps back to the beginning of the animation and restarts from there.&lt;/P&gt;&lt;P&gt;Is ther a way to continue the animation from where it stoped at pushing pause ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 21:14:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6755101#M10475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-16T21:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6757937#M10476</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;actually it should resume from where it was paused.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2016 13:39:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/6757937#M10476</guid>
      <dc:creator>marcus_fritzen</dc:creator>
      <dc:date>2016-12-19T13:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560588#M10477</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is possible to use&lt;STRONG&gt; only one key&lt;/STRONG&gt; to Play/Pause the animation?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because I can't find nothing about the script code for this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 10:26:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560588#M10477</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-30T10:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560648#M10478</link>
      <description>&lt;P&gt;Sure, use only one function and remember the state with a boolean.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 11:02:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560648#M10478</guid>
      <dc:creator>marcus_fritzen</dc:creator>
      <dc:date>2019-01-30T11:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560735#M10479</link>
      <description>&lt;P&gt;Thanks for your reply!&lt;/P&gt;
&lt;P&gt;I am new in this, so I don't understand so much.....&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;Please can you write the code???&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I want to play the animation should I write playCAnimation("name")&lt;/P&gt;
&lt;P&gt;but if I want to pause/unpause the animation with only a key should I write isPlaying() ???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;FONT size="3"&gt;But what should I put into the parenthesis?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 11:50:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560735#M10479</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-30T11:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560801#M10480</link>
      <description>&lt;P&gt;Here is some untested Python code. Maybe it helps. Keep in mind that it doesn't check if the animation has finished playing.&lt;/P&gt;
&lt;PRE&gt;isPlaying = False
isPausing = False

def myPlayToggle():
    global isPlaying
    global isPausing
    if not isPlaying:
        playCAnimation("Test")
        isPlaying = True
    else
        isPausing =  not isPausing
        pauseCAnimation("Test", isPausing)
&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jan 2019 12:13:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8560801#M10480</guid>
      <dc:creator>marcus_fritzen</dc:creator>
      <dc:date>2019-01-30T12:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8577466#M10481</link>
      <description>&lt;P&gt;If I want to "click" instead to use a key to play or pause the animation......what could be the script for this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, for the key is this :&amp;nbsp;keyP = vrKey(Key_P)&lt;/P&gt;
&lt;P&gt;But, for a "click" with the mouse, what can I do?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 16:41:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8577466#M10481</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-06T16:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8577509#M10482</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;Create a variant set with the function myPlayToggle()  in the script section.&lt;BR /&gt;Create a touchsensor on the geometry you want to use as "button"&lt;BR /&gt;Associate the script to the touchsensor.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Wed, 06 Feb 2019 16:53:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8577509#M10482</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2019-02-06T16:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8577541#M10483</link>
      <description>&lt;P&gt;thanks for your reply!&lt;/P&gt;
&lt;P&gt;I was trying to use this script, but doesn't work........&lt;/P&gt;
&lt;PRE&gt;isPlaying = False
isPausing = False

def myPlayToggle():
    global isPlaying
    global isPausing
    if not isPlaying:
        playCAnimation("Test")
        isPlaying = True
    else
        isPausing =  not isPausing
        pauseCAnimation("Test", isPausing)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;maybe something is missing....&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 17:04:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8577541#M10483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-06T17:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579013#M10484</link>
      <description>&lt;P&gt;hi, in the script there is a an error...&lt;/P&gt;
&lt;P&gt;after the else you have to put&amp;nbsp; :&lt;/P&gt;
&lt;PRE&gt;isPlaying = False
isPausing = False

def myPlayToggle():
    global isPlaying
    global isPausing
    if not isPlaying:
        playCAnimation("My Clip")
        isPlaying = True
    else:
        isPausing =  not isPausing
        pauseCAnimation("My Clip", isPausing)&lt;/PRE&gt;
&lt;P&gt;and, obviously, where you see "test" or "My Clip", you have to put the name of your clip&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 07:16:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579013#M10484</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2019-02-07T07:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579221#M10485</link>
      <description>&lt;P&gt;Good morning,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, I know that I have to put te name of my clip, and thanks for the &lt;STRONG&gt;else:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;but still doesn't work......&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If I want to use only this script doesn't work&lt;/STRONG&gt;, but, for example, if I put at the end :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;keyP = vrKey(Key_P)&lt;/P&gt;
&lt;P&gt;keyP.connect(myPlayToggle)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;obviously works....but instead to use a key, I want to click with the mouse or use the Touch Sensor, so, what can I write here??????&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 09:34:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579221#M10485</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-07T09:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579253#M10486</link>
      <description>&lt;P&gt;write the myPlayToggle() in the script section of a variantset&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotazione 2019-02-07 104102.png" style="width: 792px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/600292i14FF1CC6338A3C1E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotazione 2019-02-07 104102.png" alt="Annotazione 2019-02-07 104102.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;then connect the variantset with a touchsensor&lt;/P&gt;
&lt;P&gt;this should works&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 09:47:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579253#M10486</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2019-02-07T09:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579260#M10487</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;the script was only a hint how things could work and yes, there was a ":" missing behind "else".&lt;/P&gt;
&lt;P&gt;Besides that, c.garimberti already wrote what you need to do. Create a VariantSet, put the myPlayToggle call into the script tab, create a touch sensor and attach the newly created VariantSet to it.&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 09:50:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579260#M10487</guid>
      <dc:creator>marcus_fritzen</dc:creator>
      <dc:date>2019-02-07T09:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579283#M10488</link>
      <description>&lt;P&gt;Attached a demo file&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 10:00:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579283#M10488</guid>
      <dc:creator>seiferp</dc:creator>
      <dc:date>2019-02-07T10:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579298#M10489</link>
      <description>&lt;P&gt;Thanks to all of you!!!!!!&lt;/P&gt;
&lt;P&gt;It works!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 10:09:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8579298#M10489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-07T10:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8884335#M10490</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to copy what you did here, but my plane stops spinning after a single revolution. I tried to change it post infinity mode to loop, but that doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Rob&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 03:25:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8884335#M10490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-02T03:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8884474#M10491</link>
      <description>&lt;P&gt;To run a clip on a infinite loop you have to put -1 on the cycle box in the clip panel.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotazione 2019-07-02 081044.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/653108i256D121A347681B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Annotazione 2019-07-02 081044.png" alt="Annotazione 2019-07-02 081044.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: you can use the -1 only in recent release of Vred, but i don't remember in which version this feature it has been added.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 06:19:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8884474#M10491</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2019-07-02T06:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: VRED play-pause animation with a key</title>
      <link>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8884578#M10492</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Could you also tell me how to reverse the rotation in a second switch?&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 07:30:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/vred-play-pause-animation-with-a-key/m-p/8884578#M10492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-02T07:30:02Z</dc:date>
    </item>
  </channel>
</rss>

