<?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: Wiring Parameter for Morpher in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12960197#M560</link>
    <description>&lt;P&gt;Hi Thanks for your Script but.this is not waht exactlyy i am looking for,i already have Setup all the Controlers and Morpher Mesh.i am looking for something where i can Mention the name of Slider with X and Y value and the target fo Morpher modifer.i just want automate the process&lt;/P&gt;</description>
    <pubDate>Thu, 15 Aug 2024 09:34:07 GMT</pubDate>
    <dc:creator>saqibhussain88</dc:creator>
    <dc:date>2024-08-15T09:34:07Z</dc:date>
    <item>
      <title>Wiring Parameter for Morpher</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12959756#M558</link>
      <description>&lt;P&gt;hello i have a one Slider object with Float Limit and one object with Morpher modifier.i want to make a Conenction through script.ive tried using macro recorder but when i run the samescript ,the Wiring parameter popups then need to Do all again. here is the scritpt i am recording.is there a wa y to automate this process i have Couple of Slider and Morpher Targets.i wanted to make them Work with Script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;select $Slider&lt;BR /&gt;macros.run "Parameter Wire" "paramWire"&lt;BR /&gt;paramWire.connect2way $.pos.controller.Z_Position.controller[#Limited_Controller__Bezier_Float] $Box.modifiers[#Morpher][#_1__test___Target_Available_] "_1__test___Target_Available_" "Limited_Controller__Bezier_Float*100"&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2024 03:34:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12959756#M558</guid>
      <dc:creator>saqibhussain88</dc:creator>
      <dc:date>2024-08-15T03:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Wiring Parameter for Morpher</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12959940#M559</link>
      <description>&lt;LI-CODE lang="general"&gt;delete objects
gc()

ss = cone name:#cone_source pos:[0,0,0] radius1:10 radius2:0 height:20 sides:18 heightsegs:7 wirecolor:orange smooth:off
ct = cylinder name:#cylinder_target pos:[40,0,0] radius:10 sides:18 height:20 heightsegs:5 capsegs:2 wirecolor:green smooth:off

resetXform objects
converttomesh objects

_morph = morpher()
addmodifier ss _morph
WM3_MC_BuildFromNode ss.morpher 1 ct	
	
_morph[1].controller = bezier_float()

try(destroydialog rol) catch()
rollout rol "Bind Morph with denisT" width:191
(
	label lb align:#center
	slider sp type:#float range:[0,100,0] scale:0.1 width:176 align:#left offset:[0,0] 
	
	on rol open do
	(
		lb.text = ct.name
		sp.controller = _morph[1].controller
	)
)
createdialog rol&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 15 Aug 2024 06:37:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12959940#M559</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2024-08-15T06:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Wiring Parameter for Morpher</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12960197#M560</link>
      <description>&lt;P&gt;Hi Thanks for your Script but.this is not waht exactlyy i am looking for,i already have Setup all the Controlers and Morpher Mesh.i am looking for something where i can Mention the name of Slider with X and Y value and the target fo Morpher modifer.i just want automate the process&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2024 09:34:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12960197#M560</guid>
      <dc:creator>saqibhussain88</dc:creator>
      <dc:date>2024-08-15T09:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Wiring Parameter for Morpher</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12960228#M561</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;delete objects
gc()

ss = cone name:#cone_source pos:[-40,0,0] radius1:10 radius2:0 height:20 sides:18 heightsegs:7 wirecolor:orange smooth:off
ct = cylinder name:#cylinder_target pos:[40,0,0] radius:10 sides:18 height:20 heightsegs:5 capsegs:2 wirecolor:green smooth:off

resetXform objects
converttomesh objects

_morph = morpher()
addmodifier ss _morph
WM3_MC_BuildFromNode ss.morpher 1 ct	
	
_morph[1].controller = bezier_float()


b = point name:#slider cross:on box:on size:10 pos:[0,0,0] wirecolor:red isselected:on 
	
setTransformLockFlags b #{2..9}
b.pos.controller[1].controller = float_limit lower_limit:-25 upper_limit:25  
paramWire.connect b.pos.controller[1] _morph[1] "(X_Position + 25)*2.0"

max move&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2024 18:20:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/12960228#M561</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2024-08-15T18:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Wiring Parameter for Morpher</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/13627157#M562</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1634609"&gt;@denisT.MaxDoctor&lt;/a&gt;&amp;nbsp; Hi Denish Sorry for again,just wondering,&lt;/P&gt;&lt;P&gt;is it possible to have a reverse or a two way connection.in the last script you Shared? now the Slider is Connect to morpher only.&lt;/P&gt;&lt;P&gt;i want it to be two way connection,or the Slider pos move by morpher.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 03:57:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/wiring-parameter-for-morpher/m-p/13627157#M562</guid>
      <dc:creator>saqibhussain88</dc:creator>
      <dc:date>2025-05-13T03:57:18Z</dc:date>
    </item>
  </channel>
</rss>

