A
Arnold
Guest
Hi
I have a form in which I have two fields called AeStartPointField and
AeGetCursorPointField.
AeStartPointField= hiCreatePointField(
?name 'AeStartPointField
?promt "startPoint"
?value list(0.0 0.0)
?callback "println(\"scale changed\")
?editable t
)
AimGetcursorpointField = hiCreateButton(
?name "AimGetCursorPointField"
?buttonText "getPoint"
?callback "AeGetPoint()"
)
procedure(AeGetPoint()
let((helpVar)
helpVar=enterPoint(?prompts list("Enter Point") ?doneProc "")
AeStartPointField->value=helpVar
)
)
I want now to change the value of the "startPoint" with the procedure "AeGetPoint"
I works, but the new value is not displayed in the form.
What can I do to display it ? I did not find a refresh function or something else.
CU
Arny
I have a form in which I have two fields called AeStartPointField and
AeGetCursorPointField.
AeStartPointField= hiCreatePointField(
?name 'AeStartPointField
?promt "startPoint"
?value list(0.0 0.0)
?callback "println(\"scale changed\")
?editable t
)
AimGetcursorpointField = hiCreateButton(
?name "AimGetCursorPointField"
?buttonText "getPoint"
?callback "AeGetPoint()"
)
procedure(AeGetPoint()
let((helpVar)
helpVar=enterPoint(?prompts list("Enter Point") ?doneProc "")
AeStartPointField->value=helpVar
)
)
I want now to change the value of the "startPoint" with the procedure "AeGetPoint"
I works, but the new value is not displayed in the form.
What can I do to display it ? I did not find a refresh function or something else.
CU
Arny