Hi All,
I'm trying to use an EntryField widget for a user to enter a number into a menu. The following code works well - BUT - it requires the user to press 'Enter' on the box before Pinnacle notices that the variable is changed. If someone types in the box, then selects another box without pressing enter, the new value is displayed but the variable behind it doesn't change. I'm sure you can appreciate how that's going to lead to problems.....
Does anyone know how to get the value to update without having to press enter on it? E.g. Link updating the variable to typing in the box.
Thanks,
Andy
Version = 16.0.2
Code is:
Store.FloatAt.Lateral = 0;
Store.At.Window.AddChild = "";
Store.At.Window.WidgetList.Last = {
Widget.Class = "EntryField";
ParentName = "ScrollRegion";
Name = "LatEntry";
X = 5;
Y = 5;
Width = 100;
UseQueryForLabel = 1;
QueryColorKey = "#2b2a27";
QueryValueKey = "Store.FloatAt.Lateral";
AddAction = "";
ReplaceCurrentAction = "Store.FloatAt.Lateral";
ResetDependenciesWhenRealized = 1;
};