<?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: &amp;quot;Unfold strip from loop&amp;quot; maxscript function? in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753410#M13769</link>
    <description>&lt;P&gt;Wow, okay thank you for the assistance. &amp;nbsp;That's really neat, it works.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Dec 2016 06:08:38 GMT</pubDate>
    <dc:creator>andocombo</dc:creator>
    <dc:date>2016-12-16T06:08:38Z</dc:date>
    <item>
      <title>"Unfold strip from loop" maxscript function?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6729851#M13765</link>
      <description>&lt;P&gt;Hi all, new to posting on this forum... &amp;nbsp;Is there a function that does the same as pressing the "unfold strip from loop" button on the unwrap_uvw modifier panel? &amp;nbsp;I have looked at the help file for a bit and can't seem to find the answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="unfoldstripfromloop_wip_001.gif" style="width: 332px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/299265iD4D198C48D582667/image-size/medium?v=v2&amp;amp;px=400" role="button" title="unfoldstripfromloop_wip_001.gif" alt="unfoldstripfromloop_wip_001.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using the listener it doesn't seem to show anything. &amp;nbsp;&lt;SPAN&gt;Thanks for any help you might be able to give. &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;(Currently working with 3dsMax 2015)&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2016 07:55:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6729851#M13765</guid>
      <dc:creator>andocombo</dc:creator>
      <dc:date>2016-12-06T07:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: "Unfold strip from loop" maxscript function?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6750540#M13766</link>
      <description>&lt;P&gt;there is no mxs method that does do what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but "Unfold strip from loop" is just a sequence of unwrap_uvw existing methods. you can make it ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is another solution - "press" this button using winapi methods. &lt;STRONG&gt;windows&lt;/STRONG&gt; struct and &lt;STRONG&gt;uiaccessor&lt;/STRONG&gt;&amp;nbsp;are probably enough to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 03:09:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6750540#M13766</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2016-12-15T03:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: "Unfold strip from loop" maxscript function?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753326#M13767</link>
      <description>&lt;P&gt;I was starting to think there may not currently be a function that does the same as pressing this button, after not seeing it in the maxscript help file.&lt;BR /&gt;&lt;BR /&gt;I agree it may very well be possible to recreate the functionality I would like using other functions, I was thinking about trying to do similar with spline mapping to try and get a similar result. &amp;nbsp;If you or others have any ideas about that I'd be interested to hear about it.&lt;BR /&gt;&lt;BR /&gt;I am not familiar with winapi methods, are you thinking I could make a sort of macro outside of max to do this?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 03:24:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753326#M13767</guid>
      <dc:creator>andocombo</dc:creator>
      <dc:date>2016-12-16T03:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: "Unfold strip from loop" maxscript function?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753365#M13768</link>
      <description>&lt;P&gt;if Unwrap UVW modifier is opened in Modifier Panel:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;-- find button HWND and press
(
	h = windows.getchildhwnd #max "Wrap" -- "Wrap" rolloup
	h = uiaccessor.getnextwindow h[1] -- rollout dialog 
	h = uiaccessor.getfirstchildwindow h -- toolbar 
	h = uiaccessor.getfirstchildwindow h -- first: static (dummy button)
	h = uiaccessor.getnextwindow h -- second: "Spline Mapping" button
	h = uiaccessor.getnextwindow h -- third: static (dummy button)
	h = uiaccessor.getnextwindow h -- fourth: "Unfold Strip from Loop" button
	uiaccessor.pressbutton h -- press button by HWND
)&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Dec 2016 04:27:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753365#M13768</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2016-12-16T04:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: "Unfold strip from loop" maxscript function?</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753410#M13769</link>
      <description>&lt;P&gt;Wow, okay thank you for the assistance. &amp;nbsp;That's really neat, it works.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 06:08:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-unfold-strip-from-loop-quot-maxscript-function/m-p/6753410#M13769</guid>
      <dc:creator>andocombo</dc:creator>
      <dc:date>2016-12-16T06:08:38Z</dc:date>
    </item>
  </channel>
</rss>

