To discuss the elements of a Final Exhibits 2 XML file, we are using sticker CSR-003.xml, as it embodies everything the stickers are currently capable of:
For this walkthrough, I'll be using Notepad++, not Microsoft Notepad.
A Final Exhibits 2 XML sticker file is organized broadly into two sections:
<inputs></inputs> block, where the editable text fields (shown beneath the exemplar sticker) are defined.<graphics></graphics> block, where the visual design of the sticker is described, including fonts, text sizes, and any graphical shapes. Everything in the graphics block follows the SVG (Scalable Vector Graphics) format.

<inputs></inputs> Block<input .....> </input> row defines a single editable text field on the sticker.name="deponent1" label="Deponent1"
<graphics> BlockThe first part of the "graphics" block defines the overall size, resolution, and name of the sticker:
Use the rect tag to create the sticker
Choose your stroke-width first
The stroke-width sets the thickness of the border . In this example, stroke-width="6"
Because border is 6 units thick, the origin for the shape and its dimensions are below
<rect x="3" y="3" width="134" height="94" ... />
Those values were chosen to leave space for the 6-unit border. The overall viewBox is 140×100, so subtracting a 3-unit margin on each side keeps the shape neatly centered with room for the stroke.

Optional -- here we rounded the corners with rx="10".
Use the fill and stroke attributes to define the color of the background and stroke, respectively.
Tip: When all 6 color components are the same, you can use the 3-character hex shorthand:
#000 = #000000' (black) <br>#fff = #ffffff(white) <br>#ccc = #cccccc` (medium gray)
To make the background color customizable in the app, replace the hex code with a variable reference: fill="@backgroundColor"
This tells Final Exhibits 2 to treat the background color as a user-controlled setting, using the built-in color interface.
stroke="#000" sets the line color to black (short for #000000).stroke-width="1" defines the thickness of the line as 1 unit.stroke-linecap="round" gives the line's ends a rounded appearance instead of flat or square.

x="35" andy="26"` position the text so that it starts at point (35, 26) on the canvas.font-family="Arial" sets the font to Arial.font-size="16" sets the text size to 16 units.fill="#000" makes the text color black.text-anchor="left" aligns the starting point of the text to the left edge of the string.
x="95" and y="27" position the text so that it starts at point (95, 27) on the canvas.font-family="Arial" sets the typeface to Arial.font-size="20" makes the text slightly larger than the previous example.font-weight="bold" renders the text in bold.fill="#000" sets the text color to black.text-anchor="left" aligns the start of the text to the left edge of the string.@exhibit is a variable, not static text — it tells Final Exhibits 2 to insert the dynamic Create Exhibit Number , ( or Create Exhibit Letter or Use Exhibit Filename as the exhibit number) at this location when the sticker is applied.

<inputs> Fields1. Position
x="70" and y="46" place the text so that it’s centered horizontally at 70, and positioned vertically at 46.
font-family="Arial" sets the typeface to Arial.font-size="14" renders the text slightly smaller.fill="#000" makes the text color black.text-anchor="middle"' centers the text horizontally around the x coordinate — so the text is balanced evenly to the left and right ofx="70".`@deponent1 is a variable linked to an input field we defined in the <inputs> block. When the sticker is used, this text is automatically replaced with the value entered by the user for that field.
You can add vector artwork—such as a company logo—directly into your sticker design using standard SVG.
Wrap your artwork inside a <g> (group) element
This allows you to apply positioning and scaling to the entire graphic.
Use the transform attribute to control size and position
For example:
<g transform="translate(20, 68) scale(0.5, 0.5)">
<!-- your SVG paths and shapes go here -->
</g>
Paste only the contents of your logo’s SVG file, not the outer <svg> tag itself.
This helps keep the XML file clean and focused on layout, not document-wide declarations.
👉 See the bottom of this page for a detailed example.
Adjust the translate and scale values as needed to fit the logo within your sticker layout.
This may take a few rounds of trial and error to get the size and placement just right.
If you have a logo saved as an .svg file, you can open it in a text editor like Notepad++ to see the code that defines the artwork. Most SVG files begin with a wrapping <svg> tag that sets things like width, height, and viewbox size — but this outer tag isn’t needed when you're inserting artwork into a Final Exhibits 2 sticker.
When you open a typical SVG file, you might see something like this:
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="50" viewBox="0 0 200 50">
<path d="M10,10 h180 v30 h-180 Z" fill="#00b0f0"/>
<text x="20" y="35" font-family="Arial" font-size="20" fill="#fff">Your Logo</text>
</svg>
To use this inside your sticker’s <graphics> block, remove the outer <svg> tag and just keep the internal artwork. That means you would paste only this part:
<path d="M10,10 h180 v30 h-180 Z" fill="#00b0f0"/>
<text x="20" y="35" font-family="Arial" font-size="20" fill="#fff">Your Logo</text>
Then wrap it in a <g> tag with transform to control placement and scale:
<g transform="translate(20, 68) scale(0.5, 0.5)">
<path d="M10,10 h180 v30 h-180 Z" fill="#00b0f0"/>
<text x="20" y="35" font-family="Arial" font-size="20" fill="#fff">Your Logo</text>
</g>