<?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: Is there a way to select every other face in maya in Maya Forum</title>
    <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9375078#M60898</link>
    <description>&lt;P&gt;be advised malcom_341 that that mel approach will not work once the topology changes. So it's not a very good workaround.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Mar 2020 18:38:46 GMT</pubDate>
    <dc:creator>syracoj</dc:creator>
    <dc:date>2020-03-12T18:38:46Z</dc:date>
    <item>
      <title>Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6615548#M60890</link>
      <description>&lt;P&gt;Bonus tools doesnt work, and I dont feel like spending a whole week to figure out how to script a tool for something so stupid that EVERY other 3d program has.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 17:38:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6615548#M60890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-11T17:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6616074#M60891</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;No, in Maya (up to Maya 2017) there is no procedural selection type like select every &lt;EM&gt;n&lt;/EM&gt;th component.&lt;/P&gt;
&lt;P&gt;You may post this to the Ideas for Maya section (Help -&amp;gt; Speak Back)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 20:41:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6616074#M60891</guid>
      <dc:creator>mspeer</dc:creator>
      <dc:date>2016-10-11T20:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6616323#M60892</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do you mean exactly by this? Are you talking about selecting the faces of an object except one? For example, a cube has 6 faces (if you don't have any subdivisions), if you wish to select all but 1 face you can position your screen so you can left click and drag over all faces except one, or use the shift key and click each face separately while holding down shift.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry if this isn't what you meant. If your looking something that's a little more intuitive and easy then yeah I'd suggest Bonus Tools, but looks like you haven't had much luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy mayaing!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 22:43:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6616323#M60892</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-11T22:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6616597#M60893</link>
      <description>If you start off the pattern of faces you'd like to select, then you can try using 'Select &amp;gt; Similar' to continue the selection pattern. You can also refine the similarity tolerance to refine your selection. Hope this helps.</description>
      <pubDate>Wed, 12 Oct 2016 03:04:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/6616597#M60893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-12T03:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9321625#M60894</link>
      <description>&lt;P&gt;Sorry for being so late to this party.&lt;/P&gt;
&lt;P&gt;And...there may be a hidden way to do this in the modeling toolkit that I am not aware of. There is lots in Maya that is hidden...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But for faces, what could be done is you could select a loop of faces then run the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;source getFaces;
string $selectedFaces[] = `getFaces`;
int $x;
for($x = 0; $x &amp;lt; size($selectedFaces); $x++){
    if( ($x % 2) == 0 ){
        select -deselect $selectedFaces[$x];
    }
}&lt;/PRE&gt;
&lt;P&gt;^ the above code could be added to the shelf.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to invert, just hold down shift and select the currently selected faces and it will select the unselected faces and deselect the currently selected faces.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2020 21:57:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9321625#M60894</guid>
      <dc:creator>syracoj</dc:creator>
      <dc:date>2020-02-16T21:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9321641#M60895</link>
      <description>&lt;P&gt;hmm...&lt;/P&gt;
&lt;P&gt;this will work on primitive objects but once the face count changes this may fail. May need to revisit with a different solution. Will also talk to the team about finally getting a pure solution for this built into Maya other than a script approach or bonus tool.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2020 22:30:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9321641#M60895</guid>
      <dc:creator>syracoj</dc:creator>
      <dc:date>2020-02-16T22:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9321655#M60896</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1540556"&gt;@syracoj&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as i know currently the only option for something like this is polySelect with -everyN, which is very limited and of course not procedural.&lt;/P&gt;
&lt;P&gt;Hopefully Bifrost Graph will help with this in future.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2020 22:44:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9321655#M60896</guid>
      <dc:creator>mspeer</dc:creator>
      <dc:date>2020-02-16T22:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9374978#M60897</link>
      <description>&lt;P&gt;Wow, thanks a lot I've been trying to figure out how to do this in Mel for a while now, going to see if I can use this technique to get my script working for verts and faces. I see everyone's figured out how to do it in Python, but this is the first time I've seen it done in Mel.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 17:49:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9374978#M60897</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2020-03-12T17:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9375078#M60898</link>
      <description>&lt;P&gt;be advised malcom_341 that that mel approach will not work once the topology changes. So it's not a very good workaround.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 18:38:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9375078#M60898</guid>
      <dc:creator>syracoj</dc:creator>
      <dc:date>2020-03-12T18:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9375226#M60899</link>
      <description>&lt;P&gt;Well that's a major problem, any suggestion for making this work on something other than a primitive?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 20:12:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/9375226#M60899</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2020-03-12T20:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10025653#M60900</link>
      <description>THANK YOU!!!!!</description>
      <pubDate>Sun, 24 Jan 2021 00:12:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10025653#M60900</guid>
      <dc:creator>ewu77A7V</dc:creator>
      <dc:date>2021-01-24T00:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10025713#M60901</link>
      <description>&lt;P&gt;Doesn't work on anything other than a primitive.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2021 00:49:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10025713#M60901</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-01-24T00:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10028658#M60902</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1313463"&gt;@malcolm_341&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Doesn't work on anything other than a primitive.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, the script was only written to target poly faces.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It really isn't a great solution either because once you make modifications to the geometry the face reordering prevents it from working properly. We should really look at putting in a properly implemented selection tool that does this.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 13:35:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10028658#M60902</guid>
      <dc:creator>syracoj</dc:creator>
      <dc:date>2021-01-25T13:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to select every other face in maya</title>
      <link>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10029852#M60903</link>
      <description>&lt;P&gt;Agree.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 19:56:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-forum/is-there-a-way-to-select-every-other-face-in-maya/m-p/10029852#M60903</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-01-25T19:56:08Z</dc:date>
    </item>
  </channel>
</rss>

