2005-01-29 10:17 PM
2005-01-31 12:00 PM
2005-01-31 04:24 PM
Julia wrote:That's a good question. I changed a lot of non-stretchy stuff before I noticed that the stretching ability had disappeared. When it was stretchy, I was still only using A's.
What exactly did you change?
2005-02-01 03:06 AM
2005-02-08 09:46 AM
2005-02-08 06:28 PM
2005-02-08 10:44 PM
2005-02-09 07:44 PM
tprokop wrote:The "A" value itself is not being modified (that requires a PARAMETERS statement). The distance between the hotspots is being derived from the value of A and this generally works just fine.
Not positive this is the answer, but just something of note. The "A" value is modified (divided by 2). By using just the base "A", the point will be stretchable, but when the number is modified is when the stretchability goes.
2005-02-09 08:30 PM
2005-02-10 06:39 PM
rect2 0,0,a,b rect2 0,0,a*.5,b*.5 hotspot2 0,0 hotspot2 a*.5,b*.5 hotspot2 a,bThe object stretches from the second (a,b) hotspot, but not the first. I think the limitation comes from "a*.5" not being equal to "a" and not from the division. By moving the "a*.5" location, it would force the value of "a" to be modified, which seems to be the restriction.