diff --git a/ATC/atis/eddh.xml b/ATC/atis/eddh.xml
index 704f6e05d..96729a7ad 100644
--- a/ATC/atis/eddh.xml
+++ b/ATC/atis/eddh.xml
@@ -47,7 +47,7 @@
--prop:/input/joysticks/js/axis[1]/interval-sec=0.05
+If you want specify a delay time before interval repeats action. For example +if you want an interval of 0.05 seconds after 1 second the axis has been pressed, then add +the following to the property: +
++ --prop:/input/joysticks/js/axis[1]/delay-sec=1 + --prop:/input/joysticks/js/axis[1]/interval-sec=0.05 ++
+Similarly, release-delay-sec is how long to wait after releasing the button. +
+
You could also bind some axes to brakes, so that you can use positions
between between 0.0 (no brakes) and 1.0 (full brakes).
diff --git a/Nasal/aircraft.nas b/Nasal/aircraft.nas
index 581dbf795..8d28b1a2f 100644
--- a/Nasal/aircraft.nas
+++ b/Nasal/aircraft.nas
@@ -1002,7 +1002,7 @@ var teleport = func(airport = "", runway = "", lat = -9999, lon = -9999, alt = 0
setprop("/sim/presets/offset-azimuth-nm", azimuth);
setprop("/sim/presets/glideslope-deg", glideslope);
setprop("/sim/presets/heading-deg", heading);
- fgcommand("presets-commit");
+ fgcommand("reposition");
}
diff --git a/Nasal/gui.nas b/Nasal/gui.nas
index f3d25a753..65b160c96 100644
--- a/Nasal/gui.nas
+++ b/Nasal/gui.nas
@@ -597,7 +597,7 @@ var load_flight_sel = nil;
var load_flight = func {
var load = func(n) {
fgcommand("load", props.Node.new({ file: n.getValue() }));
- fgcommand("presets-commit");
+ fgcommand("reposition");
}
if (load_flight_sel == nil)
load_flight_sel = FileSelector.new(load, "Load Flight", "Load",
diff --git a/Nasal/tutorial/tutorial.nas b/Nasal/tutorial/tutorial.nas
index 4c50659b8..e4604cb62 100644
--- a/Nasal/tutorial/tutorial.nas
+++ b/Nasal/tutorial/tutorial.nas
@@ -85,7 +85,7 @@ var startTutorial = func {
var presets = tutorialN.getChild("presets");
if (presets != nil) {
props.copy(presets, props.globals.getNode("/sim/presets"));
- fgcommand("presets-commit");
+ fgcommand("reposition");
if (getprop("/sim/presets/on-ground")) {
var eng = props.globals.getNode("/controls/engines");
@@ -104,7 +104,7 @@ var startTutorial = func {
#