@@ -344,6 +344,7 @@ SetupArrays:
344
344
set the elements of LabelInput to N
345
345
set the elements of DurationInput to N
346
346
set the elements of URLInput to N
347
+ set the elements of TargetInput to N
347
348
set the elements of ChainSelect to N
348
349
set the elements of DisplaySelect to N
349
350
set the elements of ContinueSelect to N
@@ -742,6 +743,7 @@ EditGoto:
742
743
set the style of TD to `width:6em`
743
744
set the content of TD to `Target:`
744
745
create TD in TR
746
+ index TargetInput to SelectedStep
745
747
create TargetInput in TD
746
748
set the style of TargetInput to `width:100%`
747
749
set the content of TargetInput to property `target` of CurrentStep
@@ -1123,7 +1125,7 @@ SaveCurrentStep:
1123
1125
set property `blocks` of CurrentStep to Blocks
1124
1126
end
1125
1127
index DurationInput to SelectedStep
1126
- set property `duration` of CurrentStep to the text of DurationInput
1128
+ set property `duration` of CurrentStep to DurationInput
1127
1129
index ContinueSelect to SelectedStep
1128
1130
set property `continue` of CurrentStep to ContinueSelect
1129
1131
end
@@ -1136,7 +1138,7 @@ SaveCurrentStep:
1136
1138
set property `blocks` of CurrentStep to Blocks
1137
1139
end
1138
1140
index DurationInput to SelectedStep
1139
- set property `duration` of CurrentStep to the text of DurationInput
1141
+ set property `duration` of CurrentStep to DurationInput
1140
1142
index ContinueSelect to SelectedStep
1141
1143
set property `continue` of CurrentStep to ContinueSelect
1142
1144
end
@@ -1151,7 +1153,7 @@ SaveCurrentStep:
1151
1153
set property `block` of CurrentStep to BlockSelect
1152
1154
set property `target` of CurrentStep to TargetSelect
1153
1155
index DurationInput to SelectedStep
1154
- set property `duration` of CurrentStep to the text of DurationInput
1156
+ set property `duration` of CurrentStep to DurationInput
1155
1157
index ContinueSelect to SelectedStep
1156
1158
set property `continue` of CurrentStep to ContinueSelect
1157
1159
end
@@ -1160,19 +1162,19 @@ SaveCurrentStep:
1160
1162
set property `block` of CurrentStep to BlockSelect
1161
1163
set property `target` of CurrentStep to TargetSelect
1162
1164
index DurationInput to SelectedStep
1163
- set property `duration` of CurrentStep to the text of DurationInput
1165
+ set property `duration` of CurrentStep to DurationInput
1164
1166
index ContinueSelect to SelectedStep
1165
1167
set property `continue` of CurrentStep to ContinueSelect
1166
1168
end
1167
1169
else if Action is `pause`
1168
1170
begin
1169
1171
index DurationInput to SelectedStep
1170
- set property `duration` of CurrentStep to the text of DurationInput
1172
+ set property `duration` of CurrentStep to DurationInput
1171
1173
end
1172
1174
else if Action is `goto`
1173
1175
begin
1174
- put property `target` of CurrentStep into Target
1175
- if Target is empty set property `target` of CurrentStep to `******`
1176
+ index TargetInput to SelectedStep
1177
+ set property `target` of CurrentStep to TargetInput
1176
1178
end
1177
1179
else if Action is `load`
1178
1180
begin
0 commit comments