<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <p><font face="Georgia">The only comment I see associated with this
        change is</font></p>
    <p><span style="color: rgb(0, 0, 255); font-family: Georgia, Times,
        serif; font-size: medium; font-style: normal;
        font-variant-ligatures: normal; font-variant-caps: normal;
        font-weight: 400; letter-spacing: normal; orphans: 2;
        text-align: start; text-indent: 0px; text-transform: none;
        white-space: normal; widows: 2; word-spacing: 0px;
        -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,
        238); text-decoration-style: initial; text-decoration-color:
        initial; display: inline !important; float: none;">Make Etoys
        unloadable: Move lots of methods to Etoys package. Remove the
        old Fabrik remnants.</span></p>
    which applies to the whole change set (or <span style="color:
      rgb(0, 0, 255); font-family: Georgia, Times, serif; font-size:
      medium; font-style: normal; font-variant-ligatures: normal;
      font-variant-caps: normal; font-weight: 400; letter-spacing:
      normal; orphans: 2; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 2;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(255, 255, 238); text-decoration-style:
      initial; text-decoration-color: initial; display: inline
      !important; float: none;">Morphic-ar.294</span> if you prefer).
    What I think happened was this<br>
    <br>
    -- it used to say:<br>
    <br>
        self penUpWhile: [self position: self position + (oldRefPos -
    self referencePosition)].<br>
     <br>
    -- #penUpWhile was moved to the Etoys package<br>
    <br>
    -- so that this would not blow up if there were no Etoys loaded, a
    guard was added:<br>
    <br>
        self actorStateOrNil ifNotNil:[<br>
            self penUpWhile: [self position: self position + (oldRefPos
    - self referencePosition)].<br>
        ].<br>
    <br>
    -- the assumption being, I guess, was that only Etoys cared about
    rotation done this way<br>
    <br>
    <br>
    <div class="moz-cite-prefix">On 12/19/17 3:29 PM, Javier
      Diaz-Reinoso wrote:<br>
    </div>
    <blockquote type="cite"
      cite="mid:AAE9D7C3-2BD4-4EDA-9572-0DE9BC809B53@mac.com">
      <pre wrap="">The reason my example works is because I am rotating a Polygon, the problem is with ImageMorphs/SketchMorphs, and the selector with problems is TransformationMorph>>adjustAfter: of 'ar 1/3/2010' created in Squeak 3.11, If you revert to the previous version of: 'di 9/30/1998' works OK.

Also works if you create an (eToys) script with Player>>turn: because that copy the actorStateOrNil to the transformMorph which the new version expect.

Because the new version was from 'ar' you know that was created for some important reason, so is any documentation for the change?

</pre>
      <blockquote type="cite">
        <pre wrap="">On 18 Dec 2017, at 15:45, Louis LaBrunda <a class="moz-txt-link-rfc2396E" href="mailto:Lou@Keystone-Software.com"><Lou@Keystone-Software.com></a> wrote:

Hi Javier,

Thanks for the help.  The movie did post and look good.  I am presently trying Tim and Bob's
suggestions with some success.

Lou

</pre>
        <blockquote type="cite">
          <pre wrap="">Well, I think is for eToys Players and in that works well, to test use this in workspace:

attrs := {{100 . Color red . <a class="moz-txt-link-abbreviated" href="mailto:0.5@0.5">0.5@0.5</a>} . {200 . Color blue . <a class="moz-txt-link-abbreviated" href="mailto:0.25@0.25">0.25@0.25</a>}}..
hands := attrs collect: [:att| |lm|
        lm := LineMorph from: 150@300 to: (Point x: 150+(att at:1) y: 300) color: (att at: 2) width: 2.
        lm rotationCenter: (att at: 3). 
        lm makeForwardArrow].
hands do: [:m | m openInWorld].

and then create 2 (eToy) scripts to rotate, I am enclosing a movie (344kb), I hope is not rejected:
</pre>
        </blockquote>
        <pre wrap="">-- 
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon


</pre>
      </blockquote>
      <pre wrap="">

</pre>
    </blockquote>
    <br>
  </body>
</html>