Hi Allen,
what you need to do is create an extra function in the object which
you put on the stage ( i use a singleton class for that) and in that
function you assign the new x, y and w and h values to the datamodel
values.
After that dispatch the following events:
dispatchEvent(new ResizeEvent("container_resizeHandler"));
and
ObjectHandles.dispatchEvent(new ObjectChangedEvent(null,
ObjectChangedEvent.OBJECT_RESIZED, false, false));
(i add a parent reference in every child object to the singleton
objecthandles)
This makes your object change by the values you input in your
inputfields.
Its all a bit complex but try the singleton approach, it could work
for you as well.
Good luck
Maurice