One
of the features of EasyLobby is to print a visitor badge
for every visitor that comes into the lobby.
Each visitor needs a badge with a consistent
format. However, each visitor name is also
unique. EasyLobby puts each unique
visitor's data into a contained, consistent
format. One example, outlined below,
is how the visitor's name shows up on the
badge.
A
customer recently
contacted
EasyLobby tech support asking if we can make the
visitor's name show up uniquely for each
visitor. The answer is
yes. More specifically, the name
field on the visitor badge can be made to expand and
shrink in size, based on how long the visitor's name
is. Put another way, EasyLobby can
make the font size on the visitor badge change
dynamically.
You
can make the font size for names dynamically change
in
EasyLobby SVM, depending
on the length of the person's name:
First,
go into EasyLobby Designer by choosing ( Edit | Badge
Options... ) from the top menu and clicking on the
"customize" button.
Then
in the EasyLobby Designer, put the ShownName variable
onto the grid by dragging and dropping it from the List
Of Variables popup box (you can make this popup box
appear by selecting ( View | Windows | Popup Variables )
from the top menu of EasyLobby Designer)
Next,
to change the font size of the object, double-click on
it on the grid and in the Text Properties window that
opens up is where you can set the font size.
Finally,
to set the Appearance Condition of the object,
right-click on the object and choose "Appearance
Condition..." In the "Edit
Condition..." window that opens up is where you can
enter the formula for the appearance condition (this
will become more clear below, see the formulas below
that look like this: "Len (ShownName)...")
Use
this process to make a total of four text objects
containing the ShownName variable(that represents the
visitor's name), and set their font sizes and appearance
conditions such that the longer names have smaller font
sizes and such that only one shows up at any given
time.
Here
are the specific conditions and font sizes for each of
the 4 ShownName text objects:
Font
size 10 for people with more than 30 letters in their
name.
Appearance
condition:
Len
(ShownName) >= 31
Font
size 14 for people with between 21 and 30 letters in
their name:
Appearance
condition:
Len
(ShownName) <= 30 and Len(ShownName) >=
21
font
size 18 for people with between 11 and 20 letters in
their name:
Appearance
condition:
Len
(ShownName) <= 20 and Len(ShownName) >= 11
Font
size 22 for people with ten or fewer letters in their
name:
Appearance
condition:
Len
(ShownName) <= 10
The
end result is that depending on the length of the
person's name, the font size will change on the
badge. For example, if a person named
Lisa Lee came to the lobby, the font for her name would
show up in the larger font size of 22, as in this
picture:

And
for example if a person named Christopher Hernandez came
to the lobby, the font for his name would show up in the
smaller font size of 14, as in this picture:

In
either case, the space gets filled by the visitor's
name.
For
more assistance formatting visitor badges, contact our technical support
team.