<?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 biped AutoKey with MaxScript in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209626#M19972</link>
    <description>I create a biped and record the script. But when I run again the script as below:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;set animate on&lt;BR /&gt;sliderTime = 10f&lt;BR /&gt;$'Bip001 R Hand'.pos = &lt;BR /&gt;sliderTime = 20f&lt;BR /&gt;$'Bip001 R Hand'.pos = &lt;BR /&gt;sliderTime = 30f&lt;BR /&gt;$'Bip001 R Hand'.pos = &lt;BR /&gt;set animate off&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;It appears some error message as below in MAXScript Listener.&lt;BR /&gt;Does somebody know how to solve this problem? Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;false&lt;BR /&gt;10f&lt;BR /&gt;-- Error occurred in anonymous codeblock; filename: C:\AkMax2011\scripts\Test.ms; position: 86; line: 3&lt;BR /&gt;-- Unknown property: "pos" in $Biped_Object:Bip001 R Hand @ &lt;BR /&gt;20f&lt;BR /&gt;-- Error occurred in anonymous codeblock; filename: C:\AkMax2011\scripts\Test.ms; position: 156; line: 5&lt;BR /&gt;-- Unknown property: "pos" in $Biped_Object:Bip001 R Hand @ &lt;BR /&gt;30f&lt;BR /&gt;-- Error occurred in anonymous codeblock; filename: C:\AkMax2011\scripts\Test.ms; position: 226; line: 7&lt;BR /&gt;-- Unknown property: "pos" in $Biped_Object:Bip001 R Hand @ &lt;BR /&gt;true&lt;/PRE&gt;</description>
    <pubDate>Sun, 19 Jun 2011 16:25:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-06-19T16:25:01Z</dc:date>
    <item>
      <title>biped AutoKey with MaxScript</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209626#M19972</link>
      <description>I create a biped and record the script. But when I run again the script as below:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;set animate on&lt;BR /&gt;sliderTime = 10f&lt;BR /&gt;$'Bip001 R Hand'.pos = &lt;BR /&gt;sliderTime = 20f&lt;BR /&gt;$'Bip001 R Hand'.pos = &lt;BR /&gt;sliderTime = 30f&lt;BR /&gt;$'Bip001 R Hand'.pos = &lt;BR /&gt;set animate off&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;It appears some error message as below in MAXScript Listener.&lt;BR /&gt;Does somebody know how to solve this problem? Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;false&lt;BR /&gt;10f&lt;BR /&gt;-- Error occurred in anonymous codeblock; filename: C:\AkMax2011\scripts\Test.ms; position: 86; line: 3&lt;BR /&gt;-- Unknown property: "pos" in $Biped_Object:Bip001 R Hand @ &lt;BR /&gt;20f&lt;BR /&gt;-- Error occurred in anonymous codeblock; filename: C:\AkMax2011\scripts\Test.ms; position: 156; line: 5&lt;BR /&gt;-- Unknown property: "pos" in $Biped_Object:Bip001 R Hand @ &lt;BR /&gt;30f&lt;BR /&gt;-- Error occurred in anonymous codeblock; filename: C:\AkMax2011\scripts\Test.ms; position: 226; line: 7&lt;BR /&gt;-- Unknown property: "pos" in $Biped_Object:Bip001 R Hand @ &lt;BR /&gt;true&lt;/PRE&gt;</description>
      <pubDate>Sun, 19 Jun 2011 16:25:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209626#M19972</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-19T16:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: biped AutoKey with MaxScript</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209627#M19973</link>
      <description>Hey Akira,&lt;BR /&gt;&lt;BR /&gt;i looked into it and found the answer in the Max Script Help: Biped Transform Methods.&lt;BR /&gt;It seems that Bipeds are handled differently than normal Objects.&lt;BR /&gt;&lt;BR /&gt;So your code should look like this:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;set animate on&lt;BR /&gt;sliderTime = 10f&lt;BR /&gt;biped.settransform $'Bip001 R Hand' #pos  true &lt;BR /&gt;sliderTime = 20f&lt;BR /&gt;biped.settransform $'Bip001 R Hand' #pos  true &lt;BR /&gt;sliderTime = 30f&lt;BR /&gt;biped.settransform $'Bip001 R Hand' #pos  true&lt;BR /&gt;set animate off&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;boeckel</description>
      <pubDate>Sun, 19 Jun 2011 17:55:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209627#M19973</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-19T17:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: biped AutoKey with MaxScript</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209628#M19974</link>
      <description>You will need to read up on Biped in the Maxscript help. It is not as simple to deal with as "ordinary" Max objects are. The Macro Recorder only reports the end result of what you did in the viewport, not necessarily what you have to do to create keys using Maxscript.&lt;BR /&gt;Just search for "biped" in the MXS help - there are a lot of pages relating to it, many of which you'll need to read carefully.</description>
      <pubDate>Sun, 19 Jun 2011 17:59:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/biped-autokey-with-maxscript/m-p/4209628#M19974</guid>
      <dc:creator>Steve_Curley</dc:creator>
      <dc:date>2011-06-19T17:59:50Z</dc:date>
    </item>
  </channel>
</rss>

