2005-06-06 08:08 PM
2005-06-09 01:13 AM
Matthew wrote:Could you elaborate on that a little bit? Maybe give some examples.
...it requires this kind of stategic placement of code. if you can do that, the objects parameters become much more efficient than anything youll get by coding directly to the master script.
2005-06-09 01:28 AM
david wrote:Interesting, I have found no problems using the unsubstituted values from the param script ie:
My personal reason also has to do with the way I built a Menu.:
mv1="Stationary"
mv2="Moving slowly"
mv3="Moving quickly!"
VALUES "motionmode" mv1,mv2,mv3
Later in the other scripts you can say things like :
IF motionmode=mv3 THEN .........
This method of building menus ONLY works correctly if you do it in the Master Script, because the other scripts will not know what mv1 and mv2 are. As a result of this, I never use the Parameter script except for the very simplest things.