Jump to content
Search Community

morganwill

Members
  • Posts

    1
  • Joined

  • Last visited

morganwill's Achievements

0

Reputation

  1. Hi - really liking the TransformManager so far. One thing I'm seeing which is an issue for us, is when setting the setScaleConstraints() or minScale() / maxScale() everything works fine until you select another object, then return to the original object and try to re-scale once again. Simply uncommenting the flex demo code, and making it as below, will re-produce the issue: var item:TransformItem = myManager.getItem(image1); item.setScaleConstraints(0.5, 1, 0.5, 1); //impose scale limits item = myManager.getItem(myTextArea); item.constrainScale = true; //cause image2 to scale proportionately when interactively scaling it item.setScaleConstraints(0.5, 1, 0.5, 1); //impose scale limits You'll notice that you cannot re-size myTextArea larger after 1) re-sizing smaller, 2) de-selecting and then 3) re-selecting. Is there a work around for this? This is very important to our application. Many thanks, Will.
×
×
  • Create New...