<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">I managed to get Ward Cunningham's Plumbin' app running in MVC (v4.2). The source (PlumbinSrc.zip) can be downloaded from:<br><br>http://c2.com/doc/plumbin/index.html<br><br>but be aware of proper order of fileIns, Plumbin-Framework.st MUST be first. I don't think order is important for the rest of the fileIns.<br><br>Also, I had to write a Faucet controller. For those interested in seeing this fine example of Smalltalk view tiling, here is the source for that controller (fileIn AFTER Plumbin-StandardTiles.st):<br><br><br><br>'From Squeak4.2 of 4 February 2011 [latest update: #10966] on 1 April 2011 at 10:48:53 am'! TileController subclass: #FaucetController &nbsp;&nbsp; &nbsp;instanceVariableNames: '' &nbsp;&nbsp; &nbsp;classVariableNames: 'YellowButtonMenu' &nbsp;&nbsp; &nbsp;poolDictionaries: '' &nbsp;&nbsp; &nbsp;category: 'Plumbin-Standard Tiles'!&nbsp;
!FaucetController methodsFor: 'menu messages' stamp: 'ward 7/31/97 20:36'! off <br>&nbsp;&nbsp; &nbsp;"Turn off the model's fluid flow." <br>&nbsp;<br>&nbsp;&nbsp; &nbsp;model off! !&nbsp; !FaucetController methodsFor: 'menu messages' stamp: 'ward 7/31/97 20:36'! on <br>&nbsp;&nbsp; &nbsp;"Turn on the model's fluid flow." <br>&nbsp;<br>&nbsp;&nbsp; &nbsp;model on! !&nbsp;&nbsp; !FaucetController methodsFor: 'pluggable menus' stamp: 'mjr 4/1/2011 10:46'! getPluggableYellowButtonMenu: shiftKeyState &nbsp;&nbsp; &nbsp;^ YellowButtonMenu! !&nbsp; "-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- "!&nbsp; FaucetController class &nbsp;&nbsp; &nbsp;instanceVariableNames: ''!&nbsp; !FaucetController class methodsFor: 'as yet unclassified' stamp: 'mjr 4/1/2011 10:44'! "FaucetController initialize"&nbsp; initialize &nbsp;&nbsp; &nbsp;YellowButtonMenu _ SelectionMenu <br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;labels: 'turn on\turn off' withCRs <br>&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp; &nbsp;lines: #() <br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;selections: #(on off)! !&nbsp; FaucetController initialize!<br><br><br><br>DoIt on "MosaicView openOn: (Mosaic example)" will open the app. I suggest putting the doIt text in a morphic workspace window and copying it from there before opening an MVC project, then copying it to an MVC workspace window to doIt, because keyboard processing in MVC will jumble up the characters if you try typing them to an MVC workspace at anywhere near normal speed.&nbsp; &nbsp;<br><br>Tiles can then be moved about with the red (leftmost button) and duplicated with a shift red button.<br><br>Faucet can be turned on/off with the yellow (rightmost) button (menu). Water drop on output spout will accordingly appear or disappear. Moving faucet (or spout) away from piping network will accomplish same.<br><br>The pressure tank provides for water storage. It will only fill up if it has access to (on)
 faucet(s) and drain only when said faucet(s) are turned off, BUT the cursor MUST be over the pressure tank tile. The water drop on the spout will eventually disappear as pressure tank drains.<br><br>Have fun.<br><br>Michael<br><br></td></tr></table>