Using Action Builder, I created a script to make a subform presence visible when a particular textfield is changed. When typing into that textfield, the background color immediately turns black with the first charcter I type into that field. Why? I tried a different textfield and it does the same thing.
Solved! Go to Solution.
Views
Replies
Total Likes
Why you use the action builder?
What would you like to create?
You cold use the following - the subform is visible if the textfield is empty - not empty the subform is hidden:
if(PathToTextfield.NameTextobject.rawValue == null)
{
PathToSubform.NameSubform.presence = "visible";
}else
{
PathToSubform.NameSubform.presence = "hidden";
}
You could copy this script in the EXIT-event of your textfield.
You will find the scripteditor about "windows" | "scripteditor"
Then you select the event (Anzeigen = event (this is a german LCD screenshot))
Hope it will helps you,
Mandy
Views
Replies
Total Likes
Why you use the action builder?
What would you like to create?
You cold use the following - the subform is visible if the textfield is empty - not empty the subform is hidden:
if(PathToTextfield.NameTextobject.rawValue == null)
{
PathToSubform.NameSubform.presence = "visible";
}else
{
PathToSubform.NameSubform.presence = "hidden";
}
You could copy this script in the EXIT-event of your textfield.
You will find the scripteditor about "windows" | "scripteditor"
Then you select the event (Anzeigen = event (this is a german LCD screenshot))
Hope it will helps you,
Mandy
Views
Replies
Total Likes
Thank you. That works great!
-Don
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies